forked from Chat_things/NeuroDock
for documentation on MAL API check out the [API docs](https://myanimelist.net/apiconfig/references/api/v2) Display:Display.java - Switched the AI model to `qwen3:8b` - some temporary test changes - switched to using static references when supposed too MALAPITool - Module for handling the MAL API MALAPITool:README.md - Some general information about the tools Started adding some base systems for finding API endpoints, will later be added to the API module for the ability to add plugins .gitignore - Added so all data folder are ignored. So submodules data folder from testing aren't added to git Core:OllamaObject.java - switched location of messages.json from the static location of `./cache/` to the dynamic location of `${Core.DATA_DIR}/messages.json` Core:OllamaPerameter.java - Added ENUM and ARRAY values. Incidentally also discover that Ollama supports more than just STRING, INT, and BOOLEAN ad parameters Core:Core.java - Added precluding day to the name of logging files, now using the format dd_HH-mm-ss
48 lines
585 B
Plaintext
48 lines
585 B
Plaintext
.gradle
|
|
build/
|
|
!gradle/wrapper/gradle-wrapper.jar
|
|
!**/src/main/**/build/
|
|
!**/src/test/**/build/
|
|
|
|
### IntelliJ IDEA ###
|
|
.idea/modules.xml
|
|
.idea/jarRepositories.xml
|
|
.idea/compiler.xml
|
|
.idea/libraries/
|
|
*.iws
|
|
*.iml
|
|
*.ipr
|
|
out/
|
|
!**/src/main/**/out/
|
|
!**/src/test/**/out/
|
|
|
|
### Eclipse ###
|
|
.apt_generated
|
|
.classpath
|
|
.factorypath
|
|
.project
|
|
.settings
|
|
.springBeans
|
|
.sts4-cache
|
|
bin/
|
|
!**/src/main/**/bin/
|
|
!**/src/test/**/bin/
|
|
|
|
### NetBeans ###
|
|
/nbproject/private/
|
|
/nbbuild/
|
|
/dist/
|
|
/nbdist/
|
|
/.nb-gradle/
|
|
|
|
### VS Code ###
|
|
.vscode/
|
|
|
|
### Mac OS ###
|
|
.DS_Store
|
|
|
|
/pythonFiles/
|
|
/messages/
|
|
/logs/
|
|
data
|
|
/cache/ |