├── .gitignore ├── README.md ├── backend ├── agent.py ├── database.py ├── endpoints.py ├── logger.py ├── main.py ├── movie_database_tool.py └── run.py ├── data └── imdb_top_1000.csv ├── frontend ├── .gitignore ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── image └── llm-imdb.gif ├── poetry.lock └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/README.md -------------------------------------------------------------------------------- /backend/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/backend/agent.py -------------------------------------------------------------------------------- /backend/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/backend/database.py -------------------------------------------------------------------------------- /backend/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/backend/endpoints.py -------------------------------------------------------------------------------- /backend/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/backend/logger.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/movie_database_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/backend/movie_database_tool.py -------------------------------------------------------------------------------- /backend/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/backend/run.py -------------------------------------------------------------------------------- /data/imdb_top_1000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/data/imdb_top_1000.csv -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/frontend/src/setupTests.js -------------------------------------------------------------------------------- /image/llm-imdb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/image/llm-imdb.gif -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibiscp/LLM-IMDB/HEAD/pyproject.toml --------------------------------------------------------------------------------