-
Notifications
You must be signed in to change notification settings - Fork 373
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
[Sweep GHA Fix] The GitHub Actions run failed with... #337
[Sweep GHA Fix] The GitHub Actions run failed with... #337
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Apply Sweep Rules to your PR?
|
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: [Sweep GHA Fix] The GitHub Actions run failed with the following error logs:
An error has occurred: 422 {"message": "Validation Failed", "errors": [{"resource": "PullRequest", "code": "custom", "message": "No commits between sweep/sweep_gha_fix_the_github_actions_run_fai_17 and sweep/sweep_gha_fix_the_github_actions_run_fai_20"}], "documentation_url": "https://docs.github.com/rest/pulls/pulls#create-a-pull-request"} (tracking ID: e13f7ac7bf) |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: [Sweep GHA Fix] The GitHub Actions run failed with the following error logs: Making changes according to plan... (step 3/3) |
Description
This pull request includes the following changes:
e2e.yml
workflow file to include a new environment variablePLAYWRIGHT_BROWSERS_PATH
and redirect the output of thepnpm exec playwright test
command to a file callederror_logs.txt
.lint.yml
for linting the code.test.yml
workflow file to use theactions/checkout@v2
andactions/setup-node@v2
actions, and changed thepnpm install
andpnpm run test
commands to usenpm
instead ofpnpm
.LLM.ts
file, including removing the import ofMessageContent
from../ChatEngine
, adding new interfacesLLMChatParamsBase
,LLMChatParamsStreaming
,LLMChatParamsNonStreaming
,LLMCompletionParamsBase
,LLMCompletionParamsStreaming
, andLLMCompletionParamsNonStreaming
, and updating thechat
andcomplete
methods.OpenAI.ts
file to extend theBaseLLM
class and make changes to thechat
andcomplete
methods.LlamaDeuce.ts
file to extend theBaseLLM
class and remove thehasStreaming
property.Anthropic.ts
file to extend theBaseLLM
class and remove thehasStreaming
property.Portkey.ts
file to extend theBaseLLM
class and remove thehasStreaming
property.MistralAI.ts
file to remove thehasStreaming
property.CallbackManager.test.ts
file to import theCallbackManager
class from the correct location.Embedding.test.ts
file to import the necessary classes and interfaces from the correct location.README-template.md
file to fix the links to the LlamaIndex GitHub repository.main.py
file to import theFastAPI
andCORSMiddleware
classes from the correct location.README-template.md
file in thestreaming/fastapi
template to fix the link to the LlamaIndex GitHub repository.