-
Notifications
You must be signed in to change notification settings - Fork 1
feat: add gap logging functionality and improve bot thread management #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
00d27ff
37a95d2
b306146
6ef33d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -326,4 +326,6 @@ TSWLatexianTemp* | |
| #*Notes.bib | ||
|
|
||
| venv/ | ||
| .env | ||
| .env | ||
| __pycache__/ | ||
| .commandcode/ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| [ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need this log in the repo? Should we perhaps gitignore it?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is intentionally left for skill-updater, will make it more polished in my future pr. |
||
| { | ||
| "timestamp": "2026-06-11T06:28:50.131419+00:00", | ||
| "query": "hi", | ||
| "reason": "ollama_unavailable", | ||
| "thread_id": 1514516717588451369 | ||
| }, | ||
| { | ||
| "timestamp": "2026-06-11T06:29:33.996652+00:00", | ||
| "query": "hi", | ||
| "reason": "ollama_unavailable", | ||
| "thread_id": 1514516902330896445 | ||
| }, | ||
| { | ||
| "timestamp": "2026-06-11T06:43:02.871048+00:00", | ||
| "query": "hi", | ||
| "reason": "ollama_unavailable", | ||
| "thread_id": 1514520294717526096 | ||
| }, | ||
| { | ||
| "timestamp": "2026-06-11T06:43:09.796853+00:00", | ||
| "query": "hi", | ||
| "reason": "ollama_unavailable", | ||
| "thread_id": 1514520323834511490 | ||
| }, | ||
| { | ||
| "timestamp": "2026-06-11T06:43:47.538207+00:00", | ||
| "query": "hi", | ||
| "reason": "ollama_unavailable", | ||
| "thread_id": 1514520482131607553 | ||
| } | ||
| ] | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| Set WshShell = CreateObject("WScript.Shell") | ||
| Dim botDir | ||
| Set WshShell = CreateObject("WScript.Shell") | ||
| Set fso = CreateObject("Scripting.FileSystemObject") | ||
| Dim botDir | ||
| botDir = fso.GetParentFolderName(WScript.ScriptFullName) | ||
| WshShell.Run "cmd /c cd /d """ & botDir & """ && venv\Scripts\python.exe bot.py", 0, False |
Uh oh!
There was an error while loading. Please reload this page.