Merge pull request #444 from ShankHarinath/minor-edits

Minor fixes
This commit is contained in:
Sirui Hong 2023-12-04 10:40:27 +08:00 committed by GitHub
commit 6feeac7d70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -115,7 +115,7 @@ class CostManager(metaclass=Singleton):
def get_total_cost(self):
"""
Get the total cost of API calls.
Returns:
float: The total cost of API calls.
"""

View file

@ -12,7 +12,7 @@ from metagpt.roles.project_manager import ProjectManager
from metagpt.roles.product_manager import ProductManager
from metagpt.roles.engineer import Engineer
from metagpt.roles.qa_engineer import QaEngineer
from metagpt.roles.seacher import Searcher
from metagpt.roles.searcher import Searcher
from metagpt.roles.sales import Sales
from metagpt.roles.customer_service import CustomerService

View file

@ -3,7 +3,7 @@
"""
@Time : 2023/5/23 17:25
@Author : alexanderwu
@File : seacher.py
@File : searcher.py
"""
from metagpt.actions import ActionOutput, SearchAndSummarize
from metagpt.logs import logger