├── .devcontainer └── devcontainer.json ├── README.md ├── backend ├── .env_template ├── .gitignore ├── Dockerfile ├── README.md ├── app │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── routers │ │ │ ├── __init__.py │ │ │ ├── chat.py │ │ │ ├── chat_config.py │ │ │ ├── events.py │ │ │ ├── knowledge_graph.py │ │ │ ├── models.py │ │ │ ├── upload.py │ │ │ └── vercel_response.py │ │ └── services │ │ │ ├── file.py │ │ │ └── suggestion.py │ ├── config.py │ ├── engine │ │ ├── __init__.py │ │ ├── generate.py │ │ ├── index.py │ │ ├── loaders │ │ │ ├── __init__.py │ │ │ ├── db.py │ │ │ ├── file.py │ │ │ └── web.py │ │ ├── query_filter.py │ │ └── tools │ │ │ ├── __init__.py │ │ │ ├── duckduckgo.py │ │ │ ├── img_gen.py │ │ │ ├── interpreter.py │ │ │ ├── openapi_action.py │ │ │ └── weather.py │ ├── getData.py │ ├── llmhub.py │ ├── observability.py │ └── settings.py ├── config │ ├── loaders.yaml │ └── tools.yaml ├── data │ ├── 101.pdf │ └── paul_graham.txt ├── main.py ├── pyproject.toml └── tests │ └── __init__.py ├── frontend ├── .env ├── .eslintrc.json ├── .gitignore ├── Dockerfile ├── README.md ├── app │ ├── components │ │ ├── chat-section.tsx │ │ ├── graphcomponent │ │ │ ├── LayoutSupport.ts │ │ │ ├── ReactGraphComponent.css │ │ │ ├── ReactGraphComponent.tsx │ │ │ ├── WorkerLayout.ts │ │ │ ├── get-data.tsx │ │ │ ├── use-graph-builder.ts │ │ │ ├── use-graph-component.ts │ │ │ ├── use-highlight-styles.ts │ │ │ └── use-input-mode.ts │ │ ├── header.tsx │ │ ├── knowledge_graph.tsx │ │ └── ui │ │ │ ├── README.md │ │ │ ├── button.tsx │ │ │ ├── chat │ │ │ ├── chat-actions.tsx │ │ │ ├── chat-input.tsx │ │ │ ├── chat-message │ │ │ │ ├── chat-avatar.tsx │ │ │ │ ├── chat-events.tsx │ │ │ │ ├── chat-files.tsx │ │ │ │ ├── chat-image.tsx │ │ │ │ ├── chat-sources.tsx │ │ │ │ ├── chat-suggestedQuestions.tsx │ │ │ │ ├── chat-tools.tsx │ │ │ │ ├── codeblock.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── markdown.tsx │ │ │ ├── chat-messages.tsx │ │ │ ├── chat.interface.ts │ │ │ ├── hooks │ │ │ │ ├── use-config.ts │ │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ │ └── use-file.ts │ │ │ ├── index.ts │ │ │ └── widgets │ │ │ │ ├── LlamaCloudSelector.tsx │ │ │ │ ├── PdfDialog.tsx │ │ │ │ └── WeatherCard.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── document-preview.tsx │ │ │ ├── drawer.tsx │ │ │ ├── file-uploader.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── icons │ │ │ ├── docx.svg │ │ │ ├── pdf.svg │ │ │ ├── sheet.svg │ │ │ └── txt.svg │ │ │ ├── input.tsx │ │ │ ├── lib │ │ │ └── utils.ts │ │ │ ├── select.tsx │ │ │ └── upload-image-preview.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── markdown.css │ ├── observability │ │ └── index.ts │ └── page.tsx ├── config │ └── tools.json ├── next.config.json ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public │ └── llama.png ├── tailwind.config.ts ├── tsconfig.json └── webpack.config.mjs └── recources └── image.png /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/.env_template -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | storage 3 | .env 4 | output 5 | -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/routers/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/api/routers/chat.py -------------------------------------------------------------------------------- /backend/app/api/routers/chat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/api/routers/chat_config.py -------------------------------------------------------------------------------- /backend/app/api/routers/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/api/routers/events.py -------------------------------------------------------------------------------- /backend/app/api/routers/knowledge_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/api/routers/knowledge_graph.py -------------------------------------------------------------------------------- /backend/app/api/routers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/api/routers/models.py -------------------------------------------------------------------------------- /backend/app/api/routers/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/api/routers/upload.py -------------------------------------------------------------------------------- /backend/app/api/routers/vercel_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/api/routers/vercel_response.py -------------------------------------------------------------------------------- /backend/app/api/services/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/api/services/file.py -------------------------------------------------------------------------------- /backend/app/api/services/suggestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/api/services/suggestion.py -------------------------------------------------------------------------------- /backend/app/config.py: -------------------------------------------------------------------------------- 1 | DATA_DIR = "data" 2 | -------------------------------------------------------------------------------- /backend/app/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/__init__.py -------------------------------------------------------------------------------- /backend/app/engine/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/generate.py -------------------------------------------------------------------------------- /backend/app/engine/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/index.py -------------------------------------------------------------------------------- /backend/app/engine/loaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/loaders/__init__.py -------------------------------------------------------------------------------- /backend/app/engine/loaders/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/loaders/db.py -------------------------------------------------------------------------------- /backend/app/engine/loaders/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/loaders/file.py -------------------------------------------------------------------------------- /backend/app/engine/loaders/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/loaders/web.py -------------------------------------------------------------------------------- /backend/app/engine/query_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/query_filter.py -------------------------------------------------------------------------------- /backend/app/engine/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/tools/__init__.py -------------------------------------------------------------------------------- /backend/app/engine/tools/duckduckgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/tools/duckduckgo.py -------------------------------------------------------------------------------- /backend/app/engine/tools/img_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/tools/img_gen.py -------------------------------------------------------------------------------- /backend/app/engine/tools/interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/tools/interpreter.py -------------------------------------------------------------------------------- /backend/app/engine/tools/openapi_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/tools/openapi_action.py -------------------------------------------------------------------------------- /backend/app/engine/tools/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/engine/tools/weather.py -------------------------------------------------------------------------------- /backend/app/getData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/getData.py -------------------------------------------------------------------------------- /backend/app/llmhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/llmhub.py -------------------------------------------------------------------------------- /backend/app/observability.py: -------------------------------------------------------------------------------- 1 | def init_observability(): 2 | pass 3 | -------------------------------------------------------------------------------- /backend/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/app/settings.py -------------------------------------------------------------------------------- /backend/config/loaders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/config/loaders.yaml -------------------------------------------------------------------------------- /backend/config/tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/config/tools.yaml -------------------------------------------------------------------------------- /backend/data/101.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/data/101.pdf -------------------------------------------------------------------------------- /backend/data/paul_graham.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/data/paul_graham.txt -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/backend/pyproject.toml -------------------------------------------------------------------------------- /backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/.env -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app/components/chat-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/chat-section.tsx -------------------------------------------------------------------------------- /frontend/app/components/graphcomponent/LayoutSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/graphcomponent/LayoutSupport.ts -------------------------------------------------------------------------------- /frontend/app/components/graphcomponent/ReactGraphComponent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/graphcomponent/ReactGraphComponent.css -------------------------------------------------------------------------------- /frontend/app/components/graphcomponent/ReactGraphComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/graphcomponent/ReactGraphComponent.tsx -------------------------------------------------------------------------------- /frontend/app/components/graphcomponent/WorkerLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/graphcomponent/WorkerLayout.ts -------------------------------------------------------------------------------- /frontend/app/components/graphcomponent/get-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/graphcomponent/get-data.tsx -------------------------------------------------------------------------------- /frontend/app/components/graphcomponent/use-graph-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/graphcomponent/use-graph-builder.ts -------------------------------------------------------------------------------- /frontend/app/components/graphcomponent/use-graph-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/graphcomponent/use-graph-component.ts -------------------------------------------------------------------------------- /frontend/app/components/graphcomponent/use-highlight-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/graphcomponent/use-highlight-styles.ts -------------------------------------------------------------------------------- /frontend/app/components/graphcomponent/use-input-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/graphcomponent/use-input-mode.ts -------------------------------------------------------------------------------- /frontend/app/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/header.tsx -------------------------------------------------------------------------------- /frontend/app/components/knowledge_graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/knowledge_graph.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/README.md -------------------------------------------------------------------------------- /frontend/app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/button.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-actions.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-input.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/chat-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/chat-avatar.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/chat-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/chat-events.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/chat-files.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/chat-files.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/chat-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/chat-image.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/chat-sources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/chat-sources.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/chat-suggestedQuestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/chat-suggestedQuestions.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/chat-tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/chat-tools.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/codeblock.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/index.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-message/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-message/markdown.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat-messages.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/chat.interface.ts -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/hooks/use-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/hooks/use-config.ts -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/hooks/use-copy-to-clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/hooks/use-copy-to-clipboard.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/hooks/use-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/hooks/use-file.ts -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/index.ts -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/widgets/LlamaCloudSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/widgets/LlamaCloudSelector.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/widgets/PdfDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/widgets/PdfDialog.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/widgets/WeatherCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/chat/widgets/WeatherCard.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/document-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/document-preview.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/drawer.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/file-uploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/file-uploader.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/icons/docx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/icons/docx.svg -------------------------------------------------------------------------------- /frontend/app/components/ui/icons/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/icons/pdf.svg -------------------------------------------------------------------------------- /frontend/app/components/ui/icons/sheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/icons/sheet.svg -------------------------------------------------------------------------------- /frontend/app/components/ui/icons/txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/icons/txt.svg -------------------------------------------------------------------------------- /frontend/app/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/input.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/lib/utils.ts -------------------------------------------------------------------------------- /frontend/app/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/select.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/upload-image-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/components/ui/upload-image-preview.tsx -------------------------------------------------------------------------------- /frontend/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/favicon.ico -------------------------------------------------------------------------------- /frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/globals.css -------------------------------------------------------------------------------- /frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/layout.tsx -------------------------------------------------------------------------------- /frontend/app/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/markdown.css -------------------------------------------------------------------------------- /frontend/app/observability/index.ts: -------------------------------------------------------------------------------- 1 | export const initObservability = () => {}; 2 | -------------------------------------------------------------------------------- /frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/app/page.tsx -------------------------------------------------------------------------------- /frontend/config/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/config/tools.json -------------------------------------------------------------------------------- /frontend/next.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/next.config.json -------------------------------------------------------------------------------- /frontend/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/next.config.mjs -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/prettier.config.js -------------------------------------------------------------------------------- /frontend/public/llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/public/llama.png -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/webpack.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/frontend/webpack.config.mjs -------------------------------------------------------------------------------- /recources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yWorks/yfiles-graph-for-create-llama/HEAD/recources/image.png --------------------------------------------------------------------------------