Skip to content

Commit 22999db

Browse files
committed
Add notes about the state of the learn command (it's not working yet)
1 parent 6fa18d0 commit 22999db

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

aicodebot/cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,13 +357,15 @@ def fun_fact(verbose, response_token_size):
357357
@click.option("-v", "--verbose", count=True)
358358
@click.option("-r", "--repo-url", help="The URL of the repository to learn from")
359359
def learn(repo_url, verbose):
360-
"""Learn new skills and gain additional knowledge from a repository"""
360+
"""NOT WORKING YET: Learn new skills and gain additional knowledge from a repository"""
361361
# Clone the supplied repo locally and walk through it, load it into a
362362
# local vector store, and pre-query this vector store for the LLM to use a
363363
# context for the prompt
364364

365365
setup_config()
366366

367+
console.print("This is an experimental feature.", style=warning_style)
368+
367369
owner, repo_name = Coder.parse_github_url(repo_url)
368370

369371
start_time = datetime.datetime.utcnow()

0 commit comments

Comments
 (0)