├── .gitignore ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── README.md ├── docker-compose.yaml ├── mvnw ├── mvnw.cmd ├── pom.xml └── src └── main ├── java └── com │ └── demo │ └── rag │ └── Application.java └── resources ├── application.properties └── wikipedia-hurricane-milton-page.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/demo/rag/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/src/main/java/com/demo/rag/Application.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/wikipedia-hurricane-milton-page.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzolov/spring-ai-cli-chatbot/HEAD/src/main/resources/wikipedia-hurricane-milton-page.pdf --------------------------------------------------------------------------------