Spaces:
Running
Running
Update README
Browse files
README.md
CHANGED
@@ -1,22 +1,37 @@
|
|
1 |
-
<
|
2 |
-
<img
|
3 |
-
</
|
4 |
|
5 |
-
<
|
6 |
-
<
|
7 |
-
</
|
8 |
|
9 |
-
<
|
10 |
<a href="https://inkchatgpt.streamlit.app/"><img src="https://static.streamlit.io/badges/streamlit_badge_black_white.svg"></a>
|
11 |
-
</
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
`InkChatGPT` is a `Streamlit` application that allows users to upload PDF documents and engage in a conversational Q&A with a language model (`LLM`) based on the content of those documents.
|
16 |
|
17 |
-
|
|
|
|
|
18 |
|
19 |
-
- Upload any PDF documents and start asking key information about it
|
|
|
20 |
- Conversational Q&A with LLM (powered by `OpenAI`'s GPT-3.5-turbo model)
|
21 |
- Use `HuggingFace` embeddings to generate embeddings for the document chunks with `all-MiniLM-L6-v2` model.
|
22 |
- Clear conversation history
|
|
|
1 |
+
<p align="center">
|
2 |
+
<img src="./assets/large_icon.png" height="200" alt="icon" />
|
3 |
+
</p>
|
4 |
|
5 |
+
<p align="center">
|
6 |
+
<em>π InkChatGPT - Chat with Documents</em>
|
7 |
+
</p>
|
8 |
|
9 |
+
<p align="center">
|
10 |
<a href="https://inkchatgpt.streamlit.app/"><img src="https://static.streamlit.io/badges/streamlit_badge_black_white.svg"></a>
|
11 |
+
</p>
|
12 |
|
13 |
+
<p align="center">
|
14 |
+
<b><a href="https://x.com/vinhnx">Twitter</a>
|
15 |
+
<span> β’ </span>
|
16 |
+
<a href="https://github.com/vinhnx">GitHub</a></b>
|
17 |
+
</p>
|
18 |
+
|
19 |
+
# InkChatGPT
|
20 |
+
|
21 |
+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
|
22 |
+
|
23 |
+
![GitHub User's stars](https://img.shields.io/github/stars/vinhnx)
|
24 |
+
![HackerNews User Karma](https://img.shields.io/hackernews/user-karma/vinhnx)
|
25 |
+
[![X (formerly Twitter) Follow](https://img.shields.io/twitter/follow/vinhnx)](https://x.com/vinhnx)
|
26 |
|
27 |
`InkChatGPT` is a `Streamlit` application that allows users to upload PDF documents and engage in a conversational Q&A with a language model (`LLM`) based on the content of those documents.
|
28 |
|
29 |
+
Building AI agents? Check out [AgentOps](https://agentops.ai/?tokencost)
|
30 |
+
|
31 |
+
### Features
|
32 |
|
33 |
+
- Upload any PDF documents and start asking key information about it, currently supports: PDF, TXT, DOCX, EPUB
|
34 |
+
- Limit 200MB per file
|
35 |
- Conversational Q&A with LLM (powered by `OpenAI`'s GPT-3.5-turbo model)
|
36 |
- Use `HuggingFace` embeddings to generate embeddings for the document chunks with `all-MiniLM-L6-v2` model.
|
37 |
- Clear conversation history
|