{"id":22340494,"url":"https://github.com/dankolesnikov/vta-schedule","last_synced_at":"2025-08-11T05:15:26.125Z","repository":{"id":67650328,"uuid":"114658984","full_name":"dankolesnikov/VTA-Schedule","owner":"dankolesnikov","description":"Chat Bot for public transit in San Jose / Mtn View","archived":false,"fork":false,"pushed_at":"2018-01-02T17:17:40.000Z","size":3594,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-26T09:16:29.543Z","etag":null,"topics":["chatbot","google-actions","google-assistant","natural-language-processing","nlp","nltk"],"latest_commit_sha":null,"homepage":"","language":"Python","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/dankolesnikov.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":"2017-12-18T15:48:39.000Z","updated_at":"2022-01-07T02:08:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"fe40e724-0428-47cf-8a93-53e95fe2a6f0","html_url":"https://github.com/dankolesnikov/VTA-Schedule","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dankolesnikov/VTA-Schedule","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dankolesnikov%2FVTA-Schedule","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dankolesnikov%2FVTA-Schedule/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dankolesnikov%2FVTA-Schedule/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dankolesnikov%2FVTA-Schedule/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dankolesnikov","download_url":"https://codeload.github.com/dankolesnikov/VTA-Schedule/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dankolesnikov%2FVTA-Schedule/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269833229,"owners_count":24482408,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"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":["chatbot","google-actions","google-assistant","natural-language-processing","nlp","nltk"],"created_at":"2024-12-04T07:11:52.247Z","updated_at":"2025-08-11T05:15:26.101Z","avatar_url":"https://github.com/dankolesnikov.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VTA ChatBot \n\u003e Chat bot to assist VTA commuters\n\n![](pics/logo.jpg)\n\n## Conversational UI\n\nConversation I (bus schedule):\n\n* User: Hello! \n* Bot: What bus or light rail schedule you'd like to know about?\n* User: Dash bus from Diridon station\n* Bot: Departures at 2:25 PM and 2:50 PM. Anything else I can help?\n\nConversation II (light rail schedule):\n\n* User: Hello!\n* Bot: What bus or light rail schedule you'd like to know about?\n* User: Light rail from Fruitdale station\n* Bot: What direction are you going?\n* User: Winchester\n* Bot: Departures at 2:40 PM and 2:50 PM. Anything else I can help?\n\nConversation III (hourly schedule)\n\nBus:\n\n* User: Hello!\n* Bot: What bus or light rail schedule you'd like to know about?\n* User: Get schedule for Dash bus from Diridon station\n* Bot: Departures for this hour are: 6:06 PM 6:22 PM 6:48 PM 6:22 PM 6:48 PM Anything else I can help?\n\nLight rail:\n\n* User: Hello!\n* Bot: What bus or light rail schedule you'd like to know about?\n* User: Get schedule for light rail from Diridon station towards winchester\n* Bot: Departures for this hour are: 6:06 PM 6:22 PM 6:48 PM 6:22 PM 6:48 PM Anything else I can help?\n\n## G Assistant Intents\n\nThings you can ask in Google Assistant:\n\n* Talk to VTA Schedule to get schedule for Dash bus from Diridon station\n* Talk to VTA Schedule to get schedule for light rail from Diridon station towards winchester\n* Talk to VTA Schedule to get next departures on light rail from Diridon station\n* Talk to VTA Schedule to get next departures on Dash bus from Diridon station\n\n\n## Supported VTA Routes\n\n* Dash 201\n* Light Rail 902 Mtn View \u003c-\u003e Winchester\n\nTo be added soon:\n\n* Santa Teresa light rail\n* Bus 181\n\n### Directory \n\n    .\n    ├── app.py                  # Contains logic, rules and CL UI\n    ├── assistant.py            # Flask server for Google Assistant\n    ├── data.py                 # Contains data for NLP\n    ├── schedule.py             # Contains schedule for buses and light rail\n    ├── state.py                # Helper class to maintain the state of the conversation\n    ├── requirements.txt        # List of modules for Google App Engine\n    ├── actions.json            # Google Actions file\n    └── pics                    # Pictures\n    \n## Usage\n\nGoogle Assistant:\n\nSearch G Assistant's app for 'VTA Schedule'\n\nTo run chat bot with Command Line UI:\n```sh\npython app.py\n```\nTo run assistant locally on 8080 port:\n```sh\npython assistant.py\n```\n \n## Meta\n\nPlease feel free to reach out:)\n\nDanil Kolesnikov – danil.kolesnikov@sjsu.edu\n\nDistributed under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdankolesnikov%2Fvta-schedule","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdankolesnikov%2Fvta-schedule","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdankolesnikov%2Fvta-schedule/lists"}