Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anmiralles/quarkus-ai-llm-websearch
This example demonstrates how to create a chatbot that can use the Tavily search engine to look up information on the web.
https://github.com/anmiralles/quarkus-ai-llm-websearch
ai chatbot langchain4j llm quarkus tavily
Last synced: 3 days ago
JSON representation
This example demonstrates how to create a chatbot that can use the Tavily search engine to look up information on the web.
- Host: GitHub
- URL: https://github.com/anmiralles/quarkus-ai-llm-websearch
- Owner: anmiralles
- Created: 2024-09-16T11:16:56.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-16T13:49:16.000Z (2 months ago)
- Last Synced: 2024-10-13T04:21:55.199Z (about 1 month ago)
- Topics: ai, chatbot, langchain4j, llm, quarkus, tavily
- Language: Java
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Web search example
This example demonstrates how to create a chatbot that can use the Tavily search
engine to look up information on the web.## Running the example
A prerequisite to running this example is to provide your OpenAI and Tavily API keys.
```
export QUARKUS_LANGCHAIN4J_TAVILY_API_KEY=
```Then, simply run the project in Dev mode:
```shell script
./mvnw compile quarkus:dev
```## Using the example
Open your browser and navigate to http://localhost:8080. Click the red robot
in the bottom right corner to open the chat window.# quarkus-ai-llm-summarizer
This project uses Quarkus to create a summarizer REST service for test and files. It uses Ollama (llama3.1) LLM in order to do the task.
## Running the application in dev mode
You can run your application in dev mode that enables live coding using:
```shell script
./mvnw compile quarkus:dev
```## Related Guides
- LangChain4j Ollama ([guide](https://docs.quarkiverse.io/quarkus-langchain4j/dev/index.html)): Provides the basic integration of Ollama with LangChain4j