update abstract

This commit is contained in:
2025-06-20 02:27:02 +00:00
parent 8db9b920d9
commit be13ef8a86
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
## Abstract ## Abstract
本來使用[LibreTranslate](https://github.com/LibreTranslate/LibreTranslate)作為Google翻譯的替代方案但使用體驗真的是不佳至少以正體中文與英文互翻的狀況下有時候翻譯結果超ㄎ一ㄤ的所以就自己DIY寫一個吧🥵 本來使用[LibreTranslate](https://github.com/LibreTranslate/LibreTranslate)作為Google翻譯的替代方案但使用體驗真的是不佳至少以正體中文與英文互翻的狀況下有時候翻譯結果超ㄎ一ㄤ的所以就自己DIY寫一個吧🥵
[網站底加](https://translate.guineapig.love/)
## Requirements ## Requirements
* Hardware * Hardware
* MacbookPro14 2021 * MacbookPro14 2021

View File

@ -6,8 +6,8 @@
import streamlit as st import streamlit as st
from langchain.chains import LLMChain from langchain.chains import LLMChain
from langchain.prompts import PromptTemplate from langchain.prompts import PromptTemplate
from langchain_ollama import ChatOllama
from langchain_google_genai import ChatGoogleGenerativeAI from langchain_google_genai import ChatGoogleGenerativeAI
from langchain_ollama import ChatOllama
from langchain_openai import ChatOpenAI from langchain_openai import ChatOpenAI
from utils import parse_config from utils import parse_config