| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #
- # Copyright 2024 The InfiniFlow Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- import argparse
- import os
- from agent.canvas import Canvas
- from api import settings
-
- if __name__ == '__main__':
- parser = argparse.ArgumentParser()
- dsl_default_path = os.path.join(
- os.path.dirname(os.path.realpath(__file__)),
- "dsl_examples",
- "retrieval_and_generate.json",
- )
- parser.add_argument('-s', '--dsl', default=dsl_default_path, help="input dsl", action='store', required=True)
- parser.add_argument('-t', '--tenant_id', default=False, help="Tenant ID", action='store', required=True)
- parser.add_argument('-m', '--stream', default=False, help="Stream output", action='store_true', required=False)
- args = parser.parse_args()
-
- settings.init_settings()
- canvas = Canvas(open(args.dsl, "r").read(), args.tenant_id)
- if canvas.get_prologue():
- print(f"==================== Bot =====================\n> {canvas.get_prologue()}", end='')
- query = ""
- while True:
- canvas.reset(True)
- query = input("\n==================== User =====================\n> ")
- ans = canvas.run(query=query)
- print("==================== Bot =====================\n> ", end='')
- for ans in canvas.run(query=query):
- print(ans, end='\n', flush=True)
-
- print(canvas.path)
|