| """ |
| Docker & Kubernetes Matching and Recommendation API — Hugging Face Spaces Demo |
| Auto-generated by FORGE-X |
| """ |
|
|
| import gradio as gr |
|
|
|
|
| def demo_interface(query: str) -> str: |
| """Demonstrate Docker & Kubernetes Matching and Recommendation API capabilities.""" |
| if not query.strip(): |
| return "Please enter a query to see the demo output." |
|
|
| |
| response = f"""## Docker & Kubernetes Matching and Recommendation API Output |
| |
| **Query:** {query} |
| |
| **Result:** |
| This is a demonstration of Docker & Kubernetes Matching and Recommendation API. The full tool provides: |
| |
| - See documentation for full feature list |
| |
| **Note:** This is a UI demo. The full source code is available for purchase. |
| """ |
| return response |
|
|
|
|
| with gr.Blocks( |
| title="Docker & Kubernetes Matching and Recommendation API", |
| theme=gr.themes.Soft(), |
| ) as demo: |
| gr.Markdown( |
| """# Docker & Kubernetes Matching and Recommendation API |
| |
| Tired of guessing which Docker base image or Kubernetes resource spec fits your app? Our Matching & Recommendation API cuts hours of trial and error, giving you data-driven pairings in seconds. This |
| |
| --- |
| """ |
| ) |
|
|
| with gr.Row(): |
| with gr.Column(scale=1): |
| query_input = gr.Textbox( |
| label="Input", |
| placeholder="Enter your query here...", |
| lines=4, |
| ) |
| submit_btn = gr.Button("Run Demo", variant="primary") |
|
|
| with gr.Column(scale=1): |
| output_box = gr.Markdown(label="Output") |
|
|
| submit_btn.click( |
| fn=demo_interface, |
| inputs=[query_input], |
| outputs=[output_box], |
| ) |
|
|
| gr.Markdown( |
| """--- |
| *Full source code available — see pricing section in README* |
| """ |
| ) |
|
|
| if __name__ == "__main__": |
| demo.launch() |
|
|