ChenZiHong-Gavin commented on code in PR #77: URL: https://github.com/apache/incubator-hugegraph-ai/pull/77#discussion_r1749090286
########## hugegraph-llm/src/hugegraph_llm/config/config.py: ########## @@ -17,64 +17,24 @@ import os +import yaml from dataclasses import dataclass from typing import Literal, Optional from dotenv import dotenv_values, set_key from hugegraph_llm.utils.log import log +from hugegraph_llm.config.config_data import ConfigData, PromptData dirname = os.path.dirname package_path = dirname(dirname(dirname(dirname(os.path.abspath(__file__))))) env_path = os.path.join(package_path, ".env") +yaml_file_path = os.path.join(package_path, "src/hugegraph_llm/config/config_prompt.yaml") +# TODO: We need to tidy up the partition settings Review Comment: remove this TODO if it is done? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
