repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | from embedchain import App |
| #2 | |
| #3 | app = App.from_config("config.yaml") |
| #4 | app.add("/path/to/your/folder", data_type="directory") |
| #5 | |
| #6 | while True: |
| #7 | user_input = input("Enter your question (type 'exit' to quit): ") |
| #8 | |
| #9 | # Break the loop if the user types 'exit' |
| #10 | if user_input.lower() == "exit": |
| #11 | break |
| #12 | |
| #13 | # Process the input and provide a response |
| #14 | response = app.chat(user_input) |
| #15 | print(response) |
| #16 |