| 
									
										
										
										
											2024-03-23 21:24:18 +08:00
										 |  |  | //go:build integration
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package integration | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-27 04:04:17 +08:00
										 |  |  | 	"github.com/ollama/ollama/api" | 
					
						
							| 
									
										
										
										
											2024-03-23 21:24:18 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // TODO - this would ideally be in the llm package, but that would require some refactoring of interfaces in the server
 | 
					
						
							|  |  |  | //        package to avoid circular dependencies
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	stream = false | 
					
						
							|  |  |  | 	req    = [2]api.GenerateRequest{ | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Model:  "orca-mini", | 
					
						
							|  |  |  | 			Prompt: "why is the ocean blue?", | 
					
						
							|  |  |  | 			Stream: &stream, | 
					
						
							|  |  |  | 			Options: map[string]interface{}{ | 
					
						
							|  |  |  | 				"seed":        42, | 
					
						
							|  |  |  | 				"temperature": 0.0, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			Model:  "orca-mini", | 
					
						
							|  |  |  | 			Prompt: "what is the origin of the us thanksgiving holiday?", | 
					
						
							|  |  |  | 			Stream: &stream, | 
					
						
							|  |  |  | 			Options: map[string]interface{}{ | 
					
						
							|  |  |  | 				"seed":        42, | 
					
						
							|  |  |  | 				"temperature": 0.0, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-25 07:22:38 +08:00
										 |  |  | 	resp = [2][]string{ | 
					
						
							| 
									
										
										
										
											2024-08-06 07:34:54 +08:00
										 |  |  | 		{"sunlight"}, | 
					
						
							|  |  |  | 		{"england", "english", "massachusetts", "pilgrims"}, | 
					
						
							| 
									
										
										
										
											2024-03-23 21:24:18 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestIntegrationSimpleOrcaMini(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2024-03-25 07:22:38 +08:00
										 |  |  | 	ctx, cancel := context.WithTimeout(context.Background(), time.Second*120) | 
					
						
							| 
									
										
										
										
											2024-03-23 21:24:18 +08:00
										 |  |  | 	defer cancel() | 
					
						
							| 
									
										
										
										
											2024-03-31 00:50:05 +08:00
										 |  |  | 	GenerateTestHelper(ctx, t, req[0], resp[0]) | 
					
						
							| 
									
										
										
										
											2024-03-23 21:24:18 +08:00
										 |  |  | } |