Spaces:
Sleeping
Sleeping
File size: 558 Bytes
571f3d0 d10d3ce 571f3d0 d10d3ce 571f3d0 d10d3ce |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
"""
Bayesian Game - Hugging Face entry point
A Bayesian Game implementation featuring a Belief-based Agent using domain-driven design.
"""
from ui.gradio_interface import create_interface
def main():
"""Main entry point for the Bayesian Game application."""
demo = create_interface()
# Launch with Hugging Face compatible settings
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=False, # Set to True for public sharing if needed
show_error=True,
)
if __name__ == "__main__":
main()
|