(docs) proxy + langchain

This commit is contained in:
ishaan-jaff 2023-12-05 12:20:29 -08:00
parent 4f9f53f7dc
commit d5f67a0a25

View file

@ -24,5 +24,16 @@ response = chat(messages)
print(response)
claude_chat = ChatOpenAI(
openai_api_base="http://0.0.0.0:8000",
model = "claude-v1",
temperature=0.1
)
response = claude_chat(messages)
print(response)