mirror of
https://github.com/langchain-ai/reply_gAI.git
synced 2026-07-01 08:35:18 -04:00
Update README.md
This commit is contained in:
committed by
Lance Martin
parent
5c10acf20c
commit
2770ecc05c
@@ -1,7 +1,9 @@
|
||||
# Reply gAI
|
||||
# reply gAI
|
||||
|
||||
Reply gAI is an AI-powered personal assistant for Twitter/X users that creates interactive chatbot personas. It automatically collects a user's Tweets, stores them in long-term memory, and uses Retrieval-Augmented Generation (RAG) to generate responses that match their unique writing style and viewpoints.
|
||||
|
||||

|
||||
|
||||
## 🚀 Quickstart
|
||||
|
||||
One option for accessing Twitter/X data is the [Arcade API](https://docs.arcade-ai.com/integrations/toolkits/x) toolkit.
|
||||
@@ -29,11 +31,11 @@ You should see the following output and Studio will open in your browser:
|
||||
|
||||
In the `configuration` tab, add the Twitter/X handle of any user:
|
||||
|
||||

|
||||

|
||||
|
||||
You can interact with a chatbot persona for that user:
|
||||
Then, just interact with a chatbot persona for that user:
|
||||
|
||||

|
||||

|
||||
|
||||
## How it works
|
||||
|
||||
@@ -69,7 +71,11 @@ In the quickstart, we use a [locally running LangGraph server](https://langchain
|
||||
|
||||
This uses the `langraph dev` command, which [launches the server in development mode](https://langchain-ai.github.io/langgraph/cloud/reference/cli/#dev).
|
||||
|
||||
Tweets are saved to the LangGraph store, which uses Postgres as is saved in the `.langgraph_api/` directory.
|
||||
Tweets are saved to the [LangGraph store](https://langchain-ai.github.io/langgraph/concepts/persistence/#memory-store), which uses Postgres for persistence and is saved in the `.langgraph_api/` folder in this directory.
|
||||
|
||||
You can visualize Tweets saved per each user in the Store directly with LangGraph Studio.
|
||||
|
||||

|
||||
|
||||
## Deployment
|
||||
|
||||
@@ -77,6 +83,10 @@ If you want to want to launch the server in a mode suitable for production, you
|
||||
|
||||
* Add `LANGSMITH_API_KEY` to your `.env` file.
|
||||
* Ensure [Docker](https://docs.docker.com/engine/install/) is running on your machine.
|
||||
* [Run with `langgraph up`](https://langchain-ai.github.io/langgraph/cloud/reference/cli/#up): `luvx --refresh --from "langgraph-cli[inmem]" --with-editable . --python 3.11 langgraph up`
|
||||
* [Run with `langgraph up`](https://langchain-ai.github.io/langgraph/cloud/reference/cli/#up)
|
||||
|
||||
See [Module 6](https://github.com/langchain-ai/langchain-academy/tree/main/module-6) of LangChain Academy for a detailed walkthrough of deployment options with LangGraph.
|
||||
```bash
|
||||
luvx --refresh --from "langgraph-cli[inmem]" --with-editable . --python 3.11 langgraph up
|
||||
```
|
||||
|
||||
See [Module 6](https://github.com/langchain-ai/langchain-academy/tree/main/module-6) of LangChain Academy for a detailed walkthrough of deployment options with LangGraph.
|
||||
|
||||
Reference in New Issue
Block a user