Spaces:
				
			
			
	
			
			
		Sleeping
		
	
	
	
			
			
	
	
	
	
		
		
		Sleeping
		
	优化Unsplash API的使用
Browse files
    	
        crazy_functions/高级功能函数模板.py
    CHANGED
    
    | @@ -8,12 +8,14 @@ def 高阶功能模板函数(txt, top_p, temperature, chatbot, history, systemPr | |
| 8 | 
             
                for i in range(5):
         | 
| 9 | 
             
                    currentMonth = (datetime.date.today() + datetime.timedelta(days=i)).month
         | 
| 10 | 
             
                    currentDay = (datetime.date.today() + datetime.timedelta(days=i)).day
         | 
| 11 | 
            -
                    i_say = f'历史中哪些事件发生在{currentMonth}月{currentDay} | 
| 12 | 
             
                    chatbot.append((i_say, "[Local Message] waiting gpt response."))
         | 
| 13 | 
             
                    yield chatbot, history, '正常'  # 由于请求gpt需要一段时间,我们先及时地做一次状态显示
         | 
| 14 |  | 
| 15 | 
             
                    # history = [] 每次询问不携带之前的询问历史
         | 
| 16 | 
            -
                    gpt_say = predict_no_ui_long_connection( | 
|  | |
|  | |
| 17 |  | 
| 18 | 
             
                    chatbot[-1] = (i_say, gpt_say)
         | 
| 19 | 
             
                    history.append(i_say);history.append(gpt_say)
         | 
|  | |
| 8 | 
             
                for i in range(5):
         | 
| 9 | 
             
                    currentMonth = (datetime.date.today() + datetime.timedelta(days=i)).month
         | 
| 10 | 
             
                    currentDay = (datetime.date.today() + datetime.timedelta(days=i)).day
         | 
| 11 | 
            +
                    i_say = f'历史中哪些事件发生在{currentMonth}月{currentDay}日?列举两条并发送相关图片。发送图片时,请使用Markdown,将Unsplash API中的PUT_YOUR_QUERY_HERE替换成描述改事件的两个最重要的单词。'
         | 
| 12 | 
             
                    chatbot.append((i_say, "[Local Message] waiting gpt response."))
         | 
| 13 | 
             
                    yield chatbot, history, '正常'  # 由于请求gpt需要一段时间,我们先及时地做一次状态显示
         | 
| 14 |  | 
| 15 | 
             
                    # history = [] 每次询问不携带之前的询问历史
         | 
| 16 | 
            +
                    gpt_say = predict_no_ui_long_connection(
         | 
| 17 | 
            +
                        inputs=i_say, top_p=top_p, temperature=temperature, history=[], 
         | 
| 18 | 
            +
                        sys_prompt="当你想发送一张照片时,请使用Markdown, 并且不要有反斜线, 不要用代码块。使用 Unsplash API (https://source.unsplash.com/1280x720/? < PUT_YOUR_QUERY_HERE >)。") # 请求gpt,需要一段时间
         | 
| 19 |  | 
| 20 | 
             
                    chatbot[-1] = (i_say, gpt_say)
         | 
| 21 | 
             
                    history.append(i_say);history.append(gpt_say)
         |