You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a poethepoet command to the package that creates all the necessary base files, classes and functions for a new context/category/command. This poe command should prompt the user for the name of context/category/command to then use that to navigate through the file directory to setup the correct standard_model of QueryParams & Data & Fetcher in the core module.
Refer to this section for more information on the creation logic.
Requirements:
If poe create context, the workflow should create a new top-level context module.
location of creation: src.humbldata.<context>
If poe create category, the workflow should create a new category module, within the specified context module.
location of creation: src.humbldata.<context>.<category>
If poe create command, the workflow should create a new command module in the appropriate/specified context and category module. It should then finally create a model.py file with a boilerplate def func() in the file.
location of creation: src.humbldata.<context>.<category>.<command>.model.py
Bounty XL
use GPT-4 to flesh out an initial version of the command, integrated into the poe workflow
The text was updated successfully, but these errors were encountered:
jjfantini
added
bounty-L
a $75 bounty for successful completion of fixing the issue
bounty-XL
a $100 bounty for successful completion of fixing the issue
labels
Mar 14, 2024
Description:
Add a
poethepoet
command to the package that creates all the necessary base files, classes and functions for a newcontext/category/command
. Thispoe
command should prompt the user for the name ofcontext/category/command
to then use that to navigate through the file directory to setup the correctstandard_model
ofQueryParams
&Data
&Fetcher
in thecore
module.Refer to this section for more information on the creation logic.
Requirements:
poe create context
, the workflow should create a new top-levelcontext
module.src.humbldata.<context>
poe create category
, the workflow should create a newcategory
module, within the specifiedcontext
module.src.humbldata.<context>.<category>
poe create command
, the workflow should create a newcommand
module in the appropriate/specifiedcontext
andcategory
module. It should then finally create amodel.py
file with a boilerplatedef func()
in the file.src.humbldata.<context>.<category>.<command>.model.py
Bounty XL
poe
workflowThe text was updated successfully, but these errors were encountered: