-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Close inactive issues | ||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
jobs: | ||
close-issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
days-before-issue-stale: 7 | ||
days-before-issue-close: 5 | ||
stale-issue-label: "stale" | ||
close-issue-label: "autoresolved" | ||
stale-issue-message: "This issue has been marked stale due to inactivity after repo maintainer or community member responses that request more information or suggest a solution. It will be closed after five additional days." | ||
close-issue-message: "This issue has been closed after being marked as stale for five days. Please reopen if needed." | ||
exempt-issue-label: "triage" | ||
days-before-pr-stale: -1 | ||
days-before-pr-close: -1 | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"description": "Add content-based KNN for selecting prompt tune few shot examples", | ||
"type": "minor" | ||
}, | ||
{ | ||
"description": "Add dynamic community report rating to the prompt tuning engine", | ||
"type": "minor" | ||
}, | ||
{ | ||
"description": "Add Minute-based Rate Limiting and fix rpm, tpm settings", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Add N parameter support", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Add cli flag to overlay default values onto a provided config.", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Add exception handling on file load", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Add language support to prompt tuning", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Add llm params to local and global search", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Fix broken prompt tuning link on docs", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Fix delta none on query calls", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Fix docsite base url", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Fix encoding model parameter on prompt tune", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Fix for --limit exceeding the dataframe length", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Fix for Ruff 0.5.2", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Fixed an issue where base OpenAI embeddings can't work with Azure OpenAI LLM", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "Modify defaults for CHUNK_SIZE, CHUNK_OVERLAP and GLEANINGS to reduce time and LLM calls", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "fix community_report doesn't work in settings.yaml", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "fix llm response content is None in query", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "fix the organization parameter is ineffective during queries", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "remove duplicate file read", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "support non-open ai model config to prompt tune", | ||
"type": "patch" | ||
}, | ||
{ | ||
"description": "use binary io processing for all file io operations", | ||
"type": "patch" | ||
} | ||
], | ||
"created_at": "2024-07-25T02:01:38+00:00", | ||
"version": "0.2.0" | ||
} |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Changelog | ||
Note: version releases in the 0.x.y range may introduce breaking changes. | ||
|
||
## 0.2.0 | ||
|
||
- minor: Add content-based KNN for selecting prompt tune few shot examples | ||
- minor: Add dynamic community report rating to the prompt tuning engine | ||
- patch: Add Minute-based Rate Limiting and fix rpm, tpm settings | ||
- patch: Add N parameter support | ||
- patch: Add cli flag to overlay default values onto a provided config. | ||
- patch: Add exception handling on file load | ||
- patch: Add language support to prompt tuning | ||
- patch: Add llm params to local and global search | ||
- patch: Fix broken prompt tuning link on docs | ||
- patch: Fix delta none on query calls | ||
- patch: Fix docsite base url | ||
- patch: Fix encoding model parameter on prompt tune | ||
- patch: Fix for --limit exceeding the dataframe length | ||
- patch: Fix for Ruff 0.5.2 | ||
- patch: Fixed an issue where base OpenAI embeddings can't work with Azure OpenAI LLM | ||
- patch: Modify defaults for CHUNK_SIZE, CHUNK_OVERLAP and GLEANINGS to reduce time and LLM calls | ||
- patch: fix community_report doesn't work in settings.yaml | ||
- patch: fix llm response content is None in query | ||
- patch: fix the organization parameter is ineffective during queries | ||
- patch: remove duplicate file read | ||
- patch: support non-open ai model config to prompt tune | ||
- patch: use binary io processing for all file io operations | ||
|
||
## 0.1.0 | ||
|
||
- minor: Initial Release |