Joshua Sundance Bailey
commited on
Commit
·
8672124
1
Parent(s):
bbf7b6c
add support for anthropic and anyscale
Browse files
README.md
CHANGED
@@ -30,6 +30,17 @@ This `README` was written by [Claude 2](https://www.anthropic.com/index/claude-2
|
|
30 |
|
31 |
# Features
|
32 |
- Chat interface for talking to AI assistant
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
- Streaming output of assistant responses
|
34 |
- Leverages LangChain for dialogue management
|
35 |
- Integrates with [LangSmith](https://smith.langchain.com) for tracing conversations
|
@@ -66,8 +77,9 @@ CI workflows in `.github/workflows` handle building and publishing the image.
|
|
66 |
- [Streamlit](https://streamlit.io)
|
67 |
- [LangChain](https://langchain.com)
|
68 |
- [LangSmith](https://smith.langchain.com)
|
|
|
|
|
|
|
69 |
|
70 |
# TODO
|
71 |
-
1.
|
72 |
-
2. Add support for Anthropic and Anyscale chat models
|
73 |
-
3. More customization / parameterization in sidebar
|
|
|
30 |
|
31 |
# Features
|
32 |
- Chat interface for talking to AI assistant
|
33 |
+
- Supports models from:
|
34 |
+
- [OpenAI](https://openai.com/)
|
35 |
+
- `gpt-3.5-turbo`
|
36 |
+
- `gpt-4`
|
37 |
+
- [Anthropic](https://www.anthropic.com/)
|
38 |
+
- `claude-instant-v1`
|
39 |
+
- `claude-2`
|
40 |
+
- [Anyscale Endpoints](https://endpoints.anyscale.com/)
|
41 |
+
- `meta-llama/Llama-2-7b-chat-hf`
|
42 |
+
- `meta-llama/Llama-2-13b-chat-hf`
|
43 |
+
- `meta-llama/Llama-2-70b-chat-hf`
|
44 |
- Streaming output of assistant responses
|
45 |
- Leverages LangChain for dialogue management
|
46 |
- Integrates with [LangSmith](https://smith.langchain.com) for tracing conversations
|
|
|
77 |
- [Streamlit](https://streamlit.io)
|
78 |
- [LangChain](https://langchain.com)
|
79 |
- [LangSmith](https://smith.langchain.com)
|
80 |
+
- [OpenAI](https://openai.com/)
|
81 |
+
- [Anthropic](https://www.anthropic.com/)
|
82 |
+
- [Anyscale Endpoints](https://endpoints.anyscale.com/)
|
83 |
|
84 |
# TODO
|
85 |
+
1. More customization / parameterization in sidebar
|
|
|
|