mirror of
				https://github.com/huggingface/text-generation-inference.git
				synced 2023-08-15 01:09:35 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<html>
 | 
						|
    <head>
 | 
						|
        <!-- Load the latest Swagger UI code and style from npm using unpkg.com -->
 | 
						|
        <script src="https://unpkg.com/swagger-ui-dist@3/swagger-ui-bundle.js"></script>
 | 
						|
        <link rel="stylesheet" type="text/css" href="https://unpkg.com/swagger-ui-dist@3/swagger-ui.css"/>
 | 
						|
        <title>Text Generation Inference API</title>
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <div id="swagger-ui"></div> <!-- Div to hold the UI component -->
 | 
						|
        <script>
 | 
						|
            window.onload = function () {
 | 
						|
                // Begin Swagger UI call region
 | 
						|
                const ui = SwaggerUIBundle({
 | 
						|
                    url: "openapi.json", //Location of Open API spec in the repo
 | 
						|
                    dom_id: '#swagger-ui',
 | 
						|
                    deepLinking: true,
 | 
						|
                    supportedSubmitMethods: [],
 | 
						|
                    presets: [
 | 
						|
                        SwaggerUIBundle.presets.apis,
 | 
						|
                        SwaggerUIBundle.SwaggerUIStandalonePreset
 | 
						|
                    ],
 | 
						|
                    plugins: [
 | 
						|
                        SwaggerUIBundle.plugins.DownloadUrl
 | 
						|
                    ],
 | 
						|
                })
 | 
						|
                window.ui = ui
 | 
						|
            }
 | 
						|
        </script>
 | 
						|
    </body>
 | 
						|
</html> |