-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Add FInancial COpilot to Qlib #1531
Draft
peteryang1
wants to merge
67
commits into
main
Choose a base branch
from
finco
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add openai interface support
…ment_workflow_task_as_example Xuyang1/refine task and implement workflow task as example
github-actions
bot
added
documentation
Improvements or additions to documentation
waiting for triage
Cannot auto-triage, wait for triage.
labels
May 31, 2023
…ask-implementation add the initial version of plan and config task implementation
…on_task add code implementation task
…e_cache add a debug mode to speed up debug process
* 1.update prompt; 2.update fetch information method. * 1.update prompt; 2.save result to markdown; * 1.get context info from context_manager; 2.run the entire process successfully.
* Update setup.py and config * WIP * init_workspace and CMDTask * Delete test_sumarize.py
* Edit yaml task * update comments
you-n-g
reviewed
Jun 2, 2023
qlib/finco/workflow.py
Outdated
"""All context are key value pairs which saves the input, output and status of the whole workflow""" | ||
|
||
def __init__(self) -> None: | ||
self.context = {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comparing with dataclass, dict is less readable.
* add recorder task * add batch generate summarize report unittest. * * add recorder to RecorderTask; * add matplot figure to analyzer.py * add image to markdown; * Add some log * update figure path. --------- Co-authored-by: Young <[email protected]> Co-authored-by: Cadenza-Li <[email protected]>
add simple readme & move prompt templates to outer yaml file to make the code clean
…crease_success_rate refine workflow to increase success rate
fix singleton bug
* Add knowledge module * add KnowledgeExperiment add KnowledgeBase; * add knowledge associate prompts to template; * Add Topic class * add Topic to summarize knowledge; * add recorder's metric to summarizeTask; --------- Co-authored-by: Cadenza-Li <[email protected]>
* Adjust prompt and fix cases * adjust summarizeTask & learn prompts; * fix typos & drop duplicate task method; * adjust learn prompts;
* add storage class; * new practice,execute,finance,infrastructure knowledge; * add query method to KnowledgeBase;
* Knowledge.storage to storages list; * optimize Knowledge & Storage save and load method; * optimize Knowledge query prompt;
Co-authored-by: Xu Yang <[email protected]>
* Update CMDTask prompt example for Windows OS; * Windows OS decode output of subprocess in gbk by default, specify encoding format explict; * Add KnowledgeBase's 4 knowledge types to corresponding task;
update knowledge module;
* Connect train task to ddg-da & rolling * Pylint & black formatting * Formatting
* optimize KnowledgeBase to complete workflow; * Update Knowledge methods of handle data IO; * Update task to handle multi recorders; * Integrate Knowledge to workflow; * optimize KnowledgeBase to complete workflow * Update TrainTask & AnalyseTask's recorder method; * Update SummarizeTask; * Update Workflow & Topic prompt;
add idea task and round1
finetune prompts
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
documentation
Improvements or additions to documentation
waiting for triage
Cannot auto-triage, wait for triage.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Motivation and Context
How Has This Been Tested?
pytest qlib/tests/test_all_pipeline.py
under upper directory ofqlib
.Screenshots of Test Results (if appropriate):
Types of changes