mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-01 03:46:23 +02:00
init project
This commit is contained in:
commit
c871144507
204 changed files with 7220 additions and 0 deletions
1
scripts/coverage.sh
Executable file
1
scripts/coverage.sh
Executable file
|
|
@ -0,0 +1 @@
|
|||
coverage run --source ./metagpt -m pytest && coverage report -m && coverage html && open htmlcov/index.html
|
||||
3
scripts/get_all_classes_and_funcs.sh
Executable file
3
scripts/get_all_classes_and_funcs.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
find metagpt | grep "\.py" | grep -Ev "(__init__|pyc)" | xargs grep -E "(^class| def )" 2>/dev/null | grep -v -E "(grep|tests|examples)"
|
||||
3
scripts/set_env_example.sh
Executable file
3
scripts/set_env_example.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
export OPENAI_API_KEY=YOUR_KEY
|
||||
Loading…
Add table
Add a link
Reference in a new issue