fixbug: cannot find metagpt module

This commit is contained in:
莘权 马 2023-08-09 16:37:29 +08:00
parent 35470dcee4
commit 13a91349f7
5 changed files with 25 additions and 5 deletions

View file

@ -4,9 +4,12 @@
@Time : 2023/5/6 14:13
@Author : alexanderwu
@File : llm_hello_world.py
@Modified By: mashenquan, 2023-8-9, fix-bug: cannot find metagpt module.
"""
import asyncio
from pathlib import Path
import sys
sys.path.append(str(Path(__file__).resolve().parent.parent))
from metagpt.llm import LLM, Claude
from metagpt.logs import logger

View file

@ -4,10 +4,13 @@
@Time : 2023/5/7 18:32
@Author : alexanderwu
@File : search_google.py
@Modified By: mashenquan, 2023-8-9, fix-bug: cannot find metagpt module.
"""
import asyncio
from pathlib import Path
import sys
sys.path.append(str(Path(__file__).resolve().parent.parent))
from metagpt.roles import Searcher

View file

@ -2,9 +2,12 @@
# -*- coding: utf-8 -*-
"""
@File : search_kb.py
@Modified By: mashenquan, 2023-8-9, fix-bug: cannot find metagpt module.
"""
import asyncio
from pathlib import Path
import sys
sys.path.append(str(Path(__file__).resolve().parent.parent))
from metagpt.const import DATA_PATH
from metagpt.document_store import FaissStore
from metagpt.logs import logger

View file

@ -1,5 +1,12 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@Modified By: mashenquan, 2023-8-9, fix-bug: cannot find metagpt module.
"""
import asyncio
from pathlib import Path
import sys
sys.path.append(str(Path(__file__).resolve().parent.parent))
from metagpt.roles import Searcher
from metagpt.tools import SearchEngineType

View file

@ -1,11 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@Modified By: mashenquan, 2023-07-27, + `industry` concept
@Modified By: mashenquan, 2023-07-27, + write teaching plan flow demo
"""
import asyncio
from pathlib import Path
import sys
sys.path.append(str(Path(__file__).resolve().parent.parent))
import aiofiles
import fire
from metagpt.logs import logger