Skip to content
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

Ai refactor #61

Merged
merged 40 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
278bd96
Template generation version from Hackathon
seanmcn Oct 4, 2023
5c6ee49
Updates .gitignore
seanmcn Oct 10, 2023
e7a5598
Updates demo-config.yaml
seanmcn Oct 10, 2023
dc08ea4
Moves template content demo
seanmcn Oct 10, 2023
4e76c28
AI Refactor
seanmcn Oct 10, 2023
facda2b
Doc updates
seanmcn Oct 10, 2023
aa35288
Merge branch 'master' into ai-refactor
seanmcn Oct 10, 2023
79d845c
Composer update
seanmcn Oct 10, 2023
36a3b30
Moves json extractor to trait
seanmcn Oct 10, 2023
d15c23a
Switch return type of create
seanmcn Oct 10, 2023
b8d9eee
Update method signature
seanmcn Oct 10, 2023
29ee9e4
Adds Ollama provider
seanmcn Oct 10, 2023
81a09bc
Comment update
seanmcn Oct 13, 2023
936a667
Merge branch 'master' into ai-refactor
seanmcn Oct 19, 2023
1374c04
Merge remote-tracking branch 'origin/1.x.x' into ai-refactor
seanmcn Oct 19, 2023
7a0a0b7
Documentation update
seanmcn Oct 19, 2023
988f694
Fix to creating templates if they are needed
seanmcn Oct 19, 2023
b4a1ee2
Merge remote-tracking branch 'origin/1.x.x' into ai-refactor
seanmcn Oct 27, 2023
6aebbcc
Removes HuggingFace & Ollama AI providers
seanmcn Oct 29, 2023
27d3157
Simplify AI Providers
seanmcn Oct 29, 2023
fec760e
Improves template generation
seanmcn Oct 29, 2023
bebd5f4
Code style fixes
seanmcn Oct 29, 2023
0e725da
Switches demos over to use AI commands
seanmcn Oct 30, 2023
caaf887
Updates Template demos
seanmcn Oct 30, 2023
fe43d42
Removes JsonExtractorTrait
seanmcn Oct 30, 2023
a0d4e5a
AI Refactor
seanmcn Oct 30, 2023
ad54d68
Add demo templates
seanmcn Oct 30, 2023
8c8fd30
Add ai_data example
seanmcn Oct 30, 2023
6ec863c
Increase allowed length of git commit body line
seanmcn Oct 30, 2023
a9674c3
Merge branch '1.x.x' into ai-refactor
seanmcn Oct 31, 2023
aa5bb00
Update documentation after merge
seanmcn Oct 31, 2023
2716e89
Removes template structure and content generation
seanmcn Oct 31, 2023
2b9de19
AI command/generator changes
seanmcn Oct 31, 2023
44409ec
Updates demo ordering
seanmcn Oct 31, 2023
92fcd5c
Merge branch '1.x.x' into ai-refactor
seanmcn Oct 31, 2023
e3d38d7
This commit updates the documentation
seanmcn Oct 31, 2023
321828c
Renames $aiHandler -> $aiProvider
seanmcn Oct 31, 2023
ba3a524
Update error message for incorrect provider
seanmcn Nov 2, 2023
d936b1d
Merge branch '1.x.x' into ai-refactor
seanmcn Nov 2, 2023
c8a5aab
Documentation generation after merge
seanmcn Nov 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
composer.phar
/vendor/
.idea
/demo/demo1/docs/
/demo/demo1/__cache/
/demo/demo2-templates-generation/__cache/
/demo/demo2-templates-generation/docs/
/demo/demo3-add-missing-doc-blocks/__cache/
/demo/demo4-generating-readme-file/__cache/
/demo/demo4-generating-readme-file/docs/
/demo/demo4-generating-readme-file/templates/
/.bumbleDocGenCache/
/last_run.log
/.phpunit.result.cache
/demo/*/__cache/
/demo/*/.cache/
/demo/*/docs/
/demo/*/last_run.log

/demo/demo1/docs/
/demo/demo2-templates-generation/templates/
/.bumbleDocGenCache/
/demo/demo5-config-array/docs/
/demo/demo5-config-array/.cache/
/demo/demo3-generating-readme-file/templates/
2 changes: 1 addition & 1 deletion captainhook.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"action": "\\CaptainHook\\App\\Hook\\Message\\Action\\Beams",
"options": {
"subjectLength": 50,
"bodyLineLength": 72
"bodyLineLength": 200
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
"php-di/php-di": "^7.0",
"symfony/yaml": "^6.0",
"hassankhan/config": "^3.1",
"tectalic/openai": "^1.5",
"guzzlehttp/guzzle": "^7.7",
"guzzlehttp/guzzle": "^7.8",
"symfony/filesystem": "^6.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5",
"dg/bypass-finals": "^1.4",
"squizlabs/php_codesniffer": "3.*",
Expand Down
Loading