{"id":35240312,"url":"https://github.com/chuongmep/aps-ollma-chatbot","last_synced_at":"2026-04-09T05:32:13.240Z","repository":{"id":282580248,"uuid":"949045246","full_name":"chuongmep/aps-ollma-chatbot","owner":"chuongmep","description":"Try Run APS use local LLM Llama3","archived":false,"fork":false,"pushed_at":"2025-04-22T02:07:45.000Z","size":1477,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-02-19T07:29:56.428Z","etag":null,"topics":["ai","aps","aps-llm","autodesk","openai"],"latest_commit_sha":null,"homepage":"https://chuongmep.com/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chuongmep.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-15T14:52:22.000Z","updated_at":"2025-07-19T17:46:13.000Z","dependencies_parsed_at":"2025-03-15T15:44:09.519Z","dependency_job_id":null,"html_url":"https://github.com/chuongmep/aps-ollma-chatbot","commit_stats":null,"previous_names":["chuongmep/aps-ollma-chatbot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chuongmep/aps-ollma-chatbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chuongmep%2Faps-ollma-chatbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chuongmep%2Faps-ollma-chatbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chuongmep%2Faps-ollma-chatbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chuongmep%2Faps-ollma-chatbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chuongmep","download_url":"https://codeload.github.com/chuongmep/aps-ollma-chatbot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chuongmep%2Faps-ollma-chatbot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31587804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"online","status_checked_at":"2026-04-09T02:00:06.848Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","aps","aps-llm","autodesk","openai"],"created_at":"2025-12-30T04:59:55.857Z","updated_at":"2026-04-09T05:32:13.234Z","avatar_url":"https://github.com/chuongmep.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aps-local-chatbot\n\nSimple chatbot for querying metadata of designs in [Autodesk Platform Services](https://aps.autodesk.com) using [Ollama](https://ollama.com/) for chat completion. This project try to bring poweful of Local LLM with zero cost into Autodesk Platform Services.\n\n![](./acc-ollma.png)\n\n[![LLM Olmma](https://img.youtube.com/vi/-Nr-_ZgK8qI/3.jpg)](https://www.youtube.com/watch?v=-Nr-_ZgK8qI)\n\n\n## Development\n\n### Prerequisites\n\n- [APS credentials](https://aps.autodesk.com/en/docs/oauth/v2/tutorials/create-app)\n- [Provisioned access to BIM360 or ACC](https://aps.autodesk.com/en/docs/bim360/v1/tutorials/getting-started/manage-access-to-docs/)\n- [Node.js](https://nodejs.org) (Long Term Support version is recommended) - Let's use NVM to install Node.js in WSL\n\nInstall WSL(Windows Subsystem for Linux) and Ubuntu 20.04 LTS\n```\nwsl --install\n```\nInstall [Ollma](https://ollama.com/) in WSL\n\n```bash\ncurl https://ollama.ai/install.sh | sh\n```\nRun Ollama\n```bash\nollama run ollama\n```\nUse Address : http://localhost:11434/api/chat chat completion\n\n```bash\ncurl --location 'http://localhost:11434/api/chat' \\\n--header 'Content-Type: application/json' \\\n--data '{\n  \"model\": \"llama3\",\n  \"messages\": [\n    { \"role\": \"user\", \"content\": \"why is the sky blue?\" }\n  ]\n}'\n```\n\nDownload Open Sourece LLM Model from [here](https://ollama.com/search)\n\n### Setup \u0026 Run\n\n- Run Ollama\n```bash\nollama run ollama\n```\n\n- Clone this project\n- Install dependencies: `npm install`\n- Specify the following environment variables:\n  - `APS_CLIENT_ID` - your APS application client ID\n  - `APS_CLIENT_SECRET` - your APS application client secret\n  - `APS_CALLBACK_URL` - your OAuth callback\n    - For local development, it should be http://localhost:8080/auth/callback\n    - Don't forget to add the same URL to your APS application in https://aps.autodesk.com/myapps as well\n  - `SERVER_SESSION_SECRET` - custom phrase used to encrypt/decrypt cookies\n- Configure the AWS credentials ([guide](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/setting-credentials-node.html)) and region\n- Run the server: `npm start`\n- Go to http://localhost:8080\n\n### Seeting .env file\n\n```bash\nAPS_CLIENT_ID=\"\"\nAPS_CLIENT_SECRET=\"\"\nAPS_CALLBACK_URL=\"http://localhost:8080/auth/callback\"\nSERVER_SESSION_SECRET=\"\"\nPORT=\"8080\"\n```\nHow to generate SERVER_SESSION_SECRET:\n```bash\nopenssl rand -hex 64\n```\n\n\n## Resources\n\nThis is project clone from [https://github.com/petrbroz/aps-design-chatbot](https://github.com/petrbroz/aps-design-chatbot) using [Amazon Bedrock](https://aws.amazon.com/bedrock) for the backend. Please refer to the original project for more details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchuongmep%2Faps-ollma-chatbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchuongmep%2Faps-ollma-chatbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchuongmep%2Faps-ollma-chatbot/lists"}