mirror of
https://github.com/MIDORIBIN/langchain-gpt4free.git
synced 2024-12-23 19:22:58 +03:00
138abc4a30
fix #1
19 lines
332 B
Python
19 lines
332 B
Python
from g4f import Provider, models
|
|
from langchain.llms.base import LLM
|
|
|
|
from langchain_g4f import G4FLLM
|
|
|
|
|
|
def main():
|
|
llm: LLM = G4FLLM(
|
|
model=models.gpt_35_turbo,
|
|
provider=Provider.Aichat,
|
|
)
|
|
|
|
res = llm("hello")
|
|
print(res) # Hello! How can I assist you today?
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|