jeremierostan commited on
Commit
ed29b57
1 Parent(s): 5bd601b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -7
README.md CHANGED
@@ -17,10 +17,9 @@ thumbnail: >-
17
 
18
  Claude 3.5 Sonnet has been well received by educators interested in AI integration.
19
  For many, it is the first model to outperform its OpenAI competitor, GPT-4o, and its "artifact" feature seems particularly successful.
20
- However, both the lack of internet access and the inability to create shareable custom assistants are often pointed out as clear disadvantages.
21
 
22
- In reality, Claude CAN access and leverage information from the internet - if provided with the appropriate functions and tools.
23
- Just like OpenAI, Anthropic has an "API" interface, usually meant for developers, which also makes it possible
24
  to create chatbots with custom knowledge and instructions.
25
 
26
  This is what you will find here.
@@ -32,13 +31,13 @@ Steps =
32
  - Create a HuggingFace account if you do not have one
33
  - Set your [Anthropic](https://console.anthropic.com/dashboard) API key as a secret
34
  - Set desired username and password as secrets
35
- - Upload the desired knowledge base / reference document for the assistant under "Files"
36
  - Copy the path where indicated in app.py
37
  - Change the custom instructions to fit your use case
38
  - Change UI elements as needed
39
 
40
  Important =
41
  - This set-up uses a very simple retrieval strategy. Advanced used should consider using [Voyage AI](https://docs.anthropic.com/en/docs/build-with-claude/embeddings) as recommended by Anthropic
42
- - It does not have a vector store, and can only handle a single, small document (e.g., one-page rubric)
43
- - It also does not have internet access
44
- - You have the option to use Claude 3.5 Sonnet or the much cheaper Claude 3 Haiku (see pricing [here](https://www.anthropic.com/pricing#anthropic-api))
 
17
 
18
  Claude 3.5 Sonnet has been well received by educators interested in AI integration.
19
  For many, it is the first model to outperform its OpenAI competitor, GPT-4o, and its "artifact" feature seems particularly successful.
20
+ However, the inability to create shareable assistants (like custom GPTs) is often pointed out as clear disadvantage.
21
 
22
+ In reality, just like OpenAI, Anthropic has an "API" interface, usually meant for developers, which makes it possible
 
23
  to create chatbots with custom knowledge and instructions.
24
 
25
  This is what you will find here.
 
31
  - Create a HuggingFace account if you do not have one
32
  - Set your [Anthropic](https://console.anthropic.com/dashboard) API key as a secret
33
  - Set desired username and password as secrets
34
+ - Upload the desired PDF knowledge base / reference document for the assistant under "Files"
35
  - Copy the path where indicated in app.py
36
  - Change the custom instructions to fit your use case
37
  - Change UI elements as needed
38
 
39
  Important =
40
  - This set-up uses a very simple retrieval strategy. Advanced used should consider using [Voyage AI](https://docs.anthropic.com/en/docs/build-with-claude/embeddings) as recommended by Anthropic
41
+ - It does not have a vector store, and is thus best for a single, small document (e.g., one-page rubric)
42
+ - You have the option to use Claude 3.5 Sonnet or the much cheaper Claude 3 Haiku (see pricing [here](https://www.anthropic.com/pricing#anthropic-api))
43
+ - Advanced RAG for multiple, longer documents and internet access are projects for another time :)