From a78cdc4be6d8788d7d38454b991607b5824e6d3e Mon Sep 17 00:00:00 2001 From: pomegranar Date: Wed, 15 Apr 2026 21:57:40 +0800 Subject: [PATCH 01/22] upgraded agent to take positional argument as a user query. --- chatdku/core/agent.py | 71 ++++++++++++++++++++++++++++++------------- devsync.sh | 13 ++++++-- 2 files changed, 61 insertions(+), 23 deletions(-) diff --git a/chatdku/core/agent.py b/chatdku/core/agent.py index 434eb066..770c7ad2 100755 --- a/chatdku/core/agent.py +++ b/chatdku/core/agent.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 +import argparse +import sys import traceback import dspy @@ -189,7 +191,8 @@ def forward( return i -def main(): +def build_agent(streaming: bool = True, max_iterations: int = 3) -> "Agent": + """Configure DSPy and return a ready-to-use Agent instance.""" setup() use_phoenix() @@ -202,17 +205,13 @@ def main(): temperature=config.llm_temperature, ) dspy.configure(lm=lm) - # To disable cache: + # To disable cache: # dspy.configure_cache( # enable_disk_cache=False, # enable_memory_cache=False # ) - import time - - # role = "student" - # access_type = "student" # hard code it for now, need parameter pass from user role user_id = "Chat_DKU" search_mode = 0 tools = [ @@ -232,29 +231,59 @@ def main(): search_mode=search_mode, files=[], ), - # DocRetrieverOuter( - # retriever_top_k=25, - # use_reranker=True, - # reranker_top_n=5, - # access_type=access_type, - # role=role, - # user_id=user_id, - # search_mode=search_mode, - # files=[], - # ), MajorRequirementsLookupOuter(config.major_requirements_dir), QueryCurriculumOuter(), PrerequisiteLookupOuter(prereq_csv_path=config.prereq_csv_path), CourseScheduleLookupOuter(classdata_csv_path=config.classdata_csv_path), ] - agent = Agent( - max_iterations=3, - streaming=True, + return Agent( + max_iterations=max_iterations, + streaming=streaming, get_intermediate=False, tools=tools, ) + +def run_query(query: str, agent: "Agent | None" = None) -> str: + """Run a single query and return the full response as a string. + + Suitable for programmatic use from Python: + from chatdku.core.agent import run_query + print(run_query("What are the CS major requirements?")) + """ + if agent is None: + agent = build_agent(streaming=False) + result = agent(current_user_message=query) + response = result.response + if isinstance(response, str): + return response + # Streaming generator — collect. + return "".join(response) + + +def main(): + parser = argparse.ArgumentParser(description="ChatDKU agent.") + parser.add_argument( + "query", + nargs="*", + help="Query to run once and exit. If omitted, starts interactive mode.", + ) + args = parser.parse_args() + + if args.query: + query = " ".join(args.query) + print(run_query(query)) + return + + _main_interactive() + + +def _main_interactive(): + import time + + agent = build_agent(streaming=True) + while True: try: print("*" * 10) @@ -282,5 +311,5 @@ def main(): main() except Exception: print(traceback.format_exc()) - - input() + if sys.stdin.isatty(): + input() diff --git a/devsync.sh b/devsync.sh index e2b4c083..43476977 100644 --- a/devsync.sh +++ b/devsync.sh @@ -36,11 +36,20 @@ fi TARGET="${1:-}" if [[ -n "$TARGET" ]]; then - if [[ "$TARGET" != *"/"* && "$TARGET" != *.py ]]; then - # Looks like a module (e.g. chatdku.core.agent) — run with -m + if [[ "$TARGET" == *.py || "$TARGET" == */* ]]; then + : # file path — handled below + elif [[ "$TARGET" =~ ^[A-Za-z_][A-Za-z0-9_]*(\.[A-Za-z_][A-Za-z0-9_]*)*$ ]]; then + # Valid Python module name (e.g. chatdku.core.agent) — run with -m REMOTE_RUN_CMD="uv run python -m $(printf %q "$TARGET")" RUN_DESC="python -m $TARGET" + TARGET="" # signal: already handled else + # Anything else — treat as a natural-language query for the agent. + REMOTE_RUN_CMD="uv run python -m chatdku.core.agent $(printf %q "$TARGET")" + RUN_DESC="agent query: $TARGET" + TARGET="" + fi + if [[ -n "$TARGET" ]]; then # Treat as a file path if [[ "$TARGET" = /* ]]; then TARGET="${TARGET#"$LOCAL_DIR"/}" From a952666e06ca8b04980e641b1fee2bc9a4c106cd Mon Sep 17 00:00:00 2001 From: pomegranar Date: Wed, 15 Apr 2026 22:42:42 +0800 Subject: [PATCH 02/22] added a cool TUI for agent --- chatdku/core/tui.py | 163 ++++++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 1 + 2 files changed, 164 insertions(+) create mode 100644 chatdku/core/tui.py diff --git a/chatdku/core/tui.py b/chatdku/core/tui.py new file mode 100644 index 00000000..27c4ac36 --- /dev/null +++ b/chatdku/core/tui.py @@ -0,0 +1,163 @@ +#!/usr/bin/env python3 +"""Terminal UI for the ChatDKU agent. + +Run: + python -m chatdku.core.tui +""" + +from __future__ import annotations + +import asyncio +from collections import deque + +from textual.app import App, ComposeResult +from textual.binding import Binding +from textual.containers import VerticalScroll +from textual.widgets import Footer, Header, Input, Static + +from chatdku.core.agent import build_agent + + +class Message(Static): + """A single chat bubble with a rounded, color-coded border.""" + + DEFAULT_CSS = """ + Message { + border: round #3a3f4b; + background: transparent; + padding: 0 1; + margin: 0 2; + width: auto; + max-width: 90%; + height: auto; + } + Message.user { border: round #8fd694; color: #d6f5d6; } + Message.agent { border: round #7ab7ff; color: #d6e6ff; } + Message.system { border: round #5c616d; color: #9aa0ab; } + Message.pending { border: round #4a4f5a; color: #7c8290; } + """ + + def __init__(self, role: str, content: str) -> None: + super().__init__(self._format(role, content), markup=False) + self.role = role + self.add_class(role) + + @staticmethod + def _format(role: str, content: str) -> str: + label = { + "user": "You", + "agent": "ChatDKU", + "system": "System", + "pending": "ChatDKU", + }.get(role, role) + return f"[{label}]\n{content}" + + def update_content(self, role: str, content: str) -> None: + self.update(self._format(role, content)) + + +class ChatDKUApp(App): + ENABLE_COMMAND_PALETTE = False + + CSS = """ + Screen { layout: vertical; background: transparent; } + Header { background: #1a1d23; color: #c7cbd4; } + Footer { background: #1a1d23; color: #8a909c; } + #log { height: 1fr; background: transparent; } + #input { + dock: bottom; + margin: 0 1 1 1; + border: round #3a3f4b; + background: transparent; + color: #d6dae2; + } + #input:focus { border: round #7ab7ff; } + """ + + BINDINGS = [ + Binding("ctrl+c", "quit", "Quit", priority=True), + Binding("ctrl+l", "clear", "Clear"), + ] + + def __init__(self) -> None: + super().__init__() + self.agent = None # built lazily in a worker + self.queue: deque[str] = deque() + self.busy = False + + def compose(self) -> ComposeResult: + yield Header(show_clock=False) + yield VerticalScroll(id="log") + yield Input( + placeholder="Ask about DKU… (Enter to send, Ctrl+C to quit)", id="input" + ) + yield Footer() + + async def on_mount(self) -> None: + self.title = "ChatDKU" + self.sub_title = "TUI" + await self._post("system", "Booting agent… (this may take a few seconds)") + self.query_one("#input", Input).focus() + self.run_worker(self._boot, thread=True, exclusive=True, group="boot") + + def _boot(self) -> None: + self.agent = build_agent(streaming=False) + self.call_from_thread(self._boot_done) + + async def _boot_done(self) -> None: + await self._post("system", "Ready.") + + async def _post(self, role: str, content: str) -> Message: + msg = Message(role, content) + log = self.query_one("#log", VerticalScroll) + await log.mount(msg) + log.scroll_end(animate=False) + return msg + + async def on_input_submitted(self, event: Input.Submitted) -> None: + text = event.value.strip() + if not text: + return + event.input.value = "" + await self._post("user", text) + self.queue.append(text) + if not self.busy: + await self._drain() + + async def _drain(self) -> None: + while self.queue: + query = self.queue.popleft() + self.busy = True + pending = await self._post("pending", "thinking…") + # Wait for boot before answering. + while self.agent is None: + await asyncio.sleep(0.1) + loop = asyncio.get_running_loop() + try: + answer = await loop.run_in_executor(None, self._run_agent, query) + except Exception as e: + answer = f"[error] {e}" + pending.update_content("agent", answer) + pending.remove_class("pending") + pending.add_class("agent") + self.query_one("#log", VerticalScroll).scroll_end(animate=False) + self.busy = False + + def _run_agent(self, query: str) -> str: + result = self.agent(current_user_message=query) + response = result.response + if isinstance(response, str): + return response + return "".join(response) + + async def action_clear(self) -> None: + log = self.query_one("#log", VerticalScroll) + await log.remove_children() + + +def main() -> None: + ChatDKUApp().run() + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml index 9dd8f0a6..e2ac5474 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,6 +62,7 @@ dependencies = [ "sqlalchemy", "pytest", "pre-commit", + "textual>=0.83.0", ] [project.optional-dependencies] From e1d42e3fda615414c74fc9af0c7035e33a67c4cc Mon Sep 17 00:00:00 2001 From: pomegranar Date: Thu, 16 Apr 2026 00:16:21 +0800 Subject: [PATCH 03/22] llama-index dependency bump (fixes warnings on agent run) --- pyproject.toml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e2ac5474..533f47ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,12 +33,13 @@ classifiers = [ dependencies = [ # core - "llama-index~=0.13.1", - "llama-index-storage-docstore-redis~=0.4.0", - "llama-index-vector-stores-redis~=0.6.0", - "llama-index-embeddings-text-embeddings-inference~=0.4.0", - "llama-index-llms-llama-cpp~=0.5.0", - "llama-index-retrievers-bm25~=0.6.2", + "llama-index~=0.14.20", + "llama-index-storage-docstore-redis~=0.5.0", + "llama-index-vector-stores-redis~=0.8.0", + "llama-index-embeddings-text-embeddings-inference~=0.5.0", + "llama-index-llms-llama-cpp~=0.6.0", + "llama-index-retrievers-bm25~=0.7.1", + "llama-index-readers-file~=0.6.0", "nltk>=3.9", "chromadb~=1.0.15", "arize-phoenix~=13.21.0", From 1b612f3ba728b817c5fa919fb9a1fe79d02ce49d Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Thu, 16 Apr 2026 11:11:13 +0800 Subject: [PATCH 04/22] Updating 225 to the latest version fix: reduce agent cold-start time from ~30s to ~9s The agent was hanging for roughly 30 seconds between the end of uv sync and the first line of output. A startup timing diagnostic (utils/startup_timer.py) revealed that virtually all of this time was spent in Python's import phase, not in initialization. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Root cause import dspy triggers dspy.clients, which unconditionally imports litellm. On every process start, litellm was fetching a remote model-pricing database from the internet, adding ~42 seconds of network I/O before a single line of agent code ran. Setting the environment variable LITELLM_LOCAL_MODEL_COST_MAP=True before import dspy instructs litellm to use its bundled local cost map instead, dropping that import from ~24s to ~2.6s. Secondary bottlenecks Two smaller but measurable import-time costs were also deferred. First, keyword_retriever.py was calling nltk.data.find() and importing nltk.corpus.stopwords and nltk.tokenize.word_tokenize at module load time, costing ~2.9s on every startup even before any retrieval happened. These imports are now deferred to KeywordRetriever.__init__(), so they are paid once when the agent is constructed rather than when the module is first imported. The loaded references are stored as instance attributes so query calls pay no additional import cost. Second, major_requirements.py and course_schedule.py both imported use_phoenix from chatdku.setup at module level solely for use in their if __name__ == "__main__" smoke-test blocks. This pulled in llama_index.core and llama_index.embeddings at import time unnecessarily. The import was moved inside the __main__ guard where it belongs. Changes chatdku/core/agent.py — added os.environ.setdefault("LITELLM_LOCAL_MODEL_COST_MAP", "True") immediately before import dspy with a comment explaining why order matters. chatdku/core/tools/retriever/keyword_retriever.py — removed top-level import nltk, from nltk.corpus import stopwords, and from nltk.tokenize import word_tokenize; moved NLTK resource checks and corpus imports into KeywordRetriever.__init__(), storing stopwords and word_tokenize as instance attributes for zero-cost reuse in query(). chatdku/core/tools/major_requirements.py and chatdku/core/tools/course_schedule.py — removed from chatdku.setup import use_phoenix from module scope; added it inside the if __name__ == "__main__" block where it is actually needed. utils/startup_timer.py — added as a diagnostic utility that times each import and initialization step individually so future regressions can be caught and attributed precisely. --- chatdku/core/agent.py | 5 + chatdku/core/tools/course_schedule.py | 3 +- chatdku/core/tools/major_requirements.py | 59 ++-- .../core/tools/retriever/keyword_retriever.py | 28 +- chatdku/ingestion/major_ingest.py | 15 +- tests/conftest.py | 147 +++++++++ tests/test_course_schedule.py | 147 +++++++++ tests/test_course_schedule_ret.py | 9 +- tests/test_llama_index_tools.py | 290 ++++++++++++++++++ tests/test_major_requirements.py | 178 +++++++++++ tests/test_prerequisites.py | 85 +++++ utils/startup_timer.py | 64 ++++ 12 files changed, 989 insertions(+), 41 deletions(-) create mode 100644 tests/conftest.py create mode 100644 tests/test_course_schedule.py create mode 100644 tests/test_llama_index_tools.py create mode 100644 tests/test_major_requirements.py create mode 100644 tests/test_prerequisites.py create mode 100644 utils/startup_timer.py diff --git a/chatdku/core/agent.py b/chatdku/core/agent.py index 770c7ad2..9c50b222 100755 --- a/chatdku/core/agent.py +++ b/chatdku/core/agent.py @@ -1,8 +1,13 @@ #!/usr/bin/env python3 import argparse +import os import sys import traceback +# Must be set before `import dspy` — prevents litellm from fetching the remote +# model pricing database at startup (cuts ~40s off cold-start time). +os.environ.setdefault("LITELLM_LOCAL_MODEL_COST_MAP", "True") + import dspy from openinference.semconv.trace import OpenInferenceSpanKindValues, SpanAttributes from opentelemetry.trace import Status, StatusCode, use_span diff --git a/chatdku/core/tools/course_schedule.py b/chatdku/core/tools/course_schedule.py index b4566d62..6f8d223c 100644 --- a/chatdku/core/tools/course_schedule.py +++ b/chatdku/core/tools/course_schedule.py @@ -17,7 +17,6 @@ ) from opentelemetry.trace import Status, StatusCode -from chatdku.setup import use_phoenix from chatdku.core.utils import span_ctx_start @@ -156,6 +155,8 @@ def CourseScheduleLookup(course_names: list[str]) -> str: # CLI smoke-test # --------------------------------------------------------------------------- if __name__ == "__main__": + from chatdku.setup import use_phoenix + use_phoenix() import argparse diff --git a/chatdku/core/tools/major_requirements.py b/chatdku/core/tools/major_requirements.py index a08eab16..6ef7db88 100644 --- a/chatdku/core/tools/major_requirements.py +++ b/chatdku/core/tools/major_requirements.py @@ -31,6 +31,7 @@ SpanAttributes, ) from opentelemetry.trace import Status, StatusCode +from thefuzz import fuzz, process from chatdku.core.utils import span_ctx_start @@ -42,42 +43,44 @@ # --------------------------------------------------------------------------- -def _tokenize(s: str) -> set[str]: - """Lowercase, drop punctuation/separators, return word-token set.""" - s = s.lower() - s = re.sub(r"[/\\&,\-]", " ", s) - s = re.sub(r"[^a-z0-9 ]", "", s) - return set(s.split()) +def _build_stem_dict(stems: list[str]) -> dict[str, str]: + """Build a dictionary of stems to their normalized versions. + For example: {"data-science": "data science"} + """ + + def _replace_hyphens(stem: str) -> str: + return [stem.replace("-", " ")] + stem_dict = {} + for stem in stems: + stem_dict[stem] = _replace_hyphens(stem) + return stem_dict -def _jaccard(a: set[str], b: set[str]) -> float: - union = a | b - if not union: - return 0.0 - return len(a & b) / len(union) + +def _clean_query(query: str) -> str: + query = query.lower() + query = re.sub(r"[/\\&,\-]", " ", query) + query = re.sub(r"[^a-z0-9 ]", "", query) + return query def _best_match(query: str, stems: list[str]) -> str | None: """ - Return the filename stem that best matches *query* by Jaccard similarity + Return the filename stem that best matches *query* by Levenshtein distance on word tokens. Returns None when no candidate shares any token with the query. """ - q_tokens = _tokenize(query) - if not q_tokens: - return None - - best_stem: str | None = None - best_score = 0.0 - - for stem in stems: - c_tokens = _tokenize(stem) - score = _jaccard(q_tokens, c_tokens) - if score > best_score: - best_score = score - best_stem = stem + stems_dict = _build_stem_dict(stems) + query = _clean_query(query) + + matches = process.extract( + query, + stems_dict, + scorer=fuzz.token_set_ratio, + limit=1, + ) - return best_stem if best_score > 0.0 else None + return matches[0][2] if matches else None def _list_stems(requirements_dir: Path) -> list[str]: @@ -211,6 +214,10 @@ def MajorRequirementsLookup(major: str) -> str: if __name__ == "__main__": import argparse + from chatdku.setup import use_phoenix + + use_phoenix() + parser = argparse.ArgumentParser(description="Test MajorRequirementsLookup") parser.add_argument( "--dir", diff --git a/chatdku/core/tools/retriever/keyword_retriever.py b/chatdku/core/tools/retriever/keyword_retriever.py index f24a3c5e..7f34becd 100644 --- a/chatdku/core/tools/retriever/keyword_retriever.py +++ b/chatdku/core/tools/retriever/keyword_retriever.py @@ -4,9 +4,6 @@ import sys from itertools import combinations -import nltk -from nltk.corpus import stopwords -from nltk.tokenize import word_tokenize from redis import Redis from redis.commands.search.query import Query from redisvl.schema import IndexSchema @@ -17,6 +14,8 @@ def _ensure_nltk_resource(resource_path: str, download_name: str) -> None: + import nltk + try: nltk.data.find(resource_path) except LookupError: @@ -34,8 +33,16 @@ def _ensure_nltk_resource(resource_path: str, download_name: str) -> None: ) -_ensure_nltk_resource("corpora/stopwords", "stopwords") -_ensure_nltk_resource("tokenizers/punkt_tab", "punkt_tab") +_nltk_ready = False + + +def _ensure_nltk_resources() -> None: + global _nltk_ready + if _nltk_ready: + return + _ensure_nltk_resource("corpora/stopwords", "stopwords") + _ensure_nltk_resource("tokenizers/punkt_tab", "punkt_tab") + _nltk_ready = True class KeywordRetriever(BaseDocRetriever): @@ -52,12 +59,23 @@ def __init__( search_mode, files, ) + # Load NLTK resources once at construction time so the first query + # doesn't pay the cost. Subsequent calls are O(1) via sys.modules. + _ensure_nltk_resources() + from nltk.corpus import stopwords as _sw + from nltk.tokenize import word_tokenize as _wt + + self._stopwords = _sw + self._word_tokenize = _wt def query(self, query: str | list[str]) -> list[NodeWithScore]: """ Retrieve texts from the database that contain the same keywords in the query. """ + stopwords = self._stopwords + word_tokenize = self._word_tokenize + client = Redis( host=config.redis_host, port=config.redis_port, diff --git a/chatdku/ingestion/major_ingest.py b/chatdku/ingestion/major_ingest.py index 1c99d1d9..6de6ae49 100644 --- a/chatdku/ingestion/major_ingest.py +++ b/chatdku/ingestion/major_ingest.py @@ -98,10 +98,13 @@ def extract_majors( ) def make_major_pattern(major: str) -> re.Pattern: - return re.compile( - rf"{re.escape(major)}", - re.IGNORECASE, - ) + pattern = re.compile(rf"{re.escape(major)}", re.IGNORECASE) + # NOTE: Because of DKU's inconsistent formatting + # We have to create an exception for Data Science + if major == "Data Science": + pattern = re.compile(r"Data Science\s+Divisional") + + return pattern for page_num in range(page_start - 1, len(doc)): page = doc[page_num] @@ -135,9 +138,9 @@ def make_major_pattern(major: str) -> re.Pattern: def sanitize_filename(name: str) -> str: """Convert a major name to a safe filename.""" # Remove or replace unsafe characters - safe = re.sub(r"[^\w\s-]", "", name) + safe = re.sub(r"[^\w\s-]", "-", name) safe = re.sub(r"[-\s]+", "-", safe) - return safe.strip("-").lower() + return safe.strip().lower() def save_major_content(major_name: str, content: Dict, output_dir: Path): diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 00000000..ced3b457 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,147 @@ +"""Shared fixtures for ChatDKU tool tests.""" + +from contextlib import contextmanager +from unittest.mock import MagicMock + +import pandas as pd +import pytest + + +@pytest.fixture() +def mock_span_ctx(monkeypatch): + """Mock span_ctx_start so no real tracer/Phoenix is needed. + + Patches at every import site since each tool module binds the name at import time. + Returns the mock span for assertions on set_attributes / set_status. + """ + mock_span = MagicMock() + + @contextmanager + def fake_span_ctx_start(name, kind, parent_context=None): + yield mock_span + + targets = [ + "chatdku.core.utils.span_ctx_start", + "chatdku.core.tools.course_schedule.span_ctx_start", + "chatdku.core.tools.get_prerequisites.span_ctx_start", + "chatdku.core.tools.major_requirements.span_ctx_start", + "chatdku.core.tools.syllabi_tool.query_curriculum_db.span_ctx_start", + "chatdku.core.tools.retriever.base_retriever.span_ctx_start", + ] + for target in targets: + try: + monkeypatch.setattr(target, fake_span_ctx_start) + except (AttributeError, ImportError): + pass # module not yet imported — safe to skip + + return mock_span + + +@pytest.fixture() +def mock_get_current_span(monkeypatch): + """Mock get_current_span for llama_index_tools which uses it directly.""" + mock_span = MagicMock() + monkeypatch.setattr( + "chatdku.core.tools.llama_index_tools.get_current_span", lambda: mock_span + ) + return mock_span + + +@pytest.fixture() +def sample_classdata_csv(tmp_path): + """Create a temporary class schedule CSV with representative data.""" + csv_path = tmp_path / "classdata.csv" + df = pd.DataFrame( + { + "Subject": ["COMPSCI", "COMPSCI", "MATH", "BIOL", "CHINESE"], + "Catalog": ["101", "201", "201", "305", "101A"], + "Section": ["01", "01", "01", "01", "01"], + "Component": ["LEC", "LEC", "LEC", "LAB", "LEC"], + "Instructor": [ + "Alice Smith", + "Bob Jones", + "Carol Lee", + "Dave Kim", + "Eve Wu", + ], + "Days": ["MWF", "TTh", "MWF", "TTh", "MWF"], + "Start Time": ["09:00", "10:30", "11:00", "14:00", "13:00"], + "End Time": ["09:50", "11:45", "11:50", "15:15", "13:50"], + "Enrollment": [30, 25, 40, 15, 20], + } + ) + df.to_csv(csv_path, index=False) + return str(csv_path) + + +@pytest.fixture() +def sample_prereq_csv(tmp_path): + """Create a temporary prerequisites CSV with UTF-16LE encoding. + + Column layout matches positional access in get_prereq: + col 0: ID + col 1: Effective Date (MM/DD/YYYY) + col 2: Subject + col 3: Catalog + cols 4-12: padding + col 13: Description (prerequisite text) + """ + csv_path = tmp_path / "prereq.csv" + rows = [ + # COMPSCI 201 with prereqs, two rows with different dates + [ + 1, + "01/15/2023", + "COMPSCI", + "201", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Prereq: COMPSCI 101", + ], + [ + 2, + "09/01/2024", + "COMPSCI", + "201", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Prereq: COMPSCI 101 or COMPSCI 102", + ], + # MATH 201 with prereqs + [ + 3, + "03/10/2024", + "MATH", + "201", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Prereq: MATH 101", + ], + # BIOL 305 with empty description + [4, "06/01/2024", "BIOL", "305", "", "", "", "", "", "", "", "", "", ""], + ] + columns = [f"col{i}" for i in range(14)] + df = pd.DataFrame(rows, columns=columns) + df.to_csv(csv_path, index=False, encoding="utf-16le") + return str(csv_path) diff --git a/tests/test_course_schedule.py b/tests/test_course_schedule.py new file mode 100644 index 00000000..3ced34ee --- /dev/null +++ b/tests/test_course_schedule.py @@ -0,0 +1,147 @@ +"""Comprehensive tests for chatdku.core.tools.course_schedule.""" + +import json + +import pandas as pd +import pytest +from opentelemetry.trace import StatusCode + +from chatdku.core.tools.course_schedule import ( + CourseScheduleLookupOuter, + _lookup, + _parse_course, +) + + +# --------------------------------------------------------------------------- +# _parse_course (pure function — no mocks needed) +# --------------------------------------------------------------------------- + + +class TestParseCourse: + def test_with_space(self): + assert _parse_course("COMPSCI 101") == ("COMPSCI", "101") + + def test_no_separator(self): + assert _parse_course("COMPSCI101") == ("COMPSCI", "101") + + def test_with_hyphen(self): + assert _parse_course("COMPSCI-101") == ("COMPSCI", "101") + + def test_alpha_suffix(self): + assert _parse_course("Chinese 101A") == ("CHINESE", "101A") + + def test_strips_whitespace(self): + assert _parse_course(" COMPSCI 101 ") == ("COMPSCI", "101") + + def test_lowercase_normalised_to_upper(self): + assert _parse_course("math 201") == ("MATH", "201") + + def test_empty_string_raises(self): + with pytest.raises(ValueError): + _parse_course("") + + def test_only_symbols_raises(self): + with pytest.raises(ValueError): + _parse_course("!!!") + + def test_only_numbers_raises(self): + with pytest.raises(ValueError): + _parse_course("12345") + + +# --------------------------------------------------------------------------- +# _lookup (needs a DataFrame, no external mocks) +# --------------------------------------------------------------------------- + + +@pytest.fixture() +def schedule_df(): + return pd.DataFrame( + { + "Subject": ["COMPSCI", "COMPSCI", "MATH", "BIOL"], + "Catalog": ["101", "201", "201", "305"], + "Section": ["01", "02", "01", "01"], + "Instructor": ["Alice", "Bob", "Carol", "Dave"], + } + ) + + +class TestLookup: + def test_finds_matching_rows(self, schedule_df): + rows = _lookup("COMPSCI 101", schedule_df) + assert len(rows) == 1 + assert rows[0]["Subject"] == "COMPSCI" + assert rows[0]["Catalog"] == "101" + + def test_returns_empty_for_nonexistent(self, schedule_df): + assert _lookup("ASTROLOGY 1239", schedule_df) == [] + + def test_case_insensitive(self, schedule_df): + rows = _lookup("compsci 201", schedule_df) + assert len(rows) == 1 + + def test_multiple_sections(self, schedule_df): + # Add a second section for COMPSCI 101 + extra = pd.DataFrame( + { + "Subject": ["COMPSCI"], + "Catalog": ["101"], + "Section": ["02"], + "Instructor": ["Eve"], + } + ) + df = pd.concat([schedule_df, extra], ignore_index=True) + rows = _lookup("COMPSCI 101", df) + assert len(rows) == 2 + + +# --------------------------------------------------------------------------- +# CourseScheduleLookupOuter (needs mock_span_ctx + CSV fixture) +# --------------------------------------------------------------------------- + + +class TestCourseScheduleLookupOuter: + def test_returns_callable(self, mock_span_ctx, sample_classdata_csv): + fn = CourseScheduleLookupOuter(sample_classdata_csv) + assert callable(fn) + + def test_single_course_found(self, mock_span_ctx, sample_classdata_csv): + fn = CourseScheduleLookupOuter(sample_classdata_csv) + result = json.loads(fn(["COMPSCI 101"])) + assert "COMPSCI 101" in result + assert isinstance(result["COMPSCI 101"], list) + assert result["COMPSCI 101"][0]["Instructor"] == "Alice Smith" + + def test_multiple_courses(self, mock_span_ctx, sample_classdata_csv): + fn = CourseScheduleLookupOuter(sample_classdata_csv) + result = json.loads(fn(["COMPSCI 101", "MATH 201"])) + assert "COMPSCI 101" in result + assert "MATH 201" in result + + def test_course_not_found_message(self, mock_span_ctx, sample_classdata_csv): + fn = CourseScheduleLookupOuter(sample_classdata_csv) + result = json.loads(fn(["FAKE 999"])) + assert "No schedule found" in result["FAKE 999"] + + def test_mixed_found_and_not_found(self, mock_span_ctx, sample_classdata_csv): + fn = CourseScheduleLookupOuter(sample_classdata_csv) + result = json.loads(fn(["COMPSCI 101", "FAKE 999"])) + assert isinstance(result["COMPSCI 101"], list) + assert "No schedule found" in result["FAKE 999"] + + def test_file_not_found_raises(self, mock_span_ctx): + fn = CourseScheduleLookupOuter("/nonexistent/path.csv") + with pytest.raises(FileNotFoundError): + fn(["COMPSCI 101"]) + + def test_span_status_ok_on_success(self, mock_span_ctx, sample_classdata_csv): + fn = CourseScheduleLookupOuter(sample_classdata_csv) + fn(["COMPSCI 101"]) + calls = mock_span_ctx.set_status.call_args_list + assert any(c.args[0].status_code == StatusCode.OK for c in calls if c.args) + + def test_span_attributes_set(self, mock_span_ctx, sample_classdata_csv): + fn = CourseScheduleLookupOuter(sample_classdata_csv) + fn(["COMPSCI 101"]) + assert mock_span_ctx.set_attributes.called diff --git a/tests/test_course_schedule_ret.py b/tests/test_course_schedule_ret.py index d37b8459..b50d97f1 100644 --- a/tests/test_course_schedule_ret.py +++ b/tests/test_course_schedule_ret.py @@ -4,9 +4,6 @@ _parse_course, ) -CSV_PATH = "/tmp/cleaned_classdata.csv" -df = pd.read_csv(CSV_PATH) - def test_parse_course(): assert _parse_course("COMPSCI 101") == ("COMPSCI", "101") @@ -17,4 +14,10 @@ def test_parse_course(): def test_lookup(): + df = pd.DataFrame( + { + "Subject": ["COMPSCI", "MATH"], + "Catalog": ["101", "201"], + } + ) assert _lookup("ASTROLOGY 1239", df) == [] diff --git a/tests/test_llama_index_tools.py b/tests/test_llama_index_tools.py new file mode 100644 index 00000000..167e03d5 --- /dev/null +++ b/tests/test_llama_index_tools.py @@ -0,0 +1,290 @@ +"""Tests for chatdku.core.tools.llama_index_tools (VectorRetrieverOuter, KeywordRetrieverOuter).""" + +from contextlib import contextmanager +from unittest.mock import MagicMock, patch + +import pytest + +from chatdku.core.tools.retriever.base_retriever import NodeWithScore +from chatdku.core.tools.utils import QueryTimeoutError + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +SAMPLE_NODES = [ + NodeWithScore(node_id="1", text="doc one", metadata={"src": "a"}, score=0.9), + NodeWithScore(node_id="2", text="doc two", metadata={"src": "b"}, score=0.8), +] + + +@contextmanager +def fake_timeout(seconds=5): + """Drop-in replacement for the real timeout context manager.""" + + class FakeCtx: + def run(self, func, *args, **kwargs): + return func(*args, **kwargs) + + yield FakeCtx() + + +@contextmanager +def fake_timeout_that_expires(seconds=5): + """Simulates a timeout by raising QueryTimeoutError on .run().""" + + class FakeCtx: + def run(self, func, *args, **kwargs): + raise QueryTimeoutError(f"Query exceeded {seconds} second timeout") + + yield FakeCtx() + + +# --------------------------------------------------------------------------- +# Fixtures +# --------------------------------------------------------------------------- + + +@pytest.fixture() +def _patch_vector_retriever(monkeypatch): + """Patch VectorRetriever class so no ChromaDB connection is needed.""" + mock_instance = MagicMock() + mock_instance.query_with_tell.return_value = SAMPLE_NODES + mock_cls = MagicMock(return_value=mock_instance) + monkeypatch.setattr( + "chatdku.core.tools.llama_index_tools.VectorRetriever", mock_cls + ) + return mock_instance + + +@pytest.fixture() +def _patch_keyword_retriever(monkeypatch): + """Patch KeywordRetriever class so no Redis connection is needed.""" + mock_instance = MagicMock() + mock_instance.query_with_tell.return_value = SAMPLE_NODES + mock_cls = MagicMock(return_value=mock_instance) + monkeypatch.setattr( + "chatdku.core.tools.llama_index_tools.KeywordRetriever", mock_cls + ) + return mock_instance + + +@pytest.fixture() +def _patch_rerank(monkeypatch): + """Patch the rerank function.""" + mock_rerank = MagicMock(return_value=SAMPLE_NODES[:1]) + monkeypatch.setattr("chatdku.core.tools.llama_index_tools.rerank", mock_rerank) + return mock_rerank + + +@pytest.fixture() +def _patch_timeout(monkeypatch): + """Replace the real timeout with a synchronous fake.""" + monkeypatch.setattr("chatdku.core.tools.llama_index_tools.timeout", fake_timeout) + + +@pytest.fixture() +def _patch_timeout_expires(monkeypatch): + """Replace the real timeout with one that always times out.""" + monkeypatch.setattr( + "chatdku.core.tools.llama_index_tools.timeout", fake_timeout_that_expires + ) + + +# --------------------------------------------------------------------------- +# VectorRetrieverOuter +# --------------------------------------------------------------------------- + + +class TestVectorRetrieverOuter: + @pytest.fixture(autouse=True) + def _setup( + self, + mock_get_current_span, + _patch_vector_retriever, + _patch_rerank, + _patch_timeout, + ): + self.mock_retriever = _patch_vector_retriever + self.mock_rerank = _patch_rerank + + def _make(self, **kwargs): + from chatdku.core.tools.llama_index_tools import VectorRetrieverOuter + + defaults = dict( + retriever_top_k=10, + use_reranker=False, + reranker_top_n=5, + user_id="Chat_DKU", + search_mode=0, + files=[], + ) + defaults.update(kwargs) + return VectorRetrieverOuter(**defaults) + + def test_returns_callable(self): + assert callable(self._make()) + + def test_query_returns_string(self): + fn = self._make() + result = fn("what is DKU?") + assert isinstance(result, str) + + def test_query_calls_retriever(self): + fn = self._make() + fn("what is DKU?") + self.mock_retriever.query_with_tell.assert_called_once() + + def test_with_reranker_calls_rerank(self): + fn = self._make(use_reranker=True) + fn("what is DKU?") + self.mock_rerank.assert_called_once() + + def test_without_reranker_skips_rerank(self): + fn = self._make(use_reranker=False) + fn("what is DKU?") + self.mock_rerank.assert_not_called() + + def test_invalid_search_mode_defaults_to_zero(self): + # Should not raise; logs a warning and defaults to 0 + fn = self._make(search_mode=5) + result = fn("test") + assert isinstance(result, str) + + def test_search_mode_nonzero_without_files_defaults(self): + # search_mode=1 but files=[] → should default to 0 + fn = self._make(search_mode=1, files=[]) + result = fn("test") + assert isinstance(result, str) + + def test_value_error_propagates(self): + self.mock_retriever.query_with_tell.side_effect = ValueError("bad input") + fn = self._make() + with pytest.raises(ValueError, match="bad input"): + fn("test") + + def test_retrieval_failure_raises_exception(self): + self.mock_retriever.query_with_tell.side_effect = RuntimeError( + "connection lost" + ) + fn = self._make() + with pytest.raises(Exception, match="Vector retrieval failed"): + fn("test") + + +class TestVectorRetrieverOuterTimeout: + def test_timeout_raises_exception( + self, + mock_get_current_span, + _patch_vector_retriever, + _patch_rerank, + _patch_timeout_expires, + ): + from chatdku.core.tools.llama_index_tools import VectorRetrieverOuter + + fn = VectorRetrieverOuter( + retriever_top_k=10, + use_reranker=False, + reranker_top_n=5, + user_id="Chat_DKU", + search_mode=0, + files=[], + ) + with pytest.raises(Exception, match="timed out"): + fn("test") + + +# --------------------------------------------------------------------------- +# KeywordRetrieverOuter +# --------------------------------------------------------------------------- + + +class TestKeywordRetrieverOuter: + @pytest.fixture(autouse=True) + def _setup( + self, + mock_get_current_span, + _patch_keyword_retriever, + _patch_rerank, + _patch_timeout, + ): + self.mock_retriever = _patch_keyword_retriever + self.mock_rerank = _patch_rerank + + def _make(self, **kwargs): + from chatdku.core.tools.llama_index_tools import KeywordRetrieverOuter + + defaults = dict( + retriever_top_k=10, + use_reranker=False, + reranker_top_n=5, + user_id="Chat_DKU", + search_mode=0, + files=[], + ) + defaults.update(kwargs) + return KeywordRetrieverOuter(**defaults) + + def test_returns_callable(self): + assert callable(self._make()) + + def test_query_string_returns_string(self): + fn = self._make() + result = fn("DKU courses") + assert isinstance(result, str) + + def test_query_list_converts_to_strings(self): + fn = self._make() + result = fn(["term1", 42, "term3"]) + assert isinstance(result, str) + # The function stringifies list items in-place + self.mock_retriever.query_with_tell.assert_called_once() + + def test_query_calls_retriever(self): + fn = self._make() + fn("test query") + self.mock_retriever.query_with_tell.assert_called_once() + + def test_with_reranker_calls_rerank(self): + fn = self._make(use_reranker=True) + fn("test") + self.mock_rerank.assert_called_once() + + def test_without_reranker_skips_rerank(self): + fn = self._make(use_reranker=False) + fn("test") + self.mock_rerank.assert_not_called() + + def test_invalid_search_mode_defaults_to_zero(self): + fn = self._make(search_mode=5) + result = fn("test") + assert isinstance(result, str) + + def test_retrieval_failure_raises_exception(self): + self.mock_retriever.query_with_tell.side_effect = RuntimeError("redis down") + fn = self._make() + with pytest.raises(Exception, match="Keyword retrieval failed"): + fn("test") + + +class TestKeywordRetrieverOuterTimeout: + def test_timeout_raises_exception( + self, + mock_get_current_span, + _patch_keyword_retriever, + _patch_rerank, + _patch_timeout_expires, + ): + from chatdku.core.tools.llama_index_tools import KeywordRetrieverOuter + + fn = KeywordRetrieverOuter( + retriever_top_k=10, + use_reranker=False, + reranker_top_n=5, + user_id="Chat_DKU", + search_mode=0, + files=[], + ) + with pytest.raises(Exception, match="Keyword retriever timeout"): + fn("test") diff --git a/tests/test_major_requirements.py b/tests/test_major_requirements.py new file mode 100644 index 00000000..19548536 --- /dev/null +++ b/tests/test_major_requirements.py @@ -0,0 +1,178 @@ +"""Tests for chatdku.core.tools.major_requirements.""" + +import pytest +from opentelemetry.trace import StatusCode + +from chatdku.core.tools.major_requirements import ( + MajorRequirementsLookupOuter, + _best_match, + _jaccard, + _list_stems, + _tokenize, +) + + +# --------------------------------------------------------------------------- +# _tokenize (pure) +# --------------------------------------------------------------------------- + + +class TestTokenize: + def test_lowercases(self): + assert _tokenize("Data Science") == {"data", "science"} + + def test_strips_separators(self): + result = _tokenize("data-science/track") + assert "data" in result + assert "science" in result + assert "track" in result + + def test_removes_punctuation(self): + result = _tokenize("hello! world?") + assert result == {"hello", "world"} + + def test_empty_string(self): + assert _tokenize("") == set() + + +# --------------------------------------------------------------------------- +# _jaccard (pure) +# --------------------------------------------------------------------------- + + +class TestJaccard: + def test_identical_sets(self): + assert _jaccard({"a", "b"}, {"a", "b"}) == 1.0 + + def test_disjoint_sets(self): + assert _jaccard({"a"}, {"b"}) == 0.0 + + def test_partial_overlap(self): + # intersection={b,c}, union={a,b,c,d} → 2/4 = 0.5 + assert _jaccard({"a", "b", "c"}, {"b", "c", "d"}) == 0.5 + + def test_empty_sets(self): + assert _jaccard(set(), set()) == 0.0 + + +# --------------------------------------------------------------------------- +# _best_match (pure) +# --------------------------------------------------------------------------- + + +class TestBestMatch: + STEMS = [ + "data-science", + "computation-and-design-computer-science", + "behavioral-science-psychology", + "requirements-for-all-majors", + ] + + def test_exact_match(self): + assert _best_match("data science", self.STEMS) == "data-science" + + def test_partial_match(self): + result = _best_match("computer science", self.STEMS) + assert result == "computation-and-design-computer-science" + + def test_no_match_returns_none(self): + assert _best_match("astrology", self.STEMS) is None + + def test_empty_query_returns_none(self): + assert _best_match("", self.STEMS) is None + + def test_requirements_for_all(self): + result = _best_match("requirements for all majors", self.STEMS) + assert result == "requirements-for-all-majors" + + +# --------------------------------------------------------------------------- +# _list_stems +# --------------------------------------------------------------------------- + + +class TestListStems: + def test_returns_sorted_stems(self, tmp_path): + (tmp_path / "b-major.md").write_text("B") + (tmp_path / "a-major.md").write_text("A") + stems = _list_stems(tmp_path) + assert stems == ["a-major", "b-major"] + + def test_ignores_non_md_files(self, tmp_path): + (tmp_path / "readme.txt").write_text("text") + (tmp_path / "data.md").write_text("data") + stems = _list_stems(tmp_path) + assert stems == ["data"] + + def test_empty_dir(self, tmp_path): + assert _list_stems(tmp_path) == [] + + +# --------------------------------------------------------------------------- +# MajorRequirementsLookupOuter (needs mock_span_ctx + tmp dir with .md files) +# --------------------------------------------------------------------------- + + +@pytest.fixture() +def requirements_dir(tmp_path): + """Create a temporary requirements directory with sample .md files.""" + (tmp_path / "data-science.md").write_text( + "# Data Science\n\n- COMPSCI 101\n- STATS 202\n" + ) + (tmp_path / "computation-and-design-computer-science.md").write_text( + "# Computation and Design / Computer Science\n\n- COMPSCI 201\n" + ) + (tmp_path / "requirements-for-all-majors.md").write_text( + "# General Requirements\n\n- WRIT 101\n- MATH 101\n" + ) + return str(tmp_path) + + +class TestMajorRequirementsLookupOuter: + def test_returns_callable(self, mock_span_ctx, requirements_dir): + fn = MajorRequirementsLookupOuter(requirements_dir) + assert callable(fn) + + def test_list_returns_all_majors(self, mock_span_ctx, requirements_dir): + fn = MajorRequirementsLookupOuter(requirements_dir) + result = fn("list") + assert "data-science" in result + assert "computation-and-design-computer-science" in result + assert "requirements-for-all-majors" in result + + def test_lookup_returns_file_content(self, mock_span_ctx, requirements_dir): + fn = MajorRequirementsLookupOuter(requirements_dir) + result = fn("data science") + assert "COMPSCI 101" in result + assert "STATS 202" in result + + def test_lookup_prepends_requirements_header(self, mock_span_ctx, requirements_dir): + fn = MajorRequirementsLookupOuter(requirements_dir) + result = fn("data science") + assert result.startswith("# Requirements:") + + def test_no_match_returns_message(self, mock_span_ctx, requirements_dir): + fn = MajorRequirementsLookupOuter(requirements_dir) + result = fn("astrology") + assert "No matching major" in result + + def test_nonexistent_directory_raises(self, mock_span_ctx): + fn = MajorRequirementsLookupOuter("/nonexistent/path") + with pytest.raises(FileNotFoundError): + fn("data science") + + def test_empty_directory_raises(self, mock_span_ctx, tmp_path): + fn = MajorRequirementsLookupOuter(str(tmp_path)) + with pytest.raises(FileNotFoundError): + fn("data science") + + def test_span_status_ok_on_success(self, mock_span_ctx, requirements_dir): + fn = MajorRequirementsLookupOuter(requirements_dir) + fn("data science") + calls = mock_span_ctx.set_status.call_args_list + assert any(c.args[0].status_code == StatusCode.OK for c in calls if c.args) + + def test_span_attributes_set(self, mock_span_ctx, requirements_dir): + fn = MajorRequirementsLookupOuter(requirements_dir) + fn("data science") + assert mock_span_ctx.set_attributes.called diff --git a/tests/test_prerequisites.py b/tests/test_prerequisites.py new file mode 100644 index 00000000..71afdfe4 --- /dev/null +++ b/tests/test_prerequisites.py @@ -0,0 +1,85 @@ +"""Tests for chatdku.core.tools.get_prerequisites.""" + +import pytest +from opentelemetry.trace import StatusCode + +from chatdku.core.tools.get_prerequisites import PrerequisiteLookupOuter, get_prereq + + +# --------------------------------------------------------------------------- +# get_prereq (internal helper) +# --------------------------------------------------------------------------- + + +class TestGetPrereq: + def test_returns_prerequisite_description(self, sample_prereq_csv): + result = get_prereq("COMPSCI 201", sample_prereq_csv) + assert "(Source: DKUHub)" in result + assert "COMPSCI" in result + + def test_uses_latest_effective_date(self, sample_prereq_csv): + """Two rows for COMPSCI 201 — should pick the 09/01/2024 entry.""" + result = get_prereq("COMPSCI 201", sample_prereq_csv) + assert "COMPSCI 102" in result # only in the newer row + + def test_returns_not_found_for_unknown_course(self, sample_prereq_csv): + result = get_prereq("ASTRO 999", sample_prereq_csv) + assert "No prerequisites found" in result + + def test_empty_description_returns_not_found(self, sample_prereq_csv): + """BIOL 305 has an empty description in col 13.""" + result = get_prereq("BIOL 305", sample_prereq_csv) + assert "No prerequisites found" in result + + def test_file_not_found_raises(self): + with pytest.raises(FileNotFoundError): + get_prereq("COMPSCI 201", "/nonexistent/path.csv") + + def test_handles_extra_spaces_in_course_name(self, sample_prereq_csv): + result = get_prereq("COMPSCI 201", sample_prereq_csv) + # Should still parse — splits on underscore after space→underscore replacement + assert "COMPSCI" in result + + def test_known_course_with_prereqs(self, sample_prereq_csv): + result = get_prereq("MATH 201", sample_prereq_csv) + assert "MATH 101" in result + assert "(Source: DKUHub)" in result + + +# --------------------------------------------------------------------------- +# PrerequisiteLookupOuter (needs mock_span_ctx + sample CSV) +# --------------------------------------------------------------------------- + + +class TestPrerequisiteLookupOuter: + def test_returns_callable(self, mock_span_ctx, sample_prereq_csv): + fn = PrerequisiteLookupOuter(sample_prereq_csv) + assert callable(fn) + + def test_single_course_lookup(self, mock_span_ctx, sample_prereq_csv): + fn = PrerequisiteLookupOuter(sample_prereq_csv) + result = fn(["MATH 201"]) + assert "MATH 101" in result + + def test_multiple_courses_joined_by_newline(self, mock_span_ctx, sample_prereq_csv): + fn = PrerequisiteLookupOuter(sample_prereq_csv) + result = fn(["COMPSCI 201", "MATH 201"]) + assert "\n" in result + assert "COMPSCI" in result + assert "MATH" in result + + def test_file_not_found_propagates(self, mock_span_ctx): + fn = PrerequisiteLookupOuter("/nonexistent/path.csv") + with pytest.raises(FileNotFoundError): + fn(["COMPSCI 201"]) + + def test_span_status_ok_on_success(self, mock_span_ctx, sample_prereq_csv): + fn = PrerequisiteLookupOuter(sample_prereq_csv) + fn(["MATH 201"]) + calls = mock_span_ctx.set_status.call_args_list + assert any(c.args[0].status_code == StatusCode.OK for c in calls if c.args) + + def test_span_attributes_set(self, mock_span_ctx, sample_prereq_csv): + fn = PrerequisiteLookupOuter(sample_prereq_csv) + fn(["MATH 201"]) + assert mock_span_ctx.set_attributes.called diff --git a/utils/startup_timer.py b/utils/startup_timer.py new file mode 100644 index 00000000..2e58125c --- /dev/null +++ b/utils/startup_timer.py @@ -0,0 +1,64 @@ +#!/usr/bin/env python3 +"""Startup timing diagnostic — identifies slow initialization steps.""" +import os +import time + +os.environ.setdefault("LITELLM_LOCAL_MODEL_COST_MAP", "True") + +_t0 = time.perf_counter() + + +def lap(label: str, t_prev: float) -> float: + t = time.perf_counter() + print(f" {t - t_prev:6.2f}s {label}") + return t + + +print("=== ChatDKU startup timer ===") +t = _t0 + +# --- imports --- +print("\n[imports]") + +import dspy; t = lap("import dspy", t) # noqa: E402,E401 +from chatdku.config import config; t = lap("import config", t) # noqa: E402,E401 + +from chatdku.core.tools.retriever.keyword_retriever import KeywordRetriever; t = lap("import KeywordRetriever (+ NLTK check)", t) # noqa: E402,E401,E501 +from chatdku.core.tools.retriever.vector_retriever import VectorRetriever; t = lap("import VectorRetriever (+ chromadb)", t) # noqa: E402,E401,E501 +from chatdku.core.tools.major_requirements import MajorRequirementsLookupOuter; t = lap("import MajorRequirementsLookupOuter", t) # noqa: E402,E401,E501 +from chatdku.core.tools.syllabi_tool.query_curriculum_db import QueryCurriculumOuter; t = lap("import QueryCurriculumOuter (+ DB)", t) # noqa: E402,E401,E501 +from chatdku.core.tools.get_prerequisites import PrerequisiteLookupOuter; t = lap("import PrerequisiteLookupOuter", t) # noqa: E402,E401,E501 +from chatdku.core.tools.course_schedule import CourseScheduleLookupOuter; t = lap("import CourseScheduleLookupOuter", t) # noqa: E402,E401,E501 +from chatdku.setup import setup, use_phoenix; t = lap("import setup, use_phoenix", t) # noqa: E402,E401 + +# --- initialization --- +print("\n[initialization]") + +setup(); t = lap("setup() — embed model + tokenizer", t) +use_phoenix(); t = lap("use_phoenix() — OTel register", t) + +lm = dspy.LM( + model="openai/" + config.backup_llm, + api_base=config.backup_llm_url, + api_key=config.llm_api_key, + model_type="chat", + max_tokens=config.output_window, + temperature=config.llm_temperature, +) +dspy.configure(lm=lm) +t = lap("dspy.LM() + configure()", t) + +user_id = "Chat_DKU" +KeywordRetriever(retriever_top_k=10, user_id=user_id, search_mode=0, files=[]) +t = lap("KeywordRetriever() init", t) + +VectorRetriever(retriever_top_k=10, user_id=user_id, search_mode=0, files=[]) +t = lap("VectorRetriever() init", t) + +MajorRequirementsLookupOuter(config.major_requirements_dir) +t = lap("MajorRequirementsLookupOuter() init", t) + +QueryCurriculumOuter() +t = lap("QueryCurriculumOuter() init (DB connect + schema fetch)", t) + +print(f"\n=== total: {t - _t0:.2f}s ===") From f7eee1c6b82154e499260f1b723aa12cbd48a0f7 Mon Sep 17 00:00:00 2001 From: "Anar.N" Date: Thu, 16 Apr 2026 11:43:21 +0800 Subject: [PATCH 05/22] Added a logo to TUI after startup sequence. --- chatdku/core/ascii_logo | 13 +++++++++++++ chatdku/core/tui.py | 33 ++++++++++++++++++++++++++++++--- pyproject.toml | 1 + 3 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 chatdku/core/ascii_logo diff --git a/chatdku/core/ascii_logo b/chatdku/core/ascii_logo new file mode 100644 index 00000000..33dfe203 --- /dev/null +++ b/chatdku/core/ascii_logo @@ -0,0 +1,13 @@ +                              +                              +              **              +            .xxxx             +           -xxxxxx            +          =###*x###.          +         =###+  *###-         +        +###=    *###=        +      ---+x=      +x====      +     ------.      .======     +    --------.    =========.   +   ----------.  ===========.  + .------------.-============. diff --git a/chatdku/core/tui.py b/chatdku/core/tui.py index 27c4ac36..143280e6 100644 --- a/chatdku/core/tui.py +++ b/chatdku/core/tui.py @@ -9,7 +9,11 @@ import asyncio from collections import deque +from pathlib import Path +import pyfiglet +from rich.table import Table +from rich.text import Text from textual.app import App, ComposeResult from textual.binding import Binding from textual.containers import VerticalScroll @@ -17,6 +21,25 @@ from chatdku.core.agent import build_agent +_LOGO_PATH = Path(__file__).parent / "ascii_logo" + + +def _build_splash() -> Table: + """Build the startup splash: ANSI logo beside a figlet 'ChatDKU' title.""" + try: + logo_text = Text.from_ansi(_LOGO_PATH.read_text()) + except OSError: + logo_text = Text("") + + figlet_str = "\n" * 4 + pyfiglet.figlet_format("ChatDKU", font="slant") + title_text = Text(figlet_str, style="bold #4aa7ff") + + grid = Table.grid(padding=(0, 2)) + grid.add_column(no_wrap=True) + grid.add_column(no_wrap=True) + grid.add_row(logo_text, title_text) + return grid + class Message(Static): """A single chat bubble with a rounded, color-coded border.""" @@ -31,8 +54,8 @@ class Message(Static): max-width: 90%; height: auto; } - Message.user { border: round #8fd694; color: #d6f5d6; } - Message.agent { border: round #7ab7ff; color: #d6e6ff; } + Message.user { border: round #7fe684; color: #d6f5d6; } + Message.agent { border: round #4aa7ff; color: #d6e6ff; } Message.system { border: round #5c616d; color: #9aa0ab; } Message.pending { border: round #4a4f5a; color: #7c8290; } """ @@ -57,7 +80,8 @@ def update_content(self, role: str, content: str) -> None: class ChatDKUApp(App): - ENABLE_COMMAND_PALETTE = False + ENABLE_COMMAND_PALETTE = True + COLOR_SYSTEM = "truecolor" CSS = """ Screen { layout: vertical; background: transparent; } @@ -105,6 +129,9 @@ def _boot(self) -> None: self.call_from_thread(self._boot_done) async def _boot_done(self) -> None: + log = self.query_one("#log", VerticalScroll) + await log.mount(Static(_build_splash())) + log.scroll_end(animate=False) await self._post("system", "Ready.") async def _post(self, role: str, content: str) -> Message: diff --git a/pyproject.toml b/pyproject.toml index 533f47ad..bf81bcea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,6 +64,7 @@ dependencies = [ "pytest", "pre-commit", "textual>=0.83.0", + "pyfiglet>=1.0.2", ] [project.optional-dependencies] From 091f9f1c384c49b1bf873711d324619d3a15e34d Mon Sep 17 00:00:00 2001 From: "Anar.N" Date: Thu, 16 Apr 2026 12:00:15 +0800 Subject: [PATCH 06/22] deleted 2-year-old log file nohup.out --- benchmarks/nohup.out | 11355 ----------------------------------------- 1 file changed, 11355 deletions(-) delete mode 100644 benchmarks/nohup.out diff --git a/benchmarks/nohup.out b/benchmarks/nohup.out deleted file mode 100644 index c8415b87..00000000 --- a/benchmarks/nohup.out +++ /dev/null @@ -1,11355 +0,0 @@ -Process SpawnProcess-1: -Process SpawnProcess-2: -Process SpawnProcess-3: -Traceback (most recent call last): -Traceback (most recent call last): - File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap - self.run() - File "/usr/lib/python3.12/multiprocessing/process.py", line 108, in run - self._target(*self._args, **self._kwargs) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/run.py", line 187, in asyncio_worker - app = load_application(config.application_path, config.wsgi_max_body_size) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/utils.py", line 110, in load_application - module = import_module(import_name) - ^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/lib/python3.12/importlib/__init__.py", line 90, in import_module - return _bootstrap._gcd_import(name[level:], package, level) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1324, in _find_and_load_unlocked -ModuleNotFoundError: No module named 'chatdku' - File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap - self.run() - File "/usr/lib/python3.12/multiprocessing/process.py", line 108, in run - self._target(*self._args, **self._kwargs) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/run.py", line 187, in asyncio_worker - app = load_application(config.application_path, config.wsgi_max_body_size) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/utils.py", line 110, in load_application - module = import_module(import_name) - ^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/lib/python3.12/importlib/__init__.py", line 90, in import_module - return _bootstrap._gcd_import(name[level:], package, level) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1324, in _find_and_load_unlocked -ModuleNotFoundError: No module named 'chatdku' -Traceback (most recent call last): - File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap - self.run() - File "/usr/lib/python3.12/multiprocessing/process.py", line 108, in run - self._target(*self._args, **self._kwargs) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/run.py", line 187, in asyncio_worker - app = load_application(config.application_path, config.wsgi_max_body_size) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/utils.py", line 110, in load_application - module = import_module(import_name) - ^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/lib/python3.12/importlib/__init__.py", line 90, in import_module - return _bootstrap._gcd_import(name[level:], package, level) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1324, in _find_and_load_unlocked -ModuleNotFoundError: No module named 'chatdku' -Process SpawnProcess-4: -Traceback (most recent call last): - File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap - self.run() - File "/usr/lib/python3.12/multiprocessing/process.py", line 108, in run - self._target(*self._args, **self._kwargs) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/run.py", line 187, in asyncio_worker - app = load_application(config.application_path, config.wsgi_max_body_size) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/utils.py", line 110, in load_application - module = import_module(import_name) - ^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/lib/python3.12/importlib/__init__.py", line 90, in import_module - return _bootstrap._gcd_import(name[level:], package, level) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1324, in _find_and_load_unlocked -ModuleNotFoundError: No module named 'chatdku' -Process SpawnProcess-1: -Process SpawnProcess-2: -Traceback (most recent call last): -Process SpawnProcess-4: - File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap - self.run() - File "/usr/lib/python3.12/multiprocessing/process.py", line 108, in run - self._target(*self._args, **self._kwargs) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/run.py", line 187, in asyncio_worker - app = load_application(config.application_path, config.wsgi_max_body_size) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/utils.py", line 110, in load_application - module = import_module(import_name) - ^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/lib/python3.12/importlib/__init__.py", line 90, in import_module - return _bootstrap._gcd_import(name[level:], package, level) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1324, in _find_and_load_unlocked -ModuleNotFoundError: No module named 'chatdku' -Traceback (most recent call last): - File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap - self.run() - File "/usr/lib/python3.12/multiprocessing/process.py", line 108, in run - self._target(*self._args, **self._kwargs) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/run.py", line 187, in asyncio_worker - app = load_application(config.application_path, config.wsgi_max_body_size) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/utils.py", line 110, in load_application - module = import_module(import_name) - ^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/lib/python3.12/importlib/__init__.py", line 90, in import_module - return _bootstrap._gcd_import(name[level:], package, level) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked -Traceback (most recent call last): - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1324, in _find_and_load_unlocked -ModuleNotFoundError: No module named 'chatdku' - File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap - self.run() - File "/usr/lib/python3.12/multiprocessing/process.py", line 108, in run - self._target(*self._args, **self._kwargs) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/run.py", line 187, in asyncio_worker - app = load_application(config.application_path, config.wsgi_max_body_size) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/utils.py", line 110, in load_application - module = import_module(import_name) - ^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/lib/python3.12/importlib/__init__.py", line 90, in import_module - return _bootstrap._gcd_import(name[level:], package, level) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1324, in _find_and_load_unlocked -ModuleNotFoundError: No module named 'chatdku' -Process SpawnProcess-3: -Traceback (most recent call last): - File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap - self.run() - File "/usr/lib/python3.12/multiprocessing/process.py", line 108, in run - self._target(*self._args, **self._kwargs) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/run.py", line 187, in asyncio_worker - app = load_application(config.application_path, config.wsgi_max_body_size) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/utils.py", line 110, in load_application - module = import_module(import_name) - ^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/lib/python3.12/importlib/__init__.py", line 90, in import_module - return _bootstrap._gcd_import(name[level:], package, level) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1310, in _find_and_load_unlocked - File "", line 488, in _call_with_frames_removed - File "", line 1387, in _gcd_import - File "", line 1360, in _find_and_load - File "", line 1324, in _find_and_load_unlocked -ModuleNotFoundError: No module named 'chatdku' -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_url" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_path" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_url" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_kwargs" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_path" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_kwargs" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_url" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_path" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_kwargs" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_url" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_path" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -/home/ynyxxx/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_kwargs" in LlamaCPP has conflict with protected namespace "model_". - -You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`. - warnings.warn( -[2024-11-21 13:29:49 +0000] [1108995] [INFO] Running on http://0.0.0.0:11451 (CTRL + C to quit) -[2024-11-21 13:29:49 +0000] [1108996] [INFO] Running on http://0.0.0.0:11451 (CTRL + C to quit) -[2024-11-21 13:29:49 +0000] [1108997] [INFO] Running on http://0.0.0.0:11451 (CTRL + C to quit) -[2024-11-21 13:29:49 +0000] [1108994] [INFO] Running on http://0.0.0.0:11451 (CTRL + C to quit) -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Using embedding model BAAI/bge-m3 -Loaded tokenizer -Using LLM -Result{2199 total, docs: [Document {'id': 'test_doc:67fc48b2-c25a-4575-813d-de2bbd5355aa', 'payload': None, 'score': 782.5877555245248, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2387541', 'document_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', '_node_content': '{"id_": "67fc48b2-c25a-4575-813d-de2bbd5355aa", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf", "file_name": "GH-Annual-Report-2021-EN.pdf", "file_type": "application/pdf", "file_size": 2387541, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3df9877b-9bf6-4ee9-8744-122092596d1a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf", "file_name": "GH-Annual-Report-2021-EN.pdf", "file_type": "application/pdf", "file_size": 2387541, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf"}, "hash": "434f415ec48e4b401fa8e3d6dee17c56a6f82ddaca1fa411dd260f81e66c210a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1ee70487-bb54-4f37-8d94-8a638b3a8ab4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf", "file_name": "GH-Annual-Report-2021-EN.pdf", "file_type": "application/pdf", "file_size": 2387541, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf"}, "hash": "e3a9a3b3394789288716a6046987391ba26656b1d83ce8b54dce1d937390b959", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "68fac30d-e53c-4024-9b31-96dc239c57da", "node_type": "1", "metadata": {}, "hash": "eb0db9931e27170f965d869af47afea127dfb66313ebad23f71f224fa5fd137f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 41129, "end_char_idx": 45752, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', 'vector': '\x08\x0c<\x13\x11*y\x0e9ʻ"ꮼ)Y/<8l=7;F<Nk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d363a1cb-9c5e-4fb1-9d69-efdfe6556773', 'payload': None, 'score': 719.2383613881026, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '508476', 'document_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', '_node_content': '{"id_": "d363a1cb-9c5e-4fb1-9d69-efdfe6556773", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5eed989b-3617-4479-8daf-3dc7f14d35ee", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "hash": "1531961555db840cdc91ded673cff60dc58a823e4db217e00c42ad46672df04f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4fe06d28-ef28-45a2-9613-f1128c83acba", "node_type": "1", "metadata": {}, "hash": "810202455f44738a4605524507fef8bf9fccc039bed143acfb4bcd157886b452", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 4710, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', 'vector': '@BGp\'drp\x04}̼hԻ5\'\'$q=w;WX:B\x7f\x1a;i\x14=0\x1a2fo\x1dY\x04ņڻwts}ݹ6=S\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 337.1156939543695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=F\x13 Z=S0μ)\x1c\x02<,=)ɜ3Hx<5\x1b;\rJջ\x02ԙ;\x13\x14Ϻ=b,\\[3\x01i\r\x18h;z\x0c̼e=K<\x0e\x08<>=+6\x15=\x11\x15ˠ:=K\x19;3Ǽ\x15=\x0c,<.=r<`d=\x7f\x0c=$3<%#=I*xݼzh <@\x17\x13=^ȫ9ܗB3LU\x08=\rJռtѼA\x12%(C9;43Aܼ\ued7b\uf0a4;Pwx\x05E\x07T\x11;\x1f\x07:z\x0c;\x0b.\x1c\x0f5=<:\x05>9\r4;nL(=g<`<#c\x0eHd9\x05<߹\nZ̼UW<\x16\x1d=\x1d<*ؼt<\x07>;c\x04\t=\x00ẺH:~ѻ&F:,%#nL<9\x19=淼X\'Լ,~<)\x1c=\x0bx\x02<3x;\x0ee;<3>\x02=;Ȱ<$<= B<(̼.\x1b\x12j4\x146;,%xSV{!p\x14]\n2>o:u⼙d<(F\x0c=⼗:Ժ\x03Y:`\x18qP\r8.\x10\x06ND/B;\x0c<]<,o<\x13;', 'text': '#### Are there student worker opportunities in the ARC?\n\n \n\n\n\nWe hire DKU undergraduate students who have successfully completed applicable courses to work as Peer Tutors based on demand. More information about Peer Tutors can be found in the\xa0[Peer Tutor Program](https://www.dukekunshan.edu.cn/academics-advising/peer-tutor-program/)\xa0section.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### What is a tutoring session like? Can I get help with my assignment?\n\n \n\n\n\nDuring a learning session, our tutors use the Socratic method asking intentional questions to help students reflect, connect knowledge points and develop effective learning skills to become an independent learner. We can definitely help you with your homework, but not by doing the work for you, rather by guiding you to find the solution on your own. There are no grades involved with attending a tutoring session and peer tutors do not report anything that happens in a session with the instructor.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### When are tutoring sessions offered?\n\n \n\n\n\nWe offer tutoring sessions throughout the week, including evenings and weekends. You can find the detailed schedule of tutoring sessions for the current semester on the A[RC Tutoring Schedule](https://docs.google.com/spreadsheets/d/1DyLkERtLywdCYe1AsfkiuPIdwknkB8IKRW9rYhiCfss/edit#gid=465269066) page. Tutoring takes place primarily in the tutoring space located in Library 1032, the Office of Undergraduate Advising suite.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Do I have to make an appointment for drop-in tutoring?\n\n \n\n\n\nNo, you don’t need to make an appointment for drop-in tutoring. You can visit the [ARC Tutoring Schedule](https://docs.google.com/spreadsheets/d/1gNE05s54BnHkYVxtx17_qgfdS9VBhSRtPi0UUyuOlLE/edit#gid=1635144644) page to view the drop-in tutoring schedule, and go to a scheduled tutoring session. Our tutors will be there to help you.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### How can I make an appointment for 1-on-1 tutoring?\n\n \n\n\n\nTo make an appointment for 1-on-1 tutoring, please fill out the [1-on-1 Appointment survey](https://duke.qualtrics.com/jfe/form/SV_b8Wdsihu1OesAaq)\xa0and submit the request form at least 2 days in advance, because we need time to match you with our tutor who is available during the time you would like to meet.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### What courses does the ARC offer study groups for? Does my course have a study group?\n\n \n\n\n\nThe ARC supports several entry-level courses in the study group format. For a complete list of the courses we offer study groups in the current semester, please check our [Study Group](https://www.dukekunshan.edu.cn/academics-advising/tutoring-service/)\xa0page.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Can I obtain tutoring support for courses I am taking at Duke?\n\n \n\n\n\nStudents should seek tutoring and learning support at the institution they are taking the course.\xa0 For courses at Duke, please visit\xa0[Duke ARC](https://arc.duke.edu/).\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### How often do you hire Peer Tutors?\n\n \n\n\n\nWe have recruitment for Peer Tutors every semester. In certain cases, we may hire a limited number of Peer Tutors during the year based on demand.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### How can I apply for the Peer Tutor job position?\n\n \n\n\n\nLook out for the announcement that the ARC attend the info session. Detailed information about how and when to apply will be shared then.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### How can I find the event/workshop schedule?', 'ref_doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/faqs-for-arc/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:556f2e72-26d4-4a61-a136-e8bebec48261', 'payload': None, 'score': 239.2672447455728, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '97475', 'document_id': '9d8cbb05-7c4f-4b83-9072-f9b96fe311cc', '_node_content': '{"id_": "556f2e72-26d4-4a61-a136-e8bebec48261", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 97475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9d8cbb05-7c4f-4b83-9072-f9b96fe311cc", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 97475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html"}, "hash": "0c2460c9d3e58acad6431377c345c2514d38bd1ca2a58d243eb3c71afc06b337", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a5eeaa22-86fb-4d8b-804a-600cc729dde1", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 97475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html"}, "hash": "d4d2bf8d10a8b97cf7f37ed4d2d960c2d8cc06dfff76d6f010cb67e41a66300c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1c93862c-2048-4d11-a220-4dcc2df4c389", "node_type": "1", "metadata": {}, "hash": "b8f0288d19b1c9462260c51f61459e68e591e949ddcfa36c8fcd64b5f0401d6d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2924, "end_char_idx": 6333, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html', 'vector': 'Y\x190bZ먽\x00ݼkrD;\x1bP=TS\x1c\x1d=\x00ݺL=+\x0c\x0e<;J"\x10=zL\x07=\x1f<#5n\x0f\n<0>o=\x7f<]1\x1f/=\x7fĭ;!<\x15,\x1c\x15i^;\x12\x16;l<\x08>;=E0=-.4<\x7f@w<*<2:\'}>\x02\x17@\x00<\x03>p\x95=x;W;&:$=:\x03=`a;T\x0e@%=f:,\x10MǼ\x1c9\x1a\x1bGG:؝<:wl<\x1d:Z\x02%-\x14=Mǻq<`a@[Ԭ<~;aJD.<\n}>\t\u07fcA;i{g\x0e{*G,<\x17`;:\x7f@=8ܼv\x19=\x06<\x00U/=EQ~\x15i<\x16j\x03\x10r;EQ\x13Z;\x0cM=\x19=xݼ*=o;<\t\x14:<\x1c\x0c;\x11,ՐF(=epݒ;9ꇻa\x0es\x12==p\x1e;#\x1d\x01<\x0c;\x0e;1:\x08\x0e\x07c\x1cL=!#|\x1e5=\x0c\ud7fc1K(9\x00\x193Y\x01<\x0cO7j\x02=Q,㮶<\x0b\x0b<\x06\x1fT<]\x1f:3\x1f^뢗<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&=-K7p=l<,=\x12\x15̃\x05\x1a;\x1f.=;\x05\x18=\x1c\x045<"hU<\x0c\x07\x1cTŔ\x01\t;Qɼ\x08\x17}<\x1d=K1=\x12\rfF\x04-y;GE<[Ƽ6C%;\x18Z.<+<ػ\x00HY\x02<\x19/is\x1d\x0e<9;DR~<n\x01\t\x03\x7f"=y\x10<\x16<1=ջ;@+(7\x11=Fc\x01\x14=:\x15[n*o=b=={=\x1f.ڍFB7\x11%=\\QS\r<5\x008Ł*B=2\x13<\x16=N\x18-\t=a2=\x0e&Gȟp}b;\x0bMX\x18=\x00=馼@\x18U?ʼ<҂\x005y\x02K', 'text': '* [About Us](#)\n\t+ [What We Do](https://academic-advising.dukekunshan.edu.cn/what-we-do/)\n\t+ [Our Team](https://academic-advising.dukekunshan.edu.cn/our-team/)\n\t+ [Faculty Directory](https://faculty.dukekunshan.edu.cn/)\n* [Academic Advising](#)\n\t+ [What is Academic Advising](https://academic-advising.dukekunshan.edu.cn/academic-advising/)\n\t+ [First Year Student? Start Here!](https://academic-advising.dukekunshan.edu.cn/new-students/)\n\t+ [DKU Definitions](https://academic-advising.dukekunshan.edu.cn/dkudefinitions/)\n\t+ [Academic Accommodations](https://academic-advising.dukekunshan.edu.cn/academic-accommodations/)\n\t+ [Academic Integrity](https://ugstudies.dukekunshan.edu.cn/academic-integrity/)\n* [Academic Resource Center](#)\n\t+ [Tutoring](https://academic-advising.dukekunshan.edu.cn/tutoring-service/)\n\t+ [Academic Success Coaching](https://academic-advising.dukekunshan.edu.cn/academic-success-coaching/)\n\t+ [Workshop & Events](https://academic-advising.dukekunshan.edu.cn/events-workshops/)\n\t+ [Peer Tutor Program](https://academic-advising.dukekunshan.edu.cn/peer-tutor-program/)\n\t+ [Peer Mentor Program](https://academic-advising.dukekunshan.edu.cn/peer-mentors-list/)\n* [Resources](#)\n\t+ [Students Resources](https://academic-advising.dukekunshan.edu.cn/resources-for-students/)\n\t+ [Faculty & Staff Resources](https://academic-advising.dukekunshan.edu.cn/resources-for-faculty-staff/)\n\t+ [Pre-Health Resources](https://duke.app.box.com/folder/48799464636?s=87pre13veghzaho133u8zaozzgr9pv9s)\n\t+ [Pre-Law Resources](https://duke.app.box.com/folder/48799879835)\n\t+ [Interesting Upcoming Classes](https://academic-advising.dukekunshan.edu.cn/interesting-upcoming-classes/)\n* [FAQ](#)\n\t+ [Advising FAQs](https://docs.google.com/document/d/1XKuY2rwXBLEYZtM9LDUGFNHgyhVvEmcURKLTWDwscwM/edit?mode=html#heading=h.uqazz4jigo46)\n\t+ [ARC FAQs](https://academic-advising.dukekunshan.edu.cn/faqs-for-arc/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFrequently Asked Questions about ARC Services\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Table of Contents\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n#### What does the ARC do? What if I am not sure if you can help me?\n\n \n\n\n\nThe Academic Resource Center (ARC) is a learning support center within the Office of Undergraduate Advising. Our mission is to provide undergraduate students at Duke Kunshan University (DKU) with quality academic resources that promote inclusive learning and development. Our specialty is providing tutoring and learning support for gateway, sequence, core, and large lecture courses. Our services include [tutoring support](https://www.dukekunshan.edu.cn/academics-advising/tutoring-service/), [academic success coaching](https://www.dukekunshan.edu.cn/academics-advising/academic-success-coaching/), [workshop and events](https://www.dukekunshan.edu.cn/academics-advising/events-workshops/), and [peer tutor program](https://www.dukekunshan.edu.cn/academics-advising/peer-tutor-program/). You can check the webpage of each service for the detailed information. If you are not sure how we can help you, feel free to write us an email or drop by our office for a chat\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Are there student worker opportunities in the ARC?', 'ref_doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/faqs-for-arc/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:bb523310-82f7-4fd1-bbfd-f33c9032727e', 'payload': None, 'score': 191.1216467726108, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '122152', 'document_id': 'd8330f4c-2363-4d2c-a2b1-881532a038de', '_node_content': '{"id_": "bb523310-82f7-4fd1-bbfd-f33c9032727e", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 122152, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d8330f4c-2363-4d2c-a2b1-881532a038de", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 122152, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html"}, "hash": "1576e35e6fc46d1f86114d924d93dd3d0cd0cdad7cdcc980b37f9493a4705911", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "620b8783-7b87-435f-b462-98fc8cd2f905", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 122152, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html"}, "hash": "60f26167998b9d9e2a1630ed8d0353f31bce52c2db7fb56d4fcfd069308813f8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5b3e63aa-363c-4f5d-8ee5-69dd754a8a7a", "node_type": "1", "metadata": {}, "hash": "232c8044741670219e0c4fc5fcc384fc6e9bbb82822a0f2c7f103609afcc002c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9507, "end_char_idx": 13827, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html', 'vector': 'X\u05fc]\x07Q\x02Cg\x0e\x04a;\'f\t=W\x04=+\x16<\x1f^=\x01Aܼ\\\x17=%ۻ o<<"!-:\x1be#0/<\x8a`,ȼQ?\x1d=S=47N<\x1b*<ڻ;ڻexL;!dM;Ϧ\x11;}:@;Z\x7f<:@9S=N=-%ph2\x1d<м\n=\x06v<:\x10\x1e=0\x04<<;\x01==\x11XQ~$\x1f<;\x14=V;SA:\x1c1=D$`\x1cECŻY|;\x13B\u07fbw\x00=6ؾ<\\<\x1e\x0cQ\'\x14R\nZ<0\x0fżY\x05\x07qw<\x11)\x14;H\x13<7E=t\t\'v@=<_\x7fZ2=_\x7f\x15O2\rs-=MݻX3e:U\x060T;\x1e\x03 \x03=V=ز\n_LV=\x00<\rۼ{;,e|:\rgVg/C|żJ<=x\rF\r7V\n-֞@C\x0fqI<ҠNL\x07=\x7f%:nмAcM6<7Յ\x01Qʧx)ެ\x1b=\':\x11\x1f=Y[k\x06{.v;:%Э;$t\x07\x1c=F*z\x0e\t8\x1d\x18\x19<~><\x1e\n;{\x1dڼ|M0+<=R<-7<\x03=.\x05\r=R\x0e\rR<=\x03\x01߿\x16R=A<\t$P:_=\x15\x16=l\x1dY-<\x01Q)+%=šrٻߦ+G\x08=J\r\x1c;dZ;\x008̡<[\x7fy;X\x1dF\x0cFq\x04\x15\x07;0)\x1b|\x19\x13;V4=\t\x029z<;"; <ސ<6l\x1dKOO.\u05fcT\x06\x0e\u07fc\x01Q\\ؠ<\x16i=\x1eu=\x17FE=၀Msr5<\x08u\x1f=\x04\x01U<\x1b*<Ɏ\x0f=fT\'=<[\x0b\x17ӂƼZgԼq\x0e=";P:=ǺxR?:N3\x01=Ӽ&V@\x03Q:Düt<~ӂƼE\x16=J.i;<(\x00<\x16\x14<< 0<۹<:È;ӱ.;\x00ms\n=~g\x04<;N!s<ĉ|;Y\x16j`\x1e;^<\x111=7\x05M\'<.<,\x10DO<', 'text': 'Professor Kisha N. Daniels (Dr. D) was the instructor of both EDUC 101 Foundations of Education and EDUC 204 Educational Psychology, the two courses I took in the 2020 fall and 2021 spring semesters. She adopted a strategy called flipped classrooms (Nechkina, 1984), which is a type of blended learning (Friesen, 2012) requiring students to complete the readings and learn contents before class, and have discussions instead of listening to lectures during class time. Before each class, students needed to watch Dr. D’s pre-recorded lecture videos and read materials to have an overview of the class content. Then we filled in a note-taking guide to reflect on what we had learned. Finally, we attended the class to have in-class discussions, group activities, etc.\n\n\nAs a math major student, I was used to listening to lectures without speaking a single word for a whole semester. I had even thought about dropping this class after I read the syllabus! However, Dr. D’s class opened a whole new world for me. Since then, in every class, I would excitedly click the “raise my hand” button in Zoom—I could not wait to share my ideas in the heated conversation.\n\n\n**Optional Attendance to Synchronous Classes**\n----------------------------------------------\n\n\n2020 was a year of chaos. Coronavirus and the international travel ban are distributed to students all around the world. It brought many uncertainties to our lives: unreliable internet access, different time zones, infectious outbreaks, etc. The school year taking place at the same time was obviously not easy at all. To ensure class quality, some instructors took mandatory attendance for those who were able to join the synchronous sessions. However, Dr. D was an exception: she made her synchronous classes optional, even though it was discussion- and activity-based. I was wondering why she did not make it mandatory, how she provided a relatively equivalent learning experience for those who couldn’t join lively, and why almost all the students still came to the synchronous classes.\n\n\nDr. D believes having a certain level of flexibility as a professor is always difficult, but educators should still manage to do so since it is not the reality to control everything in education. Students are adult learners and should be treated as individuals. They might have different learning preferences and face different situations. Giving them flexibility can be a form of warm support through hard times. For each assignment, Dr. D prepared two versions (synchronous and asynchronous) with detailed instructions: if you can come to the class, then you can work in a group to do the assignment; if you cannot, then finish these sections of the assignment as equivalency. By doing this, every student was fully supported.\n\n\nAlthough Dr. D’s synchronous class was optional, it achieved a relatively high attendance rate. To tackle the low attendance rate problem, Dr. D invited students to relate their own background knowledge to the course concepts. If some students did not come to class, they may not have a chance to realize how educational psychology relates to their everyday life, and what their peers’ educational experiences are like. Once students agree that class is the place where they can learn more, it will become their motivation to attend class. “Students are adults, even my freshman students. They are starting to figure out who they are in the adult world.” She, therefore, lets the students decide what is the best study strategy for them.\n\n\n\n> This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9aefe5bf-1e1f-4b31-ae11-5874c5393dbd', 'payload': None, 'score': 9.183563949420098, 'document_id': 'index.html', '_node_content': '{"id_": "9aefe5bf-1e1f-4b31-ae11-5874c5393dbd", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/lile.duke.edu/blog/2021/12/flexibility-adult-learners", "filename": "index.html", "filetype": "text/html"}, "hash": "c12bb19afe9091cf6fafa09e70f8b388092e96d62da508203161dace2cb3af57", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a427db5-ac02-4ad5-96b7-8dae766073a9", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "da61cf9bbb421fc985a175359a38bfee69742fb1d22c5e91ab9fc51a580553c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28a6432f-f95e-4e16-97a2-bc96b30e43f2", "node_type": "1", "metadata": {}, "hash": "734cbde4b860d7eb88633b64f3ce5635c61c46f1eee2dd8fb3ea547d481396b2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '@..\x1a!>\x02L)=<¼LR9"-=f2\n\x1f8;I\x13\x06̼\x19E;ǁB=^\\"Ⱥ)=)@缚RV\x1bJ܋g\x1f\x18e\\s=|\x0e<\x12\x19k 0h;o\x06\x08=^`:62<\x0eM\'=<\x0b\x1b_=59?/\x05\x1f[=I\x04\x7f<\x0b\x0e[;\r Qp=\x1e_+DySz\x14:D4;e:<\x15uN=={;\x1eF!8<{\x15\x03J\x19\x0b\x1c;\x12=!<+DP̥,\x10.\u07bc+-<1\x15=\x00k<\x01=\u05ce6-\x11֚ȼ0\r`;nB;\x1e\x19<Ѝ;]<*\t;\x1d*|$;^\x14SGJB)_\x05\'\x14\x03X8\x1c%=eX=\x13<{z=%W39L\'߷{:IC2=E(<\x1cAVR\x7f\x01KR\x02\'\x12<\x0cI>\x00\x19R<<^<@Pg#=C \x08=ߟ<.<һ`d#\x16<\r<-s\x0fϼ =\x14fڙ;\tB4<\x08 This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000\\).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:8164a0d1-1226-4de6-8d7a-39699df9bbb1', 'payload': None, 'score': 5.638585351105137, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2826244', 'document_id': 'bfe60902-d299-44d5-af13-f68c06604fef', '_node_content': '{"id_": "8164a0d1-1226-4de6-8d7a-39699df9bbb1", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfe60902-d299-44d5-af13-f68c06604fef", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "4423c15f0262081da99b5983d0c0d4888dd19d09a77408a79310122494d98daf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1101e903-21fb-4f1a-a913-cd4d0db09034", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "a0ce698216bb12351e6c53c1f0a2e4b69df29c33d5af55c6ee316510f7e616c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc4f1340-3c4f-489a-ad6f-ff61fc6ae5bb", "node_type": "1", "metadata": {}, "hash": "f086c88c19abfef10f0e7100cf75308dc71e1c1a8b0f65ac1fe88aa3b3693b3a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3197, "end_char_idx": 6819, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf', 'vector': '\x10\x1br\t\u07bc\n}\x19\x02JG<;JT}\'j\x16q<\x0c\x0f\x03!:ʊ\x0f\rnQD;?#M;O,<ⶊ<\x16q1<\x1e\r軛ٲ8-}Իg\x0e=\x080?#M\x17M4\x0c:Z{\x13<\x1e+!5(r>*x~=J<姻J:SVkB\x0c:=\x1d\t;\x00<\x04\x12s\tB1j=s\x195f=ӻ-<1GŒ:[.\x0cb =$k\x0bJ<\r=姼\x1b\x08<\x04)\x05\x06=IWD\x00=˼\x17o\x06+=Ą=\x0e/\x0bl,<_\x0b<\x07<{\x0f;Ym?l:=dp@<{<\tZ̼\x12\x0c\x03=\x1a\x01"=]\x0c:;\x05=ޓ\tf/y\'=\x1aָ݅\x17\'<\x1be<\u0602;A\x0b*a<ɳ<>\n\x15\x7f줼~+\x0c:R]=\x14\u07fc\x0b\\<ʽ\x07;k\x111G\x1f\x104jOn;ej0A=F];\x00\x1e;\x080"6V\rr4\x1ad\x05u/<+8;\\\n6=r q<ȝ\x12=\x15\x0e\'#=A\x1dⶊtlлS!m=\x1bU<2\x14=`\x1b8»\x1c⻨ӌ],\x13,&r>*"L<\t\x10d|\x0c:$:\x07<8T\x00\x05=\nL=lv;ќ\x12\x0c&)\x01oxE\x10g\x01D\x18\n:4Q컼c;\u0bfcч&ثF<⠼ּ\x0eO=ܯ;FV=\\<\x03I㼋7\'ٕ};\x7f 7=\x1b=\x02<\t༜뻘NmB\n\x13㣼fһ;TW5=\x02;0\x1fD;뼮<$;\x1d =>"=/"==\x7f\x19\x1fʼݎ廬C꼈\x1fLoU/:#t\x1f{=(#=-<܋;+E>;\\G\'x\x17\x13kΊ\x027s5T=\x1eV\x0e@\x7f 7IϼxI/ͼ;\x0f=[<-<\x06\\+<\'g;k6<3\ue63b\x13=u=\x18)b\U000bb508B>"=\t=\x1cwC=#\n;nop\x05;%=I\x1e=8Ƹ~vw\\Uȼb@z6Ja\x0fq1:țJ=,~\x7fȼ3㊻\uf7bb\x15;=`\x04\x06<\x02\x00E< “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom \\[when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs \\-animals – photosynthesize, so it is eye\\-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step\\-by\\-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:3813364d-5d0b-43b2-8b98-89f90953c7b8', 'payload': None, 'score': 5.55404854431084, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67846', 'document_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', '_node_content': '{"id_": "3813364d-5d0b-43b2-8b98-89f90953c7b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c67a53bb-8127-4a54-8b71-e1b38caa9ff1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "19d045065fa9deb404ca09df5d278e17246849ecf0ad229013a4f1b8ebdf6baa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44dee6a0-7eb8-4a9f-96db-c955c8a4af03", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "d32b9c44375b348bc666ef0aec15d9716110288a771b9adacf9715e299e14eb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "db799e37-46c6-4470-b828-20f113c1c7e1", "node_type": "1", "metadata": {}, "hash": "95ca862141792c058376d879a3bf777f6a55c3680aed266ff9ed2bdabe4d79eb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3981, "end_char_idx": 8579, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', 'vector': 't4-N\x19\x16\x04\x06%3\x0b;)R;Xv\x12@:\x1aXv4!&m\x08<(0j=\x0cr뺚\x00 \r9:\x03R=y௺\x00F\x1e<\x1a;;\x16\x02:->=ۜ<6\x11=VI,aK)Aнx<;)<;<\x1a,=\x08|WA<~y/=DI9\x04+L\\}=W\x1b<]üt\rxtR<\x1c\x17+< \x10\x1bP=<\x17\x12z\x0e<(0j:L\x03EZFe\x10h;WTb=Y<\x1e\x0c=\x17,;\x16%<<\x11\x1e8\n\x0c+\x12;\x16%<\x0e\x1d<^Y\x04<<]\x1aj<<;twϻ`?\x07p=JӍ;&\\"y;IwF7"\tgIw<\x1bw@\x1dP\x15E\x08! “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom [when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs -animals – photosynthesize, so it is eye-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step-by-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Using embedding model BAAI/bge-m3 -Loaded tokenizer -Using LLM -Result{32398 total, docs: [Document {'id': 'test_doc:5dc73c06-0641-476c-ba07-ec3d9ce82991', 'payload': None, 'score': 132.55675331806512, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "5dc73c06-0641-476c-ba07-ec3d9ce82991", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bbb8b0a7-def2-445b-89f5-c7988780b2a1", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "18970c20bf6be058ab8372022d046550e6055d4d81d1b74ea61521b845016ee0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "172eb832-1ba2-43dc-84ec-f4a2c9d0c8c1", "node_type": "1", "metadata": {}, "hash": "19b245eca249d5169e359d1e5960013f3504abb80e219ecd262db78414e59a2e", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 104059, "end_char_idx": 108804, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': 'B\x121\rjB\n;n SO^\'`xOTJ=i%\x13\t,HFL:V-\x18\x02\x17>\x17=f=0!e\x1d=V-\x18=+#A.=\x08qARj% ҼU(\uf04d#E,< <,HFG\x17\x1a8ZxC8\x01bX2K<)\x14<8I;j{<9:<1\x08d;\x03m,=f\x19<\x1ce*;E=~xX2E\x06=[_<\x0fZ\rP\x1f]&z<%\x06+<Ճ_\x00*0=x\x15ܶb/Q<*\x18:qc<:\x15\x08\x00\x01Q\x12>$q=J"-=M%"\\jW\x14U;\x00Rs%<_Z<;\x1a\x12=h\x10(<\x0b\x00K\x15={l\x00=HɻlEs-g<*k;\x03=\x17ܼ\x7fk7\x17\x04\x08v\x03\x1cvz좼t\x1aB\x1b=Ͼ,\x04\x01;ƶokOcB=&?o=?]\x0e\x17=<\nǼ6]\x1fw=\x10\x1eGB\x1b=S>\x1c:F<\x18\x05·P\x11y\x1dbX2QԎN', 'text': 'Citizens of this community commit to reflect upon and uphold these principles in all academic and nonacademic endeavors, and to protect and promote a culture of integrity.\n\nTo uphold the Duke Community Standard:\n\n- I will not lie, cheat, or steal in my academic endeavors;\n- I will conduct myself honorably in all my endeavors; and\n- I will act if the Standard is compromised.\n\nIt is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe Reaffirmation\n\nUpon completion of each academic assignment, students may be expected to reaffirm the above commitment by signing this statement:\n\n“I have adhered to the Duke Community Standard in completing this assignment.”\n\n[Student Signature]\n\nDefinitions\n\nLying, Cheating (including plagiarism), Stealing. Definitions for these terms used in the Duke Community Standard appear at https://studentaffairs.duke.edu/conduct/z-policies/academic-dishonesty-0\n\nApplication of the Community Standard to the Master of Engineering Management Program\n\nThe Duke Community Standard encompasses both academic and nonacademic endeavors. The first part of the pledge focuses on academic endeavors and includes assignments (any work, required or volunteered, submitted for review and/or academic credit) and actions that are taken to complete assignments. It also includes activities associated with a student’s job search since the definition of lying includes “communicating untruths in order to gain an unfair academic or employment advantage.” Some of the aspects of academic endeavors as they apply to master of engineering management students are:\n\n- Group and Individual Work. Please note that in many classes there will be both group work and individual work. Students should be sure they are clear about what level of consultation or collaboration with others is allowed.\n- Studying from old exams, assignments and case studies. Many courses have case studies, exercises, or problems that have been used previously. Students should not use prior semesters’ work to prepare for an exam or assignment unless allowed by the instructor.\n- MEM Program suite, computer laboratory, library, meeting rooms, and other shared resources. There are numerous shared resources that are available to support a student’s studies. Use these so that they will remain in good shape and equally accessible for others.\n- Career Service Resources. Use these so that they will remain equally accessible for others and so that the MEM Program will remain in good standing with Career Services. Abide by Career Center policies found at https://studentaffairs.duke.edu/career/about-us/policies.\n- Implicit Reaffirmation. Some instructors may not require students to include the reaffirmation on every assignment. If the instructor does not require students to write the reaffirmation (“I have adhered to the Duke Community Standard in completing this assignment”) or it is omitted from the assignment, it is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe second part of the Duke Community Standard extends its reach to nonacademic activities undertaken while enrolled as a MEM student. Students are expected to observe:\n\n- all local, state, and federal laws and\n- to abide by Duke policies including university policies on discrimination, harassment (including sexual violence and other forms of sexual misconduct), domestic violence, dating violence, and stalking. Details for these may be found at\n- https://oie.duke.edu/knowledge-base/policies-statements-and-procedures and\n- https://studentaffairs.duke.edu/conduct/z-policies/student-sexual-misconduct-policy-dukes-commitment-title-ix.\n\nJurisdiction\n\n- The MEM Program may respond to any complaint of behavior that occurred within a student’s involvement in the MEM Program, from application to graduation. However, complaints of discrimination, harassment (including sexual harassment which, in turn, includes sexual violence and other forms of sexual misconduct), domestic violence, and stalking will be addressed under the Student Sexual Misconduct Policy (for misconduct by students) or the Policy on Prohibited Discrimination, Harassment, and Related Misconduct (for misconduct by employees or others).\n- Any MEM student is subject to disciplinary action. This includes students who have matriculated to, are currently enrolled in, are on leave from, or have been readmitted (following a dismissal) to programs of the university.\n- With the agreement of the vice president for student affairs and the dean of the Pratt School of Engineering, jurisdiction may be extended to a student who has graduated and is alleged to have committed a violation during his/her MEM career.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c58cedc7-cea5-41b6-bc3b-3a771c4f86d6', 'payload': None, 'score': 89.22829267208752, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '347133', 'document_id': '7979214c-3a83-4371-9c7d-5b3a396437e0', '_node_content': '{"id_": "c58cedc7-cea5-41b6-bc3b-3a771c4f86d6", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7979214c-3a83-4371-9c7d-5b3a396437e0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "68b037e71e4a1ff245a8b811d8fd9bb3d143078a8f45b0130a1cf34eb9ef7896", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf2b9747-ad6a-4006-8d4d-1c44a2e498fd", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "78102f4238ea0c0199c9d290540cf6c0b09dde573d8c3c651955aba49ea65d6d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0d0262fd-5f63-4d3c-a40b-85f68f5e806d", "node_type": "1", "metadata": {}, "hash": "fc841255189697ca2eb6dedd5ea92f4eeb4dbf26140e34f28f8a094c39bc5b37", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5572, "end_char_idx": 10685, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html', 'vector': '/*ܼ9Oڼ\x07.5̧\x04\x15̻\x7fF\x05Ǽhp<."<\x03\x18\x1f=~\x19=Ѕ-\x11i\rERL;St\x1a;+;v{ٻQHżf\x14;<\x1c\u07fc\x0cX7uּǿ<^\t!/b\u05f9jIe=#<3\x04Y<\x1d\x11<\x19\x1c;|͢<\x15!\x07\n߰<%~<\n)-=:\x19^<2W=3\x15=<\'3;{<ǿB<+\x00=\x06M\x1er\u07ba\x13\x05\x0c=b\x0c컗༁}<\r~]uY<9O<8\x06M\x0c\x16;0=rv\ue37d8w̧=QHE;uZ\x15=\x1a=|\x19nh&鼾\x11%;J<\x06Y,/<\x175ƻc=l\x04;\x11\x1e\x10\x00ڼ;\x01e̼cQ- Ʒ.<;g;U;˂Hηn=D`\n=>l2\x01<ܼ\x17/yV1㴽*\x1e˻{ϼ]<\x02Ի\x18=$ \x14c=pΊ%ͼw=%T=R\x0f<:2x-\x16\x163<\x06\x0fӻ\t|a,\x0c4\x04$v{O\x1e\\\x06A\x1aWk;;\x13;u=\x18[;߀\x03\x12鎈3HK;3H<-.;=+v-"N\x1c\x16-M=4\x0b=}\x1e=Ӽ>>܀ѼH\x0fLqD_\x15=9\nm\x11cޢ))9=+a=#<2H<٭\u07fc=\x0ba<>q =?X<\x04%\x06\x0fY\x1c(=2\x0c@&&\x0f<&l,H=\x02<\\B\x07r=Ы;yN<\x14om<\n5ƞ87.=D_!\x15n<2\x04)n(=\x1e\U000fc5e5;:`G{;4`\u07fb\x1b:\x1f=cw4&\r<>$\x00\x01\x14\x102a<.ة]-0"=\x1b<\x16ӵ0R<\x00\x0f;,Z!;Kٮw>=zkdjG<{\x08y:\x0f\x02N<\x02>.=x=*\x02<\x03=\x0fܼ="\x1b<0ǿ<\x14\x0c<\x1fnG;l5Y\x05\x1b4;\x17a\'^ڼg;l\x12\x13\x03=+t=J<6껝<\n\x0b=\x02/:\n\x17:} мc(/OT<\x02!=?䗽;N=ᕼ} )ȼ4\x19=ټ\x07;\x08ռ:^\x06v\x11jŞ&mg2;LoXu\x17\x18><]=\x7fS\x10g<\x01o=V$^-\x18m\'X;꼼K=\tbݼ뽘<\x13rZf:=!_; ;v<:|3!<|,\x07qi,\x03\x1cPLjŞh*^\x19<\x1ap(P<\rټ\x06vmuM9b<ּi9V<\t\x13=AЇ\x04f<\x18\x7f=|IxOTJ=i%\x13\t,HFL:V-\x18\x02\x17>\x17=f=0!e\x1d=V-\x18=+#A.=\x08qARj% ҼU(\uf04d#E,< <,HFG\x17\x1a8ZxC8\x01bX2K<)\x14<8I;j{<9:<1\x08d;\x03m,=f\x19<\x1ce*;E=~xX2E\x06=[_<\x0fZ\rP\x1f]&z<%\x06+<Ճ_\x00*0=x\x15ܶb/Q<*\x18:qc<:\x15\x08\x00\x01Q\x12>$q=J"-=M%"\\jW\x14U;\x00Rs%<_Z<;\x1a\x12=h\x10(<\x0b\x00K\x15={l\x00=HɻlEs-g<*k;\x03=\x17ܼ\x7fk7\x17\x04\x08v\x03\x1cvz좼t\x1aB\x1b=Ͼ,\x04\x01;ƶokOcB=&?o=?]\x0e\x17=<\nǼ6]\x1fw=\x10\x1eGB\x1b=S>\x1c:F<\x18\x05·P\x11y\x1dbX2QԎN', 'text': 'Citizens of this community commit to reflect upon and uphold these principles in all academic and nonacademic endeavors, and to protect and promote a culture of integrity.\n\nTo uphold the Duke Community Standard:\n\n- I will not lie, cheat, or steal in my academic endeavors;\n- I will conduct myself honorably in all my endeavors; and\n- I will act if the Standard is compromised.\n\nIt is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe Reaffirmation\n\nUpon completion of each academic assignment, students may be expected to reaffirm the above commitment by signing this statement:\n\n“I have adhered to the Duke Community Standard in completing this assignment.”\n\n[Student Signature]\n\nDefinitions\n\nLying, Cheating (including plagiarism), Stealing. Definitions for these terms used in the Duke Community Standard appear at https://studentaffairs.duke.edu/conduct/z-policies/academic-dishonesty-0\n\nApplication of the Community Standard to the Master of Engineering Management Program\n\nThe Duke Community Standard encompasses both academic and nonacademic endeavors. The first part of the pledge focuses on academic endeavors and includes assignments (any work, required or volunteered, submitted for review and/or academic credit) and actions that are taken to complete assignments. It also includes activities associated with a student’s job search since the definition of lying includes “communicating untruths in order to gain an unfair academic or employment advantage.” Some of the aspects of academic endeavors as they apply to master of engineering management students are:\n\n- Group and Individual Work. Please note that in many classes there will be both group work and individual work. Students should be sure they are clear about what level of consultation or collaboration with others is allowed.\n- Studying from old exams, assignments and case studies. Many courses have case studies, exercises, or problems that have been used previously. Students should not use prior semesters’ work to prepare for an exam or assignment unless allowed by the instructor.\n- MEM Program suite, computer laboratory, library, meeting rooms, and other shared resources. There are numerous shared resources that are available to support a student’s studies. Use these so that they will remain in good shape and equally accessible for others.\n- Career Service Resources. Use these so that they will remain equally accessible for others and so that the MEM Program will remain in good standing with Career Services. Abide by Career Center policies found at https://studentaffairs.duke.edu/career/about-us/policies.\n- Implicit Reaffirmation. Some instructors may not require students to include the reaffirmation on every assignment. If the instructor does not require students to write the reaffirmation (“I have adhered to the Duke Community Standard in completing this assignment”) or it is omitted from the assignment, it is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe second part of the Duke Community Standard extends its reach to nonacademic activities undertaken while enrolled as a MEM student. Students are expected to observe:\n\n- all local, state, and federal laws and\n- to abide by Duke policies including university policies on discrimination, harassment (including sexual violence and other forms of sexual misconduct), domestic violence, dating violence, and stalking. Details for these may be found at\n- https://oie.duke.edu/knowledge-base/policies-statements-and-procedures and\n- https://studentaffairs.duke.edu/conduct/z-policies/student-sexual-misconduct-policy-dukes-commitment-title-ix.\n\nJurisdiction\n\n- The MEM Program may respond to any complaint of behavior that occurred within a student’s involvement in the MEM Program, from application to graduation. However, complaints of discrimination, harassment (including sexual harassment which, in turn, includes sexual violence and other forms of sexual misconduct), domestic violence, and stalking will be addressed under the Student Sexual Misconduct Policy (for misconduct by students) or the Policy on Prohibited Discrimination, Harassment, and Related Misconduct (for misconduct by employees or others).\n- Any MEM student is subject to disciplinary action. This includes students who have matriculated to, are currently enrolled in, are on leave from, or have been readmitted (following a dismissal) to programs of the university.\n- With the agreement of the vice president for student affairs and the dean of the Pratt School of Engineering, jurisdiction may be extended to a student who has graduated and is alleged to have committed a violation during his/her MEM career.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c58cedc7-cea5-41b6-bc3b-3a771c4f86d6', 'payload': None, 'score': 89.22829267208752, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '347133', 'document_id': '7979214c-3a83-4371-9c7d-5b3a396437e0', '_node_content': '{"id_": "c58cedc7-cea5-41b6-bc3b-3a771c4f86d6", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7979214c-3a83-4371-9c7d-5b3a396437e0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "68b037e71e4a1ff245a8b811d8fd9bb3d143078a8f45b0130a1cf34eb9ef7896", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf2b9747-ad6a-4006-8d4d-1c44a2e498fd", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "78102f4238ea0c0199c9d290540cf6c0b09dde573d8c3c651955aba49ea65d6d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0d0262fd-5f63-4d3c-a40b-85f68f5e806d", "node_type": "1", "metadata": {}, "hash": "fc841255189697ca2eb6dedd5ea92f4eeb4dbf26140e34f28f8a094c39bc5b37", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5572, "end_char_idx": 10685, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html', 'vector': '/*ܼ9Oڼ\x07.5̧\x04\x15̻\x7fF\x05Ǽhp<."<\x03\x18\x1f=~\x19=Ѕ-\x11i\rERL;St\x1a;+;v{ٻQHżf\x14;<\x1c\u07fc\x0cX7uּǿ<^\t!/b\u05f9jIe=#<3\x04Y<\x1d\x11<\x19\x1c;|͢<\x15!\x07\n߰<%~<\n)-=:\x19^<2W=3\x15=<\'3;{<ǿB<+\x00=\x06M\x1er\u07ba\x13\x05\x0c=b\x0c컗༁}<\r~]uY<9O<8\x06M\x0c\x16;0=rv\ue37d8w̧=QHE;uZ\x15=\x1a=|\x19nh&鼾\x11%;J<\x06Y,/<\x175ƻc=l\x04;\x11\x1e\x10\x00ڼ;\x01e̼cQ- Ʒ.<;g;U;˂Hηn=D`\n=>l2\x01<ܼ\x17/yV1㴽*\x1e˻{ϼ]<\x02Ի\x18=$ \x14c=pΊ%ͼw=%T=R\x0f<:2x-\x16\x163<\x06\x0fӻ\t|a,\x0c4\x04$v{O\x1e\\\x06A\x1aWk;;\x13;u=\x18[;߀\x03\x12鎈3HK;3H<-.;=+v-"N\x1c\x16-M=4\x0b=}\x1e=Ӽ>>܀ѼH\x0fLqD_\x15=9\nm\x11cޢ))9=+a=#<2H<٭\u07fc=\x0ba<>q =?X<\x04%\x06\x0fY\x1c(=2\x0c@&&\x0f<&l,H=\x02<\\B\x07r=Ы;yN<\x14om<\n5ƞ87.=D_!\x15n<2\x04)n(=\x1e\U000fc5e5;:`G{;4`\u07fb\x1b:\x1f=cw4&\r<>$\x00\x01\x14\x102a<.ة]-0"=\x1b<\x16ӵ0R<\x00\x0f;,Z!;Kٮw>=zkdjG<{\x08y:\x0f\x02N<\x02>.=x=*\x02<\x03=\x0fܼ="\x1b<0ǿ<\x14\x0c<\x1fnG;l5Y\x05\x1b4;\x17a\'^ڼg;l\x12\x13\x03=+t=J<6껝<\n\x0b=\x02/:\n\x17:} мc(/OT<\x02!=?䗽;N=ᕼ} )ȼ4\x19=ټ\x07;\x08ռ:^\x06v\x11jŞ&mg2;LoXu\x17\x18><]=\x7fS\x10g<\x01o=V$^-\x18m\'X;꼼K=\tbݼ뽘<\x13rZf:=!_; ;v<:|3!<|,\x07qi,\x03\x1cPLjŞh*^\x19<\x1ap(P<\rټ\x06vmuM9b<ּi9V<\t\x13=AЇ\x04f<\x18\x7f=|I6ż7F<-\x1b<:9Xٜ,d):-\x120T\x05Q?z\x18;\x02=\x05TbJ\x00<9a<<\'%\x03K8\r\x08<\x0eh2<4gR=\x04\u05fbM\x02@Cⱼ&м${$RI= 4;Ҙ<\x1f\x1a\x1f=X/K_\x0ehߏ\r=ٶ<5+;,X=\x10<&\x069=\x01$,0\x0f=PkUm@\x0bx\x07=(."ʺ$<.:缅q=<4o;C1|<*a<6;)\x0ed<\x17_L\x0b<\x1dL=R]+<>7R]+<<>=xrϼ7\r<\x1eX&=<\x01ʟ.\x04\x1c=\x1fr<\'F{:\rk1aB\\(-0B4\x10<|\x16;\x17F{\\&|\x16=`X=hJ<)j6b\x02=(껲{[/eJ/g\x14S\x18aa:1~\x0cP64kn¬<\x0b\x10;,n!\x00;9 H<\x10g\x14<\x1b;Ƽ?=i\u07b8;r#uu{ci<\x14<[v;\x13?=\x12\x13=#h\r"C=;Ԯ\x1bi;B\x19t=w<{\x1bXAi\x1e=E\ry<\x039*\x1d`<\x12[<Ͷ;{\x1b|9<\x1b9k\x1e7\x03{=$G\x04<\x01F\x12=Y\x06\r=yD:\x10l\x11<\x12<黼e3P~\x10r2Ы<\'#<@\x02;AºɁ<\x04<$\x16<\x154-\r=Kq!<0l< W* =&=\x19=~<(\r=VLц\x18I=ޛ<\x11Z\x13(;;;P6\x15;eO\x18\x102o\x13\x7fdˮ-H\x1c\x04iB=\\y<=c\x1cv:\x05۹-b$;im\n\x07=<\x15yUt;ױ;$\x12=~D<:^e(I\x04y\x19\x03YL:-5;\\Cq;\x05;\x1b\x10;ȼ&U\x1cVpG\x15ȿ)=z#:\x0c\rC<֬ hlM3R<\x1d\x1d8747<<䓽C\r\x15<_+炽U\x11;\x1fqY9<\x0e;;\x0ed]L<\x01P;\x0f\x04;|d\x1d=\x7f\x1aDZ<$<>nG}{|Ȼm\x1f\x00yl<\x10w!9T<\x1a;<#=:\x1bt5<\x7f9-\x07=d<){ƶGd 9=7R\r\x00_;\x0c(=B6C;X_,\ueef6/;;/\x00;9=\x1bH\x06<\\<\t=\x19(I)=\x0b<\x0bl\x11<-\x0e_uU<\x1f\x04<#;\x0bsy<5:즤;r+!=Q<+\x0cʼ\x072,?p\x02U\nRl=tzּw$<5;\x0e*\x07\x1dWǝ\x0c[N<~_4\x7f\x11<0\'\x07\x05\x18=BF;<&,=$\x12\x05H_z6<\x13M\x06\x10:Fy\x12\x12;\x11\x02a\x10,=\'aԻ֬<;O9%\x1f\x07ʼ\x10\x0c\x14\x16Ee\x0b=19=\x0285<\x13v<#h\x14\x1f=R:f:eK\x18|ռ<4\x04qѻ5P9\x7f0=\x119G\x15~"[q\t<\x0f=>X\x0b:A<\x0b\x19<|CP-<ؼ"=]L:2Fy<\x0c[N<\x15]P9<]*,n\x0fJ=\x1b\x14;1\x05;:]+F\x13=M j"ؼ\n;c$=\t)\x03=X}\x04=&\x0c!<\x14p\x04\x05\'\x1a@<8;fʼ%\x7f\x02F:O?\x01=^;;-O&\rx\u07fcdŻ\n\x00<7\\<;\x17r\'?¼w.F\x00gpg%ι\x1b;=&\x11$:i\x06)<\x1eļ-OE<\x1c\x04:\x0f\x10̈́< ]:O\n\x19(\t\\\x14)d\x16=*(\x08\x18tv(\x13=ھ<\x12\x0eƾ1/|kL<@<\x13O=\uf05b\x17;2\x03X#=7\x17\x16|T;r\x0cCػUf:K̈́;\x03pxKE=\x1a\x0e=1\x10<@<\x12\\<9\x1a;Լ\x1ew\x16:#<\x08=\x16hѧ<9V)<\x03b˽Mh`ѐ\t*<\x0b\x0b=!=Pd9-r^\x1d<\x1a;\x16=S\x07069I!n<\t=5<\'ɻ$<+=[ƍs\x1cJ<\x0e:\x16<\x0b{Ra;]ͼkl;VȽec#<|~K\x01Z<\x060;ߛӼL<\x01e9%9;\u058c=\x009i&\x0c!\x0ft4<\x11=QY\x18\x0e\x1eʫ\x1d\x1c4<\x114$=\x07\x03=Y\x02\x06<=b]=1<[+=3d:\x7f\x16ÕQ\x18cE\x07ϻlD9@=?-)Ҽ\'EӼ\x01P%]^=C4\x05\x02x=\x19\x12P=<\x14<\x15\x0c \x19M\x0e<\x7f=Rڼr=\t<\x02#=G;\x1f&:0<;o(00<[#\x06=.\x1f;^b\x06\x02<@EƤ<\x07n\x06=\x1bn\x07=\x1e="!<8\x0cۍU\x01W<2:x:9\x15l̟;{\x1dV皑l:NQ\x14\x0b?:\x1f<\t^\x7f\u07fc\x16\x1a&=\x0f>=7Ƽ\x1c<\x13\x14^\x1a\x0e0=g;<=R*|=ܷl\n[V\x0b\x01\x14-<<\x11n!;Ng܁<\x14-\x12=O<\x0c3;|\x1a\x06\x0b\x03\x01:\x15\x03;ߗl\x06\x1d x#=\x11\x0b 9<<5c#\x13{<\x16\x18һ(<\x1e<\x1dV119]\x02d\x1f=\x7f_=\x05!=\x7fBz?u\x04=\x13\x1c\x19;4\x055<мml5t\x01=\x1a\x12伢?Ԏ\tѺ\x7f=Qw\x0c>\x07\x0b7=\x02e\x03ȼ)Bռ4<7<\x14-<$<\x08\x00(M\x11ѢۍU9==%ۻ\x08TMm\x17&<~\x0b\'\x7fNU̼\x02=<\x05#惻\\y\x05\x17*ػ!\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 1.5338171606688917, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 1.4581297076685074, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 0.8113299438787233, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 8.102527249691054, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;\x16\x08ڸjo;L=|\x1b\x12~<4vB]ȞI\r\x16Ǽ\t\x14%jF<=3L6\\ 6=3G㼄d\x0fAm=)ϼM\x14gX\n>G<仒\x0c;=\x1d仟3\x13HS0bc=u<\x00\x01p0Iߴ!\x11\x16=\U0008f53cV2<\x073\x0f\x0bЎW<\x1e\x05b<\x164˺k\x1d=ը\x14=l<9~B4#\x18\x15V\x14`r=\x15=.d-\x0f=\x19=If: \x18=\x01]uY抻l\x18ʻ]3[P\x11& v=\x1d;E-uG0=b\x0e=?8@C(5<押 t;;\x1e5;=8Q;:\x14\x11Ѣ;8=NX\x129dwt\x01=OS?=ŦB=ŶIߴqO)0]\x03v:l۞F?=\x033\x150\x12=VCMI\tR<<<<ٽ=`5\x08/x<[*`a\\dDnR<\x04=\x18<%S\t;Iߴ{=\x11\t{\x013;}?\x0e\x1c<%b|;@N5^nqO\x14$\x1e;x\\z,=|\x1b;9A=ڮ<^<\x01;e#i<_1*\x18;:<;R\x01Ec\x00\x07 2U7d\x11={\x051B;+\x01\x1f=(rq;\rt\x07=[:\x03Ey\x0fkF=<7);20茼M\x1f\x0c=^\x10E<ǖü>\x07a3nf\x82nfXȃ=S\x15\x06뻄=$r\x004\x13\x1b|(nf\x02*&);\x13_<\x0bʻG7\x0f\x05=\x0c!:A\x0b=B;n\x1f;=q<0\x0b9؉;m\x16- \x1a_Tp\u07fcv)W?;c\x19\x16B=%HM\x14=S;<;|A4=\x19<\x1fͼz?;\x17<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:110a63df-8b02-4822-b4a9-617ebfd42f5a', 'payload': None, 'score': 15.086668242077053, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "110a63df-8b02-4822-b4a9-617ebfd42f5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc1f8a7f-baaa-4dbb-b662-57f13800fc6d", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "42c284bcff1c342571f19d5285c5bdf0c3c2d95e0c64042007d2e2532fa12fcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44f66e02-b2b9-4265-99c9-08ed4732fef3", "node_type": "1", "metadata": {}, "hash": "297fe55bd95dc0e162681bb957aa6d46eb3c30c959b454474a848f22dc63074d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1601297, "end_char_idx": 1605766, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'B\x03sL͜\x13珼|&&a\x11y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/ݳݳ]K_<\x01l<ܵ+<2=5Ǻ\x07\x0b8-\x19hB\x05\x10(\x19Vs<1\x0c<>\u07bcp<\x00g==*\x7f:Ir;$9Vk;\x04?hJ<[pU\x181=2!|>\x10SQ\r异\r\x0e=d`\n\x01p]=\x02<\x1c\x1e>;\x0c\x12=fR<]˻><\x15\x03\x0fR;\x18\t=mGUFѼrI=+H<\x02=i¼B0cD\x11bjjXYZ(=\x0f\x02\\Ԭ:V<\x1f:\x03S\x00=!0\r\x1f溼\x1c;\x07\x12\x14;\x19\x03;7=\x7f\x1eU;ĒR<\x16<<$=\x0b˼A~\x10;ٟ;M>^=C\x19<ؼ+T\x13<=/;q\x18=\t.C6=Ur<~;\x1b\x15=^r[\x12?hʼRWk<`<\x05҄ =\x0eu\r6\t<% 9YZB<\x19}H=\rv;ۆ!\x1a/4< &=\x1cL<<ʐ\x17<\x19V;e,:\x07<&;\x1e4O;9;7t<4M:3=JK\x0c%\x15=T?\x139t\x08+\x11=wQ!}\x1d=+ȼp6\r\x0cmG =<\x071\u07fcJE\r:\\"A0Ycd=?h\x15==X1⻈}V\x06Cs\x7fŻo^|<)<\x05.\x11fP=W\x06^VB<#>?<,_=\x1fA\x16;<?\x15\x08\\<\x10\x10;N <ɘ<ޑ\x02=\x13 ^\x16%]\x14;^4\x1b6\x1bPoћ/P<T;b<ڽ\x1d%="5<\x165\x16\x1d\r/\x0cU<ּ6\x16=j\x19<9`Y=\x17=L\\Q=<<_X<\x08hԼ\x187/\x19T\x1d:`Mh\x17\x18ᦼ\x12 =\x1b`;\x1c=\x1e<\x18M<+\x17\x0bMɄ\x00\x04<:ټgy:E;DR\u07bc2!\x00<˲\\\x0e\x17<\x1cOS=,\x10\x05\x06"\x01TK;:<\x1dջ=Fq\x02PH\x0ew\x0f\x17-<\x11=\x11;\x1bͼ\x1b< =BֻI\'\x0f;$\x01<ഄ\x19U7TK=2ӂ<¦\U00100f0f<*F\x06e\x08H<\x163:M\x1c?뻢Ï\x1e=\x19\'<+ڹÏ\x1e=T\x1b=x;+\x17\x0bn\x12\t\x14=%*<~ج+S\rBV>6ʻ\x11=lU;\x0bl\x1f?\\\x1c1R=\x0c<\x17B\x1eU{R_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 14.583295225431124, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 14.5412372691242, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 11.499612802991368, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 11.349764153695997, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{34840 total, docs: [Document {'id': 'test_doc:61cbca5d-71e9-4637-ad3a-d3b29e8aceb9', 'payload': None, 'score': 6.262837903308903, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "61cbca5d-71e9-4637-ad3a-d3b29e8aceb9", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/www.dukekunshan.edu.cn/cscc/\\u4ea4\\u96c6\\uff5cafter/-school-tutoring-persists-despite-double-reduction", "filename": "index.html", "filetype": "text/html"}, "hash": "64f5ecc0c3d3454fe6b289b4c2147a91391c91951460510b6594600e8c000f44", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ae4f008d-47b7-49a4-8f2c-a3fa8e0c39b0", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "20a0930ae70d0d12c8f3bf06a2f03443cc9b9303172ec001500dc69d22e1ba67", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "346fd73d-32dc-47f0-a233-30eb170c74d1", "node_type": "1", "metadata": {}, "hash": "1e51a8b0547cbb262441a7205366971b50ea64429a51b7237d26d77060276687", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'RѽksZȿkZ(\x16Ƽ\x19!sT -kP=B;;-;s\x17Ԣ|;Ԍ=e<\x0f?\x05<+3<ǻ-A;#\'<&;\x19:)=\x1a2U\x00=h\x0f=j(=Ll\x16_;;5z^e=<\x1eBBfC=]+<$\x0c<)z;\x12=!^ּNs\x7fPƼI#\':<@^&^钼kxW<\x19\x0c=3sZ\x16-;FWQ<3;iIӼjf!3\x17\x07 =\x1a<\x7f\x1b=\x19\x1b\x0f꼕ێ<\x10*=5\x11=P\x02[\x19\x18T ?+]͎<^&=/%b<ժ\'<\x12IAdmWR;ga-o;)ɀQ<;Is\x0b\x1d9=ª-V-<^Ҽϕ<=\x14==V\x19mW;\x7fé{;?<\x10*N\u07fc\x7f\x1fW<и<]9\x1d;\x0c\x19Ns\x17݀K\nh/(ٸ\x18<\x08F=\x0b\x00X<<4{\x04<\x11<)=e\x1f=\x1a;DP;kP̼k`=\x1dԹu=6\x1bN=K\x1b*<\x04|<>ǼWn!Jg<搱<ʞ=/X\x147R4%»=D\x03=O\x1b$}YK=%ܐC\x06oYc;Df\x10=<=+=`\x1bY<\x00\u05fc06<\x11^=Y<0\x1bZ\r\x08q<\x18=}YKD;R̼1\x03;\x1fu_u9)GgἋY3q\x00<\x08&/j\x0c<\x13<Ҽt؉n;Eu)z`,"<[Ȃ\x1f)<\x11|R;+)\x19~g\x01!\x06\x0cogD/|\x1f<_\x007\x1d}㼀==\x1bu)=62z\x00=#\x0f=(=NY;퐥CχU\x14=<ܗ\x1eǗBY=X\x06<\r<\x0bǗ;Y\x12=p\x06\u05fcƼ7:=;\x1c0RL9P<\x15|LD\x1b6=U<<Ȟ\x1dD\x1b=0<ۉh=\x1f:"<\x18uY*<,Q\rh7"\x06\x1e\x1c|@\x04)^f\r<~`&=~`&>|=\x14giYo;FuQ<=%\x1168Jg=-K7p=l<,=\x12\x15̃\x05\x1a;\x1f.=;\x05\x18=\x1c\x045<"hU<\x0c\x07\x1cTŔ\x01\t;Qɼ\x08\x17}<\x1d=K1=\x12\rfF\x04-y;GE<[Ƽ6C%;\x18Z.<+<ػ\x00HY\x02<\x19/is\x1d\x0e<9;DR~<n\x01\t\x03\x7f"=y\x10<\x16<1=ջ;@+(7\x11=Fc\x01\x14=:\x15[n*o=b=={=\x1f.ڍFB7\x11%=\\QS\r<5\x008Ł*B=2\x13<\x16=N\x18-\t=a2=\x0e&Gȟp}b;\x0bMX\x18=\x00=馼@\x18U?ʼ<҂\x005y\x02K', 'text': '* [About Us](#)\n\t+ [What We Do](https://academic-advising.dukekunshan.edu.cn/what-we-do/)\n\t+ [Our Team](https://academic-advising.dukekunshan.edu.cn/our-team/)\n\t+ [Faculty Directory](https://faculty.dukekunshan.edu.cn/)\n* [Academic Advising](#)\n\t+ [What is Academic Advising](https://academic-advising.dukekunshan.edu.cn/academic-advising/)\n\t+ [First Year Student? Start Here!](https://academic-advising.dukekunshan.edu.cn/new-students/)\n\t+ [DKU Definitions](https://academic-advising.dukekunshan.edu.cn/dkudefinitions/)\n\t+ [Academic Accommodations](https://academic-advising.dukekunshan.edu.cn/academic-accommodations/)\n\t+ [Academic Integrity](https://ugstudies.dukekunshan.edu.cn/academic-integrity/)\n* [Academic Resource Center](#)\n\t+ [Tutoring](https://academic-advising.dukekunshan.edu.cn/tutoring-service/)\n\t+ [Academic Success Coaching](https://academic-advising.dukekunshan.edu.cn/academic-success-coaching/)\n\t+ [Workshop & Events](https://academic-advising.dukekunshan.edu.cn/events-workshops/)\n\t+ [Peer Tutor Program](https://academic-advising.dukekunshan.edu.cn/peer-tutor-program/)\n\t+ [Peer Mentor Program](https://academic-advising.dukekunshan.edu.cn/peer-mentors-list/)\n* [Resources](#)\n\t+ [Students Resources](https://academic-advising.dukekunshan.edu.cn/resources-for-students/)\n\t+ [Faculty & Staff Resources](https://academic-advising.dukekunshan.edu.cn/resources-for-faculty-staff/)\n\t+ [Pre-Health Resources](https://duke.app.box.com/folder/48799464636?s=87pre13veghzaho133u8zaozzgr9pv9s)\n\t+ [Pre-Law Resources](https://duke.app.box.com/folder/48799879835)\n\t+ [Interesting Upcoming Classes](https://academic-advising.dukekunshan.edu.cn/interesting-upcoming-classes/)\n* [FAQ](#)\n\t+ [Advising FAQs](https://docs.google.com/document/d/1XKuY2rwXBLEYZtM9LDUGFNHgyhVvEmcURKLTWDwscwM/edit?mode=html#heading=h.uqazz4jigo46)\n\t+ [ARC FAQs](https://academic-advising.dukekunshan.edu.cn/faqs-for-arc/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFrequently Asked Questions about ARC Services\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Table of Contents\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n#### What does the ARC do? What if I am not sure if you can help me?\n\n \n\n\n\nThe Academic Resource Center (ARC) is a learning support center within the Office of Undergraduate Advising. Our mission is to provide undergraduate students at Duke Kunshan University (DKU) with quality academic resources that promote inclusive learning and development. Our specialty is providing tutoring and learning support for gateway, sequence, core, and large lecture courses. Our services include [tutoring support](https://www.dukekunshan.edu.cn/academics-advising/tutoring-service/), [academic success coaching](https://www.dukekunshan.edu.cn/academics-advising/academic-success-coaching/), [workshop and events](https://www.dukekunshan.edu.cn/academics-advising/events-workshops/), and [peer tutor program](https://www.dukekunshan.edu.cn/academics-advising/peer-tutor-program/). You can check the webpage of each service for the detailed information. If you are not sure how we can help you, feel free to write us an email or drop by our office for a chat\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Are there student worker opportunities in the ARC?', 'ref_doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'filename': '/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/faqs-for-arc/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '120906', 'file_path': '/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/faqs-for-arc/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:151824c1-0375-43aa-97ae-7780d08da13a', 'payload': None, 'score': 4.394201024862802, 'document_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', '_node_content': '{"id_": "151824c1-0375-43aa-97ae-7780d08da13a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7aba813d-dab9-41dc-a97a-993ec69ba196", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "hash": "11ecc01f303036fe2851e08fc6521f4a230e023753a73908adc39b8ec3c08e8d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "95f99175-116a-49af-895d-4b71c19abd9b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "hash": "a8157b34cd3453d02dd5443f999693d2c010e5f629090659d0448313fddadb5a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7273eb88-c247-48f2-916c-0d94983e530f", "node_type": "1", "metadata": {}, "hash": "f8f28647c2cc39cd12d52956584fbcc8b36cffd0fdcefc36088a7609364f0a72", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 17336, "end_char_idx": 22330, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'q\'bQݼ\x1e伮\x10~t:\x1c<<ʼ\x7fu+2=A\x17\x06<\';q<(=\x0ec\x00ֲļr {;ռ{B\\{6=[y9٠=\x08IN|=.i<œ$Z>>\x14\x04C\x0e-kE=<$Kͻ}<#x\u05fcQڊhX\x02h0`o$AHR\x16ʒ\x98м;v\x1cW=<\x0e"=nD;m\x11lW:& \x04=T\x7f<&!=\x0e\x15\x03\x1c=}\x17\x13Ȟ]<))=6ٝ;<~\x14zh-\x16!8eGtQP=g\x01\x14<\x05\x17M\x0ff:ET=9;\x1co\x08Nャ{\x7fUS$;>-X\\IL:ЯI/\x12Bi\x1b\x05s\x14:\\<\x180Mld=՝3=J\u07bcXb\U0003c226B\x19p*X\x06\x0b\\n;!kм:<>X^<̣;+<\x0cyh<@\x01D\x13<~\x02\x10<4\x12=lΞ<͢\rIwZ>\t=W<25=:<ݻSt\x1a-ϼ6`U\n%\x1d\x082=<ռ^\x17\x15s<\xad\t&6r\x1f\x1f\x1bS<\x01U"jT)C8=^\u07fcW̼,=\x1c<\x04=4;r<ۙri<\x13hX;\x1bb3N<]&iZE켦74^_p6;x-q:ŏ^W;L=R 1\x15ȶ:*\x0e\x10q\x0bNy\t\x14<=\x1e\x03ؼ)7=^;tA=K~"q<(<\uf77c5UH;S\x05軡=\x12\x15=/9ڨf`=1౼4>=\x08a=&R\x02-;$~\x08\x0eM\x0eԼ\x10!ܻ\x18=!kP==˼z/Zf\x12Z\x89&;B\x7f;k)k\x1b;L#\x1aa\x15<@\x011\x1c萴-q;V<\x1fּ<<ϻ$;Y<\x1fC=h;Kd\n.Ż\'<<,\x13diM<\x19<\x7f\x0b<\x05;)\x0b@k\x16$~2<-,|:\x05,`\rN<мML.\x0b;-8>^W\x0b\r<;Hr=\x15\x1bD$-|11(;V[m\tq`\x0fc\x1b!\x17f`\x1cIP9L7\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 45.65767402992056, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u6=Eƺ\x08P=aQ0=\x08r<\x07\\;\x07M=\x04ȇ9\x05\x7f<\x08u\x05/(\x06t5Z\x13<\x08q<Բ\x08:ivV\r\x7fD&j]<\x05\x03<-<\x07U;\x06?<\x05\x0fAۼ\x05$>\x08<\x08H\x08\x07c<;P\x05,$:=\x07Ũ\x12\x04S\t&=\x05\t<\x05h<\x06\x06"?=\x05?#<\x07LiD/\x0eu:\x1b;M\x07S;W^i\r\x1c=\x1biQ\x01=\x0b\x10"\x0e=pY9ZN<"@=f]\x14=Q;;IkA\x0fD˻%\x1cɼ\x0cPS\':s\x17\x03\x13:\x17=\x1dJ4=T<\x07H==0\x0b=\x0f\x16;\x12\x05\x06\x1f\x0fJJ",梅;\x16=z<Ú<0LAza6aʅ=D`Hk&: 4#6=\x16`}݄;:?&<\x03;.\tGW=\n3λO^TCۿ<\x02?=\x0f\x1b("\tb*!\x1b\x01\x1a^;b;Xĺ53\x16<Ú;\x04\x04@$;Q!^\x16k =z\x017<)<\x17[cܻH2=\x11U\x06j\nbuP\x1f(]9\x14c\x1d<\x0c;\rּ\x1dM<\x07ż\x08T<\x0b<\r1@\x05=|ƻr\x02=Ik*<&^9Ӂ<ˇ<μM\x7fHp\x08;`h;\x0c=\x15x\x0175ƻc\t;=6T:7\x14{I;B<6=Ȧ}\x1ek&:EU\x06e.\x18;\x12<.7\x16\x0f\x02a۽ϼ\x18\x05=>?=q<#\\<\x03¼\x12obu:R\x1c*;#=^;З2f9><;t \x18\'lp<>ۿ@zԠ|g\x1f\x05=r;sv~= o=hհ<\x0b=o(=9<=ػ>\x17Ƌ4\x17<4\r\x007p=\x18[;\x1a=\x1d<\x06⯺\r9/=S\'\x14/`;d\x00=\x14)FEҝ\t=E<=\x1fس<^M|ԼV\x07:\x19-t;\\@\x0b\x1bAO<;5(\x7fb<\\=\x07\x0c<.\x08=|\nbϼ6*;\x1bҼz\x0b:3Xޜ]%N,\x1c<\x1cg=I˼@U<?ۼ\x00a;`:=;启=Oo\x01D6*Ļ6\x12:\x11\x00~\x12n=xF <[Qau\x1b&\x0e=dɺ\x12<@M\x19=:;=ЍI\x05ȱfQT`"\x0b¡mG<\t>jCз<\te=;fz\x16<=<;\'<\x15;e=pQ\x16=(\x02=\x19\x032:]\x14K\x1e;S̔\x13\x1e\r<8p\x03;*;.\x1e):p\x01=o<\x13.4G\x15=\x132=\x02-p\x11<<\r=3p\t=\x13\x13&zw3=O\u05fc_z<鎌Wz(<-pE<\x06\x14\x13R(`2G়֟<\x086zz\x1b\rM=f\x02pżo(^Q\u07fc%=ˈ.;kG:W\u07fc\x17]\x15=w=@w҃\x017=\x15ֻP=C?\x131;=">.\n7f`;=\x1b\x07;P\x10=١~j$l,ć;$\x15\t(\x01SgQ<=DUv\x1d\x7f=\x018ͻl.@<ϲ=T\x9a5;\x01ϩo<\x0e=`=Ѽ8+=ԉ=4#L[5=jɛ;;d<\x12(ļQ\tIN\x7fb=p3/L<\t%۸=kp4\x08@PWDJ&=z<\x05\x1f=25:\x12m<\x03Qt+(FQÔ\x00<2J]\x0e\x1c<\x12&;EA=\nhi\x13<ƹ=5W!:C<\x19rgl\r7\r<,>\x03;ΌN\x08M<ڻ\x18.=o{=?;j"u\x0b\x17;̇;\x144=7\x04zC\x10=\x15ϼތ<\x1f\x0c#=tKF!T};\x00\x0cĂ\x05Aм\x15\x03|\x07<)II\x17v!<\x07Fg@*6;c<\\;0\x03=\x07[8=S<\x1dW<7ekpuH\x1e<\x02<Lۻ\x07[80=\x0b4#\x03H<"i1÷IN\x08ͻ\x08G=!㼭i+D\x07j\x1f<=\x0c\x15UL\r\u05eb[\x07l&+I=:M\x1f\x06eV\x1c;>=(#\'ؼ\x1f<:\x17:e\t<ӡ\x12Y2;>!ci\x16F=ϔ\r\x0e<\x0fӛT=5)\x06=\rl$¼\x0f=<#;l&=tK=H{=0$\x13\x18[\x13a<<<\nN\x05\ueea0<_Q\x18:IHr="<3<)=z\x06];Tr\x1c_=!\x14<', 'text': 'Settings\n\n* [How do I use course settings?](/t5/Instructor-Guide/How-do-I-use-course-settings/ta-p/1267)\n* [How do I set details for a course?](/t5/Instructor-Guide/How-do-I-set-details-for-a-course/ta-p/1037)\n* [How do I change a course name and course code?](/t5/Instructor-Guide/How-do-I-change-a-course-name-and-course-code/ta-p/1234)\n* [How do I add an image to a course card in the Dashboard?](/t5/Instructor-Guide/How-do-I-add-an-image-to-a-course-card-in-the-Dashboard/ta-p/624)\n* [How do I set a time zone for a course?](/t5/Instructor-Guide/How-do-I-set-a-time-zone-for-a-course/ta-p/1295)\n* [How do I change the start and end dates for a course?](/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354)\n* [How do I restrict student access to a course before or after the course dates?](/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269)\n* [How do I change the language preference for a course?](/t5/Instructor-Guide/How-do-I-change-the-language-preference-for-a-course/ta-p/1246)\n* [How do I enable SpeedGrader to launch filtered by student group?](/t5/Instructor-Guide/How-do-I-enable-SpeedGrader-to-launch-filtered-by-student-group/ta-p/947)\n* [How do I enable a grading scheme for a course?](/t5/Instructor-Guide/How-do-I-enable-a-grading-scheme-for-a-course/ta-p/1042)\n* [How do I use grading schemes in a course?](/t5/Instructor-Guide/How-do-I-use-grading-schemes-in-a-course/ta-p/870)\n* [How do I view and manage grading schemes in a course?](/t5/Instructor-Guide/How-do-I-view-and-manage-grading-schemes-in-a-course/ta-p/1188)\n* [How do I add a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-add-a-grading-scheme-in-a-course/ta-p/1054)\n* [How do I duplicate a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-duplicate-a-grading-scheme-in-a-course/ta-p/601384)\n* [How do I edit a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-edit-a-grading-scheme-in-a-course/ta-p/601385)\n* [How do I archive a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-archive-a-grading-scheme-in-a-course/ta-p/601386)\n* [How do I customize visibility options for a course?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-a-course/ta-p/844)\n* [How do I customize visibility options for course content?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-course-content/ta-p/814)\n* [How do I set a Creative Commons license for a course?](/t5/Instructor-Guide/How-do-I-set-a-Creative-Commons-license-for-a-course/ta-p/1059)\n* [How do I include a course in the Public Course Index?](/t5/Instructor-Guide/How-do-I-include-a-course-in-the-Public-Course-Index/ta-p/812)\n* [How do I set a course format?](/t5/Instructor-Guide/How-do-I-set-a-course-format/ta-p/1089)\n* [How do I change the format of a course ePub export file?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'emphasized_text_tags': '["span"]', 'filetype': 'text/html', 'category_depth': '1', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5de98e40-d933-49c2-90eb-c286525861b1', 'payload': None, 'score': 90.64511634021032, 'emphasized_text_contents': '["How do I manage my Canvas notification settings as an instructor?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "5de98e40-d933-49c2-90eb-c286525861b1", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-manag/e-my-Canvas-notification-settings-as-an-instructor/ta-p/1222", "filename": "index.html", "filetype": "text/html"}, "hash": "3d1a042c6d4a1bae721210c0a10127a1615064bd928e2854d5b7c96e2e2f1134", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16302703-378c-45c0-9106-9ad07470f8e3", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "860beb54725152d1658bbd2172b5f691ae88263f5cc891530405e4e0ab8b697e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b26b7f66-993d-49e0-894f-a130d7cd1140", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'k\x0fpB\x15\r\x11\x1d;uYº\x02\x06Bd<\x15;I\t\x7f\x03=U1[}:iKW\x1e=\x0e;{n伢ږ< .\x1eF<\x1260=8ahP\x12<\x0cļW=<=%\x07=kP<>6(=,;*Cܻ@\x03*|ӓ7<\x19\x13\x00=B\x0cZ;MW=\x07\x0bL=\x1dg<\x02\x04<\x12\x1f\x1a\x1e=ڟ\x7fK\x16=\x01I\x1f<\x19\x04q=9Y@p#T`:,q;`%\x14ԡ=R2,\x17;\';)] <.\x1e\x00=4eȻ:;\x12wnʀI*`L9Q+K<\x1c<8=\x14w\x01ؼ\x11=\x1cL=(\x13t!r<*\x13\t=\x15Rh<\x06\x0e=ɱ8}<9N[<\x00=\x1cU:d$N\x13\x1bRh9W<<\x12\x1e;\x1e\x05H^{;!2=+\x1c#\x1dg\x19\x12n\x07"/y;R"缬\x19.\x1eN\\=\'VG\x11mm\ncg9\x1cL1=Ik\x1eA\x13R<\x11<\r,= \x07\x10<8qG\x03dCo\x16\x19\n\x08<\x11w`:=\x073;Y=T\x1a\U000bc5bdKH\x06f\x04NG\x1e<09p\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIGj<߆\x1a<:x\x07%\x15Ud=ш\x0f\'x1=\x05:t\x07<ح<[3:ӻ\x04{{<)\x0b=v;"\x00%Y\x18"t\x0fճh\x05uY\x19\x1eHrG\x01.=\x0b=+=%c=<\x15<\x14u;\x1a\x12\x02=\x0f<\x11\x12%<\x14}xYS\x03W[G;;\x04\x07\x1b\x06;4wd\x18ݧ\'.=vϼc;l=\'\x07\x07\x15f=\x01\n\x04\x01=\'6\x08=Q\x15<\x05\n=<(VR\x01ح4wyºf<\x088<;>9\x02u\\:\n=Y;K^=\x11F_ygDX n\x07+/x=Ӂ\x16J];/x&\x1c:S<|==`̬=+6\x13c\x1f+6Go={=\x06<˺w=\x83s\x18wX\x0c\x05;>p<`|9P5<>\x1c~\x17Ǝ<\x1b2\x0b=R\x04\x16;G\x1cN4>\x02Czc;^<£\x16=Ad\x1fClX)ź\x1b}WuQrŔ<+<\x05<\x15\x133<\x02th0\x0e\x06<%N[\x11\x18\x0f:#G\x0f<;;5˖<\x14o;hny<\'<[ɼu(/5Ӓۯ\r=z~-\\:r\t;n<;";L:\x0e<6Y^;[>-<ͻ}=S1=v\n;PD=>pɱ\x01ļ+м7\x19J*\x0f;\x02ڼz6=b\x11A\x03\x19!8v\n\x0ek=[\x12\x1aa\t<1\x1exB~-\x1d=kwﹰ0\x11]О<ͻ\x19\x1a+-/=Bpq\x11tu[ݼ\x16+;:\x08=G\nJͼ1Ƚ\x01<tJ<\x01<\rE#ͼ$)r\x17\x04\tӼ^Yn=<.\x0c=Y=;I\x131m\x0f<\x08\x1dG\x04QW3<,\u07fc\x15;\x18)D\t=zH=\x0b<\x01=eWi\'w=\x06\x14;yt\x16yt\x16z\t`;c?=15:\x14ʻS=}[%伙D!=d\x0c7=QD=Ř<\x00n=LWY<\x18)IWlbr\'ʯK=\x1b8`LOg鸕*-=U%u(S/=zU:TW0혼E#M+B=q}\x0c*:=j@C\'tm@̌=qtO=v\x04<.=I<<\\rͼ,;Eo\x11;\x1a\x1e=\x10b;;e\ne?J=$]=\x06\x0cQf+T/3c9Ԁ=/ c;\x1e\x05<=\x08 a]<\x7fBE=\x0c\x03\x08*<\x1b\x06=bW<<*jQ\x0f<4;=rռ\x13Ƽ"b=>_3((;u>\x00;"<\x11\x88pmG\x00~<ڬ\'=!nZ\x12\x07=ș;\x0b1{=\x14\x00Ի;Z\x12B\u07fb\x00\x0eW<;4ʼ!\x15~5=!<\x10*\x16ʼ#O;!<<}K<\x1aY\x17\x02O;q=+<)ӏ\x087m}\x07\x15<\\B)=\x0e)ӏ3(>~\x7f!<4<Ԕ.\x00B\x00<4E\x11:4=mt<+!\r"=<\x19\r=!ȳ\x19\x0b\x1e;\x03\x06\x1a=z<\x1dg=7J70\x06=\x11It}\x0fD;\x06\x16<**f#;(gphz]=pm:\x07;gR\x14=\x0fμf(ݺ\x1c4c&=E\x14v\x7f\x13绡;\u05fc\x13v;\x08STsݻ\x12\x0780<2j7=\r;Y\x1d=\x1c\x0b>I<22\x13=^\x12@-)t\x17g>;\ue07d;;jt=\x7fc\x1b;\x01<&;<˄X4Gdq=p}<\x1b\nS\x0ekM=K<\x1a<ؼ1U]\x00\x0b:Q^"W=|\x16S\r90e1N.ټ\x008<|ڂ<\x00=\n\x1e/p@;\x03zB_{v;\x19;s;Y\x01= Y\x11<\\!b<_\x1f<\x02\x0f1SyW*=!O<\x12ƻ`^FH\x18=U<\x12;q\x12.d="<]=?rM]<1^=Ko\x1e\x1e:\x12A!y?2\nY}<<]l\x0b<{*\x03=!<\x12;\x03\'l\r`d;孧.\x11mSd|]\x1e5\'\x1b=\x11\n<1\x03d=\x025\x01=\x125Ѽ^;mQ^R\x0f\x02\x1a.=]J \x06;"Z;}=^\nx=O]£<{vN).\x08\x11D\x15^;4N<姿]\x00\x05t\x00\x0e\rTƈ\x01\x04={\x1c;=\x12μug\x03,%J=p<}G\x03/n\r<0i!I={)]N?\x1a]<{ϙ=^1Y\\\x02\x03<\x02\x0f\x11\ue5fdǃ/_\n=d[l\x7fԼ\x08{ƽ<\x04<^<䳏<0_I|M|U=1;8{%=Ql\x12;|bxCf>"@u<{&\x13{\x05;D;l:Of\x11|OQ1\x07<{==׆s=/m\x110\x00=@R="<(?Jla\t\rl\x10<5;>\\?Ъ1{=\x024>0:\x12# ]a\x05=\':e;w<\x1a_<8\ue9fc͏\x1b=\x02AB<\x1679\x19~a\x03~\x11=,g#\'=\x10]t;!\r\x03;\x17t\x08=z^IfZ\x1c(QKؼ5\rx`5P=Ly<{0H\x05=z\t<9AϿ.Ǽ\x11~a\x1a8h};tg\x17A\x1e=黥b;E`*;\x08\x1b;?1b=;V<\x16Yv\x10O1y;fyB;K<\x16\'\x13< :W<\x11W;*<貼z;<>"w%=\x17vE<"_=fyB=R\r2v\x11W\x1b]<<[<:\x1aļ\x06\x18\x19\x1f;\x0eYG=c\x1aû:\x13j\r=S<̛r$=\x10tӻd@=/\'m;ŏ=\x16Ɍ<>\u07fbpV<\\\x07$»hE\x1ckkC ּ\x08\n=\x16==꽼"ŏ.1><ؖ;{<)\x1d\x1c9p_T9\trx+X=\x11<<]B\x1aʅ;-b=E@b\\=\x1e=Ia[LwCY\nKN<[j$66=]\\DwܥZD=x+ػ˼\x11q)fҏƻt}A\\R_<;\x1cC;b{=\x1b$\x0fqb<\x00\x1de<:\x01h\x15V%z)b{=\x1a<\tg<0\x10r$\x1f*=P<\x1a\x18<\x0f%$B\x0cm=,ڻ\x0f%!\x13;F\x7fU;=&P<_3<*\x03\tB\x06\x10[++8s\tp9eLؼx<;\tR&\x1btT==X<\x1d\'=z\x11tټ߫lLFAJs(=V=95\x0fм:\x0cC%`\x1e;x\x03)\x1f\x17=kZ\x03w\x0fVY0=<;yL\x1d:<ڕ==\x10ۼ%`\x1e=\x13GV\x12ۃ˶\x01Ssuƈ4p<ܼ;Y\x15=|b*\x0b\x1e\x1a\x00]<\x00H<_tʙrX-=z\ro<\x05J(ň.\x18Q,=\x7f;J#=z$=\x7f<:ixLO=Uْ;?yJʊ;-ޏ\x07\n\x04~:\x11Dߢ\x12o[=\x1dB<;5ѼCc%5\x1aRkI=W,e\x0b7=QO=\x1dn@ûߘ\x1d=tB-O<\x1fH;\x1dC<\'\x12=z\tE=\x1aU]=\x04<|\x16?~\x0f:E\x1e\u05fc\x1e\n<\x7f`<\x13<-OG!GB<\x02t<\x1d\x1cU;\x1cũ;\x04=q<\\dh\x14#;?\x19=^w" q<;M<@\x1c:Z\r~=\x1ft-OG=U;= =\x1dG#:1\x10c-_0e\x17\x00:=6ې\x15zl;k+Ӌ ;o=ռjߢ\x12o[=\x1dB<;5ѼCc%5\x1aRkI=W,e\x0b7=QO=\x1dn@ûߘ\x1d=tB-O<\x1fH;\x1dC<\'\x12=z\tE=\x1aU]=\x04<|\x16?~\x0f:E\x1e\u05fc\x1e\n<\x7f`<\x13<-OG!GB<\x02t<\x1d\x1cU;\x1cũ;\x04=q<\\dh\x14#;?\x19=^w" q<;M<@\x1c:Z\r~=\x1ft-OG=U;= =\x1dG#:1\x10c-_0e\x17\x00:=6ې\x15zl;k+Ӌ ;o=ռj\x03=q*<&{;\x13g7鹼r=1gg\x15=<\x14e]=\x19\x0f<2;`\x17=z\x18\x08<\x13\x14=L4*\tf=3;\'\x7f\x1ai;\x0858;\x01%/:r/<`<\x0f\'G^;i\x17<\x15= @<\x0b"\x009y<\'6\r=4\x03\x1f=ӻl38ټƳ:Ja=k\x0f=E\x018\x03m9$ƴB=\x16< \x1a/;/j\x07<4\x02\'<\x02G\x0b\n{рR\x16;\x1a篼r\x17ݒ;jn\x1b=@$\x16r\x1a=8=\x08\tG\x06*\x04e8=mwH<\x1bR(=\x06\r\x00V\x14\x08\x02 q<\x17;uN\t?j:<7;nn\x0ep;\x0e=\r3C<)H\x14q\x16=|KA;\n\x17b=+9\x12";x<+\x06=ӼzgAsaTL\r3$3<Ʀ<-\x19[G=#v9=)=\x039\x01_\x1dDF2,=Vw;;\x14}j$ <\x1fjuD=X;=p3M=0\x13<[Ǽ(8=z -:\x06CS=\x05eJ(s\x1d.\x07Fga\x1dc8J<Gr\x082ϻY;@@+B<\x037*`+<\x19ؼ,KȓX=ͻ\x14:<%<\x19\x1f|&yI\x1eC\x08kVr<"\x1b\x1dl\x1c;Ϻ:;\x00\x0b\x12!\x01=\x1a?87%=mC\x02!*̚<,<./CA_HT`;u:<\x0e%=5=lyB#\x11^2\x01f\x07jHE夼;\x03;w&\x1c<=v\x10;w<]\x1c\x0b:<;xɼI|ZL!a\x18=!F"EK?g./7])<_\t\x08{J\x15/ha@<E<O};\x04E;@=\x02=s\x1e\x1d<_=,:2\x1b+1<̴λ7=e\x13\x15;b\x13Q.4:<Ȼ(;J=\x1bޕP\x12\x176<\x1dk=S=tI\x01a\'\x15=!F=Cp.=\x04\x03ӼҰ<\x1a\ueffb#\x15\x1aGc.nq\r|&=^\x19="\x0f<\\;.>O7<Ƹ;;4\x0e[6;\x17=;;< :\x7f(<\x1b\x100\nH/w9h<\x02;\x07;Ueջ9h@=I=<<<\x0e<ŕw<ۗ\x11\t=\r5G&Pܐ$D=\x12:=z\x7f\x11\x10;\n\r`\x08 \x7fr<"Iz\x1aֻ!dj\\a*\x15+<\U0004747cq\x19=\x02<\x12E\x02\x15+=!\x02%AL\x15=\x1dr=s]8"<\x0f:\x18#]OfǤo<$<=d\x00H";\x082;3|<\x13ck[`}\x199l!<\t\x10y-\tH=\x12E9\x15@P\x0eM<\x19D<\x15@1\x7fyk<=d=4!;d\x0e}~\x1f{ý$\x12<j/!\x07=d=\x02<[)ү+=n8<[n&a\x07\x10\x12zP<@\x16Fq*=8<\x1c#ߌb\x03V}<\x04\x0b\x192\x1bA= qF16ﮢ;4/R<\x10<\\;VΧ;\x086=xx;Z =\x15+=6Hj<ϋH<\x05\x15:BXB,$.EƼ(_=\x19Z\x0b;ùc=\x0eVITRм{Ȃ\x06/\r\x0b=Y;R\n\x0c<[y<\'J\x19ZK=r=ۓ.yG <\'Ge<\x8d,\x0c)Kx;u#=;aQ9;\x1a\x0f\n="ڼsJ\'19N{\x038bd\x13\x02\x0b9F-Y=a\x1e<ߢ=\x1c<:z%<[2:g\x06ʮ0}Z=}\x07<<\x0e;?Q<ģ6\x11\t;Dz\x16\uf0bcaJ=<%f;\x11;t\x02\x12v=<5;F`Y\tRǼp8:F\x155D9\x028=@3ݼ\x16ڏU\r#W=\x01ϼa;MW\x04Zrv=*;\'=S\x17DԻ/a=\x02+=/P=\x16g=#\x1c<%f<<+<\x02+<\x14\\]=\x02ڻ"!=\x15)\x12<\x12z\x14<\x05=NȼI>ܼ\x16ڏ\x15x6\x181xӻ4<\x19=K#=\x1dw#=ռ١L5A,;;\x08T\x14Va=YF\x19=pD<2;;a\x08<\x10£;\x0e[<|\x1b9L+?=M~KZ

\x16=u\x12=3:<̽<;PJ;;X\x02wA\x7fή=|\x07\x1b;j\x0f]\x12\x1dʀ;qI=\x17B\x05\x14=2\x07Z<\x05i<*5\x15;ud\rԦ<-+\x02\x1e<[<;=Uݏ}ӻZ`=\ru+=༞P=\x17f=<\\\r<<<`\x18,<\x13a]=ܻk=)N n<\x04\x05:\x03w\x16;c߿<\x1a8;u\x04ꤸ\x03u\x0e\x06:3[Ks\x16<\x18\x0e<\x08:2<*\u05caϪ\x1b=-<п=E;>uJy\x11*6V\x12\x10S=\x1fdfoZ-;)¤\tK$s:=<4ߥ\x1e㼨"3\x17A]<=ʍ\x07Gлv0Z=[A9OD!y<\x17\x13\x00<:<1T\x0e\x16(q<\t=L=ΡTBpռ١L5A,;;\x08T\x14Va=YF\x19=pD<2;;a\x08<\x10£;\x0e[<|\x1b9L+?=M~KZ

\x16=u\x12=3:<̽<;PJ;;X\x02wA\x7fή=|\x07\x1b;j\x0f]\x12\x1dʀ;qI=\x17B\x05\x14=2\x07Z<\x05i<*5\x15;ud\rԦ<-+\x02\x1e<[<;=Uݏ}ӻZ`=\ru+=༞P=\x17f=<\\\r<<<`\x18,<\x13a]=ܻk=)N n<\x04\x05:\x03w\x16;c߿<\x1a8;u\x04ꤸ\x03u\x0e\x06:3[Ks\x16<\x18\x0e<\x08:2<*\u05caϪ\x1b=-<п=E;>uJy\x11*6V\x12\x10S=\x1fdfoZ-;)¤\tK$s:=<4ߥ\x1e㼨"3\x17A]<=ʍ\x07Gлv0Z=[A9OD!y<\x17\x13\x00<:<1T\x0e\x16(q<\t=L=ΡTBpҼH;q&>R\x12Wfw\r#a"HQy1\x0fJD=\x04Ce<\x027\x17;2rDpB2Ғ5\x06\t=o[=?\x1a\r;3\n/&=Z\x12!DyC\r#kRwA=\x16-\x15༸<*=:틼@riX=K\x14\x14-=e̼< e=g:ٺG?;t=:8\x134>\x081\U00088c3c;\x19:<\x19F\x027\x17Z\x1f/<\x1cG){<\x1a\n`-\x15\x1fqL`=UMѼ\x05[HLד;De;K5=,<$\x17o\x1d¸g1\tuT,_;\x00\x1033A33=xetY>-\x15S\x1eˣ<3<\x0b\x0f=DF|l<\x1d\x14=k c;gڸ\x19|\r<\x19"=O=\x0f\x02=\x0c\x0e<\x19y<\x01{ʼQ\x15k<^5\x15ˣ+=\x07!==\x12\x00;ݍ⯅\\Ůz< \x02\x07!r\x12=}ּˣ@л\x18\x0ek=@O=\x03w;W<\rG<]s̀|\x15D&{Z;\x0eB="=Tcˣ;\x03=¦g;@O#=\x17cpn\x06/<\x0bޮ0*\u0558#,4\x1d\x0bL\x05\x0b\x0f<\\5;\x1a=a:XPO`F4m=8=j\x08=c \x04=Ȼ.3/K;AJU71\x02=\x07\x00~;輺͓\x12\x1e;\x06<\x02SҐ)=\x07!<\x01F:\x11< \x11&\x11\'ǜ\x16=A\x1e\x0c\x04=-Gy(<㵻?X.\t;\x14hܼ0=ʛH\x15#nnE_S<\x148\x05;g\x1e\\ļ\x07!<\x1cX=C:\x13I\x18ecH;<\x07=\x1e==\t\x1fRAzC<ɭ\n;^5?`\x05gʻ?X\x0e%3?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 49.6279794043577, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;\x16\x08ڸjo;L=|\x1b\x12~<4vB]ȞI\r\x16Ǽ\t\x14%jF<=3L6\\ 6=3G㼄d\x0fAm=)ϼM\x14gX\n>G<仒\x0c;=\x1d仟3\x13HS0bc=u<\x00\x01p0Iߴ!\x11\x16=\U0008f53cV2<\x073\x0f\x0bЎW<\x1e\x05b<\x164˺k\x1d=ը\x14=l<9~B4#\x18\x15V\x14`r=\x15=.d-\x0f=\x19=If: \x18=\x01]uY抻l\x18ʻ]3[P\x11& v=\x1d;E-uG0=b\x0e=?8@C(5<押 t;;\x1e5;=8Q;:\x14\x11Ѣ;8=NX\x129dwt\x01=OS?=ŦB=ŶIߴqO)0]\x03v:l۞F?=\x033\x150\x12=VCMI\tR<<<<ٽ=`5\x08/x<[*`a\\dDnR<\x04=\x18<%S\t;Iߴ{=\x11\t{\x013;}?\x0e\x1c<%b|;@N5^nqO\x14$\x1e;x\\z,=|\x1b;9A=ڮ<^<\x01;e#i<_1*\x18;:<;R\x01Ec\x00\x07 2U7d\x11={\x051B;+\x01\x1f=(rq;\rt\x07=[:\x03Ey\x0fkF=<7);20茼M\x1f\x0c=^\x10E<ǖü>\x07a3nf\x82nfXȃ=S\x15\x06뻄=$r\x004\x13\x1b|(nf\x02*&);\x13_<\x0bʻG7\x0f\x05=\x0c!:A\x0b=B;n\x1f;=q<0\x0b9؉;m\x16- \x1a_Tp\u07fcv)W?;c\x19\x16B=%HM\x14=S;<;|A4=\x19<\x1fͼz?;\x17\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG7Buٻ6\x1dv=Db<\x1bE;_}:\x83I&\x14$_D5=(\';6\x1dv<\x11eo=%r=F\x04+:L<Ҭc<;5㵺\x0bJ{\x1br<ڋ9_\x7f+<<γ3=ʺ<<\x04H\x13?\x11;^l<3/be<\x08K=\x1eG<$s\x14:\x1dd¼tdӬbT=|a;Z\x04}$=:]c4;ܺ<8dǼ\x023:!\x04=7\x17<2]:;OW\x1c;ëd\\O\x10=;\x85=+9\x1eq3<\x18;vs#k:=фckkI+\x1b=_#\x19s,R]<2\x07\x17\x1b;÷}\x0cԻ|WFI=I?\x1b\r\'\x10=7m;\x14V݃<ӻ<˴-4E\rl?V:Î=γ;R\x1c=\\\x1e/\x14<0\x05|ȼj:<\x18<*=Y<-t;\x02\x1fb\x06<^\x13<\x0cY}\x0c\u0600\x1a:\x01\x05#=/=\x08=Nj|\nv<2imh\x10[J:N\x12:c켔C\nh=Ք=ݍ=p<\x15C/<{ǏL9RqM=\x1b!<\x17#:@<5<0\x06h<\x7f<\x16\x0f9:\r\x0cкX:\x00&=&`]=\x18K\x03_\x02\x0b\x12FwGg<\x04ix>7\x1a",o\x1d\tN")E\\<\x05\n<\x14H3V;\\<\x01>ƻ\x05\x05n\x07=\x17#\x16=ȼ\x05\r3\x0eN;\n=J:=)l;<\x04\x10=\x11&V\x08<"9&<\x168.T7\x08~=s3=/j6\u07fcisVqJ$\x03ʆ9*:\uf237<,ۼ\x158\x05\r87t\x00=kٖ:Z]R7\x04?<\n^I~F<|\x1d\x12s\x1cl\r;1\x13=<\x04E\x1b<|4D=o<͝\x12V=Ӎ=%\x06=%J=\x18k< \x0e\x0f\x1c\x1a\x10c˵<\x15ഗ\x15<\x17\t{~=/+!#\x18\x1b@8\x12Bi<Ƽ5\tc;إK7\x08\x00>DY;)\x19ZOz<\x15=UqJnI<)υ\x10o< <̻\\\x11\nxhO\x17;`߫\x0b0Q#<\'\r=%ɗ-qD;.h!={\x1f\x16<\x18C\x1f;`:\x0ex2<\\So\x03=#PA\x0er!=\x1bټ\x0b=\x198\x12x;W\x01=,=\x028,ኼ,^&\x04R\x12=Rר!\x04ӓ<\x03ZBG<^;$e\nި<~(<\u07fbr\x04Zwn戽8#?<\x12x=6\x05\x14;T!m;Z,κ=)<\tA6G[=\x13bS\x10&', 'text': 'The two cultural pillars of the Spanish and Anglo culture, Miguel de Cervantes and William Shakespeare shared the same times, and almost, the same day of death, April 23, 1616. Both, lived fully, as we do today, in tumultuous and tempestuous times and shared it in the tragedies and comedies coming out of their imagination. We, their heirs have adopted, used, and transformed their legacy -our language. Also, we do share that history, one of imperial dreams and nightmares and the expansion of a global Eurocentric culture that transformed the globe during what we called modernity. They foresaw such forces, those that unleashed our own wild and turbulent times. Art still creates out of Cervantes Don Quitoxe. This paper was commissioned for the first of a number of exhibits produced by the Artists Studio Project (ASP) for the annual Quixote Festiva, a nine month cultural adventure that takes place every year since 2015.Save to library[Download](https://www.academia.edu/attachments/64930199/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=44495782)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[![Research paper thumbnail of Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://attachments.academia-assets.com/49530053/thumbnails/1.jpg)](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)[Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultur... [more](javascript:;) In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultural loss for more than five centuries. Today, within the framework of global policies for open markets, the community has developed new strategies or resistance: documentary video and community radio, public and community based performance, and symbolic uses of ancestral objects are threaded with cosmological knowledge. New media technologies and collective performance are part of the strategies that indigenous organizations in Southern Colombia are practicing in order to close the generational divide, build communities in resistance, share, and make visible their struggle. The emergence of the ACIN\'s Tejido de comunicación and the"kiwe Ten\'za" (the Indigenous Guard) are the result of this process. Developing a communication platform while fighting against resource extraction operations, illegal crops, and land disputes, the tejido and the guard inform and protect Nasa communities targeted by local, national, and transnational forces. The Nasa are actualizing their tactics through a combination of historical means of resistance (military and political), by strengthening their core values, and by processes of autonomy, education, and circulation of inherited means of governance. Miguel Rojas-\xadSotelo is a Colombian art historian, visual artist, media activist, scholar, and curator. He holds a Doctorate (PhD) in Visual Studies, Contemporary Art, and Cultural Theory (U. Pittsburgh, 2009). Miguel worked as visual arts director of the Ministry of Culture of Colombia (1995-\xad2001), building participatory cultural policy for the visual arts in his country, and he works independently as artist, curator, and critic ever since. Currently works and teaches atSave to library[Download](https://www.academia.edu/attachments/49530053/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=23676786)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[!', 'ref_doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/duke.academia.edu/MiguelRojasSotelo/index.html'}, Document {'id': 'test_doc:7ae4106a-10a0-40f8-8cc5-971e807c885e', 'payload': None, 'score': 38.53360199092106, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '235942', 'document_id': '71dea93b-9b52-4783-bcd3-f27c0c643427', '_node_content': '{"id_": "7ae4106a-10a0-40f8-8cc5-971e807c885e", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71dea93b-9b52-4783-bcd3-f27c0c643427", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "hash": "0e1208392f260a647322efa9a480d331435548499b5ad3056d939be3965d5865", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3192, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf', 'vector': '\x16\x1c\x00ռtW듼\x0c]UX."Ѽkũ<\x16߰\x1c\x08ʼQ0\x03;0\x08rxڻI=hk<\x16\'=ˌ<;\r=:C=ݔl;;lW;̂i;Ab={x\u07bbQռ<<\x11\'%;̋\x070*n;c=\x02Ak<\x0cw\x1d\x189E<>7\n=䝁<0.wܿ0\x08.\x0fμ#M\x04C\x18\x1eݹ\x0f==<\x08/<\x1f<{<\x0e,0=>7\x06\x12=yW-g8\x01\x11\t_<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&KYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 74.56712697123471, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19<\U000a3f10,#\x12o\x14JT\x1f[\x01\x0b\x04\x16=F:;\x00\nw;3K=\x1b\x7f\x7f7_\x07<\x02\x0f;LOP1;[\x018m@<\x1eB=(\x04<\x10c<\nw=䠑:(Ӽ\x08\x1fļA;K;*!=\x0e_Ȇ;"\x1dw˥s<\x04\x1cJ\\=\x04qغ\uef25ߨq^;07=kؼ\x03k=|\x0b<ȆJ\\=ZB\x1d5S<-8\x1c;1K\x18\x03)?\x16=du\x0f\x15<ؖ;Q?\x17\x1f+\x00\x01=+\x16*m=&t\x1cV<\x13ykڇ=,\x1fMe\x0eO<\x04<1G\x12%\x02\nV\x1c=$<\x00&ܵ9"uێ\x14v.*\x11=HԼ}\x14)\x07\x0bG=aޠ!;r仱;T!=OO<\x1c;b;\x18/Z\x01\x0b=ło<;?=LlֿX<\x1bY5>\x10g\x1e<7;~\x04q\x16,\x1a+5ͼj$f\x7fq<=U<\x04q;\n9F; C~;n;C\x0b6!\x06=GG)=Z$%\x08e\x05\x1fZ\x12=IjV;<;|>=\x1fO\x10`A];\x0c[\x03=Hok\x0c\x1e=I;\x1dҥ<\x06\x07?B=p\x10=<@\x02\x19\x15oʷ<\x05;=G\'=\x1c\x0fjH<\x1eMT\x1dG<;\x0c\t=T]\x1beX\x06=\\\x03;ҥ=U:\x0c~! \x0b\n=mXü;\x13)j\x15i\x02%\x01v9\r@=ۄ\x16F=\x16,9\x17hft2Ȋ*;k=n;ۼx>9=Ye98\x1b<%w\x13\x06\x10<>=\x12o̻Vɼo<\x07<:&=k\x1fe\x06\x14=\x07\x15Q\x11=r/<\x0f=g<\x0f(\x03=\x052X"`<\x16=̖?;<2s\x04;J֡<\x14ּ\r<1Mw=ۻ\x1c<67\r;6r`J[\x19.=<2з|<\x1c:P\x16z;IZ\n=*xEc\x11,;67%]̖?`\x04 =o\x10k\x12\x16eͼW\\@<|c\x1d&\x1c0=^.p^s( %<\x11<=G9:\x158\\<:1\x18\x01l_B=\x00=~(=pi<(<\x0c2=\x10<=\x1a8\x15\n\x7f2|<*\x12\n1<_i\x18\x06_`\x1c~<*<>,=*\x12żƛ<ߓ0G<\r&=\x1bӻ\r\x07\x1b\x15=\x04\x18{Z=;H<돫;j\x1a<ؗ; <ε\x00WHND3<ۖ\x1a-=1<\x00ɼn`<2\x0c"; 0H=\r:=\x1d4;6\x10<0\u07bc0,]\x1d98=Q=\x148\x19"=;@u<6\x16Iq\x15DhT\x11f:\x17\x12m=ƕ\x0e.<\x02=8B<=̼F<\x1bbF=Sw"=[\'=)$p<\x07$h=+xM\x06<],Qq\x1d<+\x0b\x0e!D<[F<ݩ<\t<@u\x1d=֛\x01mIob=Y\r<\x1dW\x08#=Ėu\x18&=<\x18`p\x17=\x13\x1f<\x148\x19<\x15:w;4+\x0b=3<ݼc)=\x02I\x15\x1aSҐ\x05ll3䎼T&\x1d=d)˻M3;\x18cH=\x9a<-Z6=<\x0f(<@R\x16<\x1bX\n;@@R̮;\x0e\x04vpX\x00=\x1964\x07\x06Cx\x00I<\x14\x7fA8i<\x18{=:\x11ɻ\x00<^h<$qqf<\x1bbF<\x06+.\x05;ax\x17*B}<}Ƽ=3\x11B<[#\x17}K9\\b=)ۼAT=X;\x05Ij\x08,.;+o\x0c<={<\x19QžGuu;sy3՜Z=\x01=\x1cE<\x16O\'<\x04<\x10=\x08&;B[C\x0f&}=(\'nOU\x1d\rm#5]<\x1f=gg#\x1b/ػA$+QntOUuɺś;\x10FX<\x08XP\x1b\x01Zk].>:\x7f=G\x11=\x1f\x194=;\x155\x0e:ܹEvOռ\x1c1\r<==~<\x0e<=h\x17=T[\x02\x05<Ѳ!N\x15x;=h\x17=@D\x08+\x11\x08̗5ٛ;V$<~);\x1e`;>ټ\x16\x0cv:\x03=T;\x18<\x08\x07{\x0b<0:&8;!=Ѽݹ\x0c#\x03WF֬\x0e\x013p\x05<*[1\x1c<92:@<\x1d;\x02!%<(\x17}R"\x1av<\x01hżk\x02P=oZh\x00\x0cguI;<;-:f,.R<;M.\x1c:T\x0c\x08=K\x14|.=#O\n-hZ`&6\x0c\x1f=Ty\x1a@1\x122:;;}R"=HgRmQ|ͼO#z,\x00#+\x18;\x1d:\\/<\x17s={\\5.>guI=;X;eTZ=gz\x15efB?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 49.6279794043577, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;\x16\x08ڸjo;L=|\x1b\x12~<4vB]ȞI\r\x16Ǽ\t\x14%jF<=3L6\\ 6=3G㼄d\x0fAm=)ϼM\x14gX\n>G<仒\x0c;=\x1d仟3\x13HS0bc=u<\x00\x01p0Iߴ!\x11\x16=\U0008f53cV2<\x073\x0f\x0bЎW<\x1e\x05b<\x164˺k\x1d=ը\x14=l<9~B4#\x18\x15V\x14`r=\x15=.d-\x0f=\x19=If: \x18=\x01]uY抻l\x18ʻ]3[P\x11& v=\x1d;E-uG0=b\x0e=?8@C(5<押 t;;\x1e5;=8Q;:\x14\x11Ѣ;8=NX\x129dwt\x01=OS?=ŦB=ŶIߴqO)0]\x03v:l۞F?=\x033\x150\x12=VCMI\tR<<<<ٽ=`5\x08/x<[*`a\\dDnR<\x04=\x18<%S\t;Iߴ{=\x11\t{\x013;}?\x0e\x1c<%b|;@N5^nqO\x14$\x1e;x\\z,=|\x1b;9A=ڮ<^<\x01;e#i<_1*\x18;:<;R\x01Ec\x00\x07 2U7d\x11={\x051B;+\x01\x1f=(rq;\rt\x07=[:\x03Ey\x0fkF=<7);20茼M\x1f\x0c=^\x10E<ǖü>\x07a3nf\x82nfXȃ=S\x15\x06뻄=$r\x004\x13\x1b|(nf\x02*&);\x13_<\x0bʻG7\x0f\x05=\x0c!:A\x0b=B;n\x1f;=q<0\x0b9؉;m\x16- \x1a_Tp\u07fcv)W?;c\x19\x16B=%HM\x14=S;<;|A4=\x19<\x1fͼz?;\x17=(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x12<\U000a3f10,#\x12o\x14JT\x1f[\x01\x0b\x04\x16=F:;\x00\nw;3K=\x1b\x7f\x7f7_\x07<\x02\x0f;LOP1;[\x018m@<\x1eB=(\x04<\x10c<\nw=䠑:(Ӽ\x08\x1fļA;K;*!=\x0e_Ȇ;"\x1dw˥s<\x04\x1cJ\\=\x04qغ\uef25ߨq^;07=kؼ\x03k=|\x0b<ȆJ\\=ZB\x1d5S<-8\x1c;1K\x18\x03)?\x16=du\x0f\x15<ؖ;Q?\x17\x1f+\x00\x01=+\x16*m=&t\x1cV<\x13ykڇ=,\x1fMe\x0eO<\x04<1G\x12%\x02\nV\x1c=$<\x00&ܵ9"uێ\x14v.*\x11=HԼ}\x14)\x07\x0bG=aޠ!;r仱;T!=OO<\x1c;b;\x18/Z\x01\x0b=ło<;?=LlֿX<\x1bY5>\x10g\x1e<7;~\x04q\x16,\x1a+5ͼj$f\x7fq<=U<\x04q;\n9F; C~;n;C\x0b6!\x06=GG)=Z$%\x08e\x05\x1fZ\x12=IjV;<;|>=\x1fO\x10`A];\x0c[\x03=Hok\x0c\x1e=I;\x1dҥ<\x06\x07?B=p\x10=<@\x02\x19\x15oʷ<\x05;=G\'=\x1c\x0fjH<\x1eMT\x1dG<;\x0c\t=T]\x1beX\x06=\\\x03;ҥ=U:\x0c~! \x0b\n=mXü;\x13)j\x15i\x02%\x01v9\r@=ۄ\x16F=\x16,9\x17hft2Ȋ*;k=n;ۼx>9=Ye98\x1b<%w\x13\x06\x10<>=\x12o̻Vɼo<\x07<:&=k\x1fe\x06\x14=\x07\x15Q\x11=r/<\x0f=g<\x0f(\x03=\x052X"`<\x16=̖?;<2s\x04;J֡<\x14ּ\r<1Mw=ۻ\x1c<67\r;6r`J[\x19.=<2з|<\x1c:P\x16z;IZ\n=*xEc\x11,;67%]̖?`\x04 =o\x10k\x12\x16eͼW\\@<|c\x1d&\x1c0=^.p^s( %<\x11<=G9:\x158\\<:1\x18\x01l_B=\x00=~(=pi<(<\x0c2=\x10<=\x1a8\x15\n\x7f2|<*\x12\n1<_i\x18\x06_`\x1c~<*<>,=*\x12żƛ<ߓ0G<\r&=\x1bӻ\r\x07\x1b\x15=\x04\x18{Z=;H<돫;j\x1a<ؗ; <ε\x00WHND3<ۖ\x1a-=1<\x00ɼn`<2\x0c"; 0H=\r:=\x1d4;6\x10<0\u07bc0,]\x1d98=Q=\x148\x19"=;@u<6\x16Iq\x15DhT\x11f:\x17\x12m=ƕ\x0e.<\x02=8B<=̼F<\x1bbF=Sw"=[\'=)$p<\x07$h=+xM\x06<],Qq\x1d<+\x0b\x0e!D<[F<ݩ<\t<@u\x1d=֛\x01mIob=Y\r<\x1dW\x08#=Ėu\x18&=<\x18`p\x17=\x13\x1f<\x148\x19<\x15:w;4+\x0b=3<ݼc)=\x02I\x15\x1aSҐ\x05ll3䎼T&\x1d=d)˻M3;\x18cH=\x9a<-Z6=<\x0f(<@R\x16<\x1bX\n;@@R̮;\x0e\x04vpX\x00=\x1964\x07\x06Cx\x00I<\x14\x7fA8i<\x18{=:\x11ɻ\x00<^h<$qqf<\x1bbF<\x06+.\x05;ax\x17*B}<}Ƽ=3\x11B<[#\x17}K9\\b=)ۼAT=X;\x05Ij\x08,.;+o\x0c<={<\x19QžGuu;sy3՜Z=\x01=\x1cE<\x16O\'<\x04<\x10=\x08&;B[C\x0f&}=(\'nOU\x1d\rm#5]<\x1f=gg#\x1b/ػA$+QntOUuɺś;\x10FX<\x08XP\x1b\x01Zk].>:\x7f=G\x11=\x1f\x194=;\x155\x0e:ܹEvOռ\x1c1\r<==~<\x0e<=h\x17=T[\x02\x05<Ѳ!N\x15x;=h\x17=@D\x08+\x11\x08̗5ٛ;V$<~);\x1e`;>ټ\x16\x0cv:\x03=T;\x18<\x08\x07{\x0b<0:&8;!=Ѽݹ\x0c#\x03WF֬\x0e\x013p\x05<*[1\x1c<92:@<\x1d;\x02!%<(\x17}R"\x1av<\x01hżk\x02P=oZh\x00\x0cguI;<;-:f,.R<;M.\x1c:T\x0c\x08=K\x14|.=#O\n-hZ`&6\x0c\x1f=Ty\x1a@1\x122:;;}R"=HgRmQ|ͼO#z,\x00#+\x18;\x1d:\\/<\x17s={\\5.>guI=;X;eTZ=gz\x15efB=(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x12\n-֞@C\x0fqI<ҠNL\x07=\x7f%:nмAcM6<7Յ\x01Qʧx)ެ\x1b=\':\x11\x1f=Y[k\x06{.v;:%Э;$t\x07\x1c=F*z\x0e\t8\x1d\x18\x19<~><\x1e\n;{\x1dڼ|M0+<=R<-7<\x03=.\x05\r=R\x0e\rR<=\x03\x01߿\x16R=A<\t$P:_=\x15\x16=l\x1dY-<\x01Q)+%=šrٻߦ+G\x08=J\r\x1c;dZ;\x008̡<[\x7fy;X\x1dF\x0cFq\x04\x15\x07;0)\x1b|\x19\x13;V4=\t\x029z<;"; <ސ<6l\x1dKOO.\u05fcT\x06\x0e\u07fc\x01Q\\ؠ<\x16i=\x1eu=\x17FE=၀Msr5<\x08u\x1f=\x04\x01U<\x1b*<Ɏ\x0f=fT\'=<[\x0b\x17ӂƼZgԼq\x0e=";P:=ǺxR?:N3\x01=Ӽ&V@\x03Q:Düt<~ӂƼE\x16=J.i;<(\x00<\x16\x14<< 0<۹<:È;ӱ.;\x00ms\n=~g\x04<;N!s<ĉ|;Y\x16j`\x1e;^<\x111=7\x05M\'<.<,\x10DO<', 'text': 'Professor Kisha N. Daniels (Dr. D) was the instructor of both EDUC 101 Foundations of Education and EDUC 204 Educational Psychology, the two courses I took in the 2020 fall and 2021 spring semesters. She adopted a strategy called flipped classrooms (Nechkina, 1984), which is a type of blended learning (Friesen, 2012) requiring students to complete the readings and learn contents before class, and have discussions instead of listening to lectures during class time. Before each class, students needed to watch Dr. D’s pre-recorded lecture videos and read materials to have an overview of the class content. Then we filled in a note-taking guide to reflect on what we had learned. Finally, we attended the class to have in-class discussions, group activities, etc.\n\n\nAs a math major student, I was used to listening to lectures without speaking a single word for a whole semester. I had even thought about dropping this class after I read the syllabus! However, Dr. D’s class opened a whole new world for me. Since then, in every class, I would excitedly click the “raise my hand” button in Zoom—I could not wait to share my ideas in the heated conversation.\n\n\n**Optional Attendance to Synchronous Classes**\n----------------------------------------------\n\n\n2020 was a year of chaos. Coronavirus and the international travel ban are distributed to students all around the world. It brought many uncertainties to our lives: unreliable internet access, different time zones, infectious outbreaks, etc. The school year taking place at the same time was obviously not easy at all. To ensure class quality, some instructors took mandatory attendance for those who were able to join the synchronous sessions. However, Dr. D was an exception: she made her synchronous classes optional, even though it was discussion- and activity-based. I was wondering why she did not make it mandatory, how she provided a relatively equivalent learning experience for those who couldn’t join lively, and why almost all the students still came to the synchronous classes.\n\n\nDr. D believes having a certain level of flexibility as a professor is always difficult, but educators should still manage to do so since it is not the reality to control everything in education. Students are adult learners and should be treated as individuals. They might have different learning preferences and face different situations. Giving them flexibility can be a form of warm support through hard times. For each assignment, Dr. D prepared two versions (synchronous and asynchronous) with detailed instructions: if you can come to the class, then you can work in a group to do the assignment; if you cannot, then finish these sections of the assignment as equivalency. By doing this, every student was fully supported.\n\n\nAlthough Dr. D’s synchronous class was optional, it achieved a relatively high attendance rate. To tackle the low attendance rate problem, Dr. D invited students to relate their own background knowledge to the course concepts. If some students did not come to class, they may not have a chance to realize how educational psychology relates to their everyday life, and what their peers’ educational experiences are like. Once students agree that class is the place where they can learn more, it will become their motivation to attend class. “Students are adults, even my freshman students. They are starting to figure out who they are in the adult world.” She, therefore, lets the students decide what is the best study strategy for them.\n\n\n\n> This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9aefe5bf-1e1f-4b31-ae11-5874c5393dbd', 'payload': None, 'score': 11.807439363540126, 'document_id': 'index.html', '_node_content': '{"id_": "9aefe5bf-1e1f-4b31-ae11-5874c5393dbd", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/lile.duke.edu/blog/2021/12/flexibility-adult-learners", "filename": "index.html", "filetype": "text/html"}, "hash": "c12bb19afe9091cf6fafa09e70f8b388092e96d62da508203161dace2cb3af57", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a427db5-ac02-4ad5-96b7-8dae766073a9", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "da61cf9bbb421fc985a175359a38bfee69742fb1d22c5e91ab9fc51a580553c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28a6432f-f95e-4e16-97a2-bc96b30e43f2", "node_type": "1", "metadata": {}, "hash": "734cbde4b860d7eb88633b64f3ce5635c61c46f1eee2dd8fb3ea547d481396b2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '@..\x1a!>\x02L)=<¼LR9"-=f2\n\x1f8;I\x13\x06̼\x19E;ǁB=^\\"Ⱥ)=)@缚RV\x1bJ܋g\x1f\x18e\\s=|\x0e<\x12\x19k 0h;o\x06\x08=^`:62<\x0eM\'=<\x0b\x1b_=59?/\x05\x1f[=I\x04\x7f<\x0b\x0e[;\r Qp=\x1e_+DySz\x14:D4;e:<\x15uN=={;\x1eF!8<{\x15\x03J\x19\x0b\x1c;\x12=!<+DP̥,\x10.\u07bc+-<1\x15=\x00k<\x01=\u05ce6-\x11֚ȼ0\r`;nB;\x1e\x19<Ѝ;]<*\t;\x1d*|$;^\x14SGJB)_\x05\'\x14\x03X8\x1c%=eX=\x13<{z=%W39L\'߷{:IC2=E(<\x1cAVR\x7f\x01KR\x02\'\x12<\x0cI>\x00\x19R<<^<@Pg#=C \x08=ߟ<.<һ`d#\x16<\r<-s\x0fϼ =\x14fڙ;\tB4<\x08 This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000\\).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:8164a0d1-1226-4de6-8d7a-39699df9bbb1', 'payload': None, 'score': 7.2496097371351755, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2826244', 'document_id': 'bfe60902-d299-44d5-af13-f68c06604fef', '_node_content': '{"id_": "8164a0d1-1226-4de6-8d7a-39699df9bbb1", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfe60902-d299-44d5-af13-f68c06604fef", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "4423c15f0262081da99b5983d0c0d4888dd19d09a77408a79310122494d98daf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1101e903-21fb-4f1a-a913-cd4d0db09034", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "a0ce698216bb12351e6c53c1f0a2e4b69df29c33d5af55c6ee316510f7e616c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc4f1340-3c4f-489a-ad6f-ff61fc6ae5bb", "node_type": "1", "metadata": {}, "hash": "f086c88c19abfef10f0e7100cf75308dc71e1c1a8b0f65ac1fe88aa3b3693b3a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3197, "end_char_idx": 6819, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf', 'vector': '\x10\x1br\t\u07bc\n}\x19\x02JG<;JT}\'j\x16q<\x0c\x0f\x03!:ʊ\x0f\rnQD;?#M;O,<ⶊ<\x16q1<\x1e\r軛ٲ8-}Իg\x0e=\x080?#M\x17M4\x0c:Z{\x13<\x1e+!5(r>*x~=J<姻J:SVkB\x0c:=\x1d\t;\x00<\x04\x12s\tB1j=s\x195f=ӻ-<1GŒ:[.\x0cb =$k\x0bJ<\r=姼\x1b\x08<\x04)\x05\x06=IWD\x00=˼\x17o\x06+=Ą=\x0e/\x0bl,<_\x0b<\x07<{\x0f;Ym?l:=dp@<{<\tZ̼\x12\x0c\x03=\x1a\x01"=]\x0c:;\x05=ޓ\tf/y\'=\x1aָ݅\x17\'<\x1be<\u0602;A\x0b*a<ɳ<>\n\x15\x7f줼~+\x0c:R]=\x14\u07fc\x0b\\<ʽ\x07;k\x111G\x1f\x104jOn;ej0A=F];\x00\x1e;\x080"6V\rr4\x1ad\x05u/<+8;\\\n6=r q<ȝ\x12=\x15\x0e\'#=A\x1dⶊtlлS!m=\x1bU<2\x14=`\x1b8»\x1c⻨ӌ],\x13,&r>*"L<\t\x10d|\x0c:$:\x07<8T\x00\x05=\nL=lv;ќ\x12\x0c&)\x01oxE\x10g\x01D\x18\n:4Q컼c;\u0bfcч&ثF<⠼ּ\x0eO=ܯ;FV=\\<\x03I㼋7\'ٕ};\x7f 7=\x1b=\x02<\t༜뻘NmB\n\x13㣼fһ;TW5=\x02;0\x1fD;뼮<$;\x1d =>"=/"==\x7f\x19\x1fʼݎ廬C꼈\x1fLoU/:#t\x1f{=(#=-<܋;+E>;\\G\'x\x17\x13kΊ\x027s5T=\x1eV\x0e@\x7f 7IϼxI/ͼ;\x0f=[<-<\x06\\+<\'g;k6<3\ue63b\x13=u=\x18)b\U000bb508B>"=\t=\x1cwC=#\n;nop\x05;%=I\x1e=8Ƹ~vw\\Uȼb@z6Ja\x0fq1:țJ=,~\x7fȼ3㊻\uf7bb\x15;=`\x04\x06<\x02\x00E< “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom \\[when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs \\-animals – photosynthesize, so it is eye\\-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step\\-by\\-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:3813364d-5d0b-43b2-8b98-89f90953c7b8', 'payload': None, 'score': 7.140919556971079, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67846', 'document_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', '_node_content': '{"id_": "3813364d-5d0b-43b2-8b98-89f90953c7b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c67a53bb-8127-4a54-8b71-e1b38caa9ff1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "19d045065fa9deb404ca09df5d278e17246849ecf0ad229013a4f1b8ebdf6baa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44dee6a0-7eb8-4a9f-96db-c955c8a4af03", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "d32b9c44375b348bc666ef0aec15d9716110288a771b9adacf9715e299e14eb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "db799e37-46c6-4470-b828-20f113c1c7e1", "node_type": "1", "metadata": {}, "hash": "95ca862141792c058376d879a3bf777f6a55c3680aed266ff9ed2bdabe4d79eb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3981, "end_char_idx": 8579, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', 'vector': 't4-N\x19\x16\x04\x06%3\x0b;)R;Xv\x12@:\x1aXv4!&m\x08<(0j=\x0cr뺚\x00 \r9:\x03R=y௺\x00F\x1e<\x1a;;\x16\x02:->=ۜ<6\x11=VI,aK)Aнx<;)<;<\x1a,=\x08|WA<~y/=DI9\x04+L\\}=W\x1b<]üt\rxtR<\x1c\x17+< \x10\x1bP=<\x17\x12z\x0e<(0j:L\x03EZFe\x10h;WTb=Y<\x1e\x0c=\x17,;\x16%<<\x11\x1e8\n\x0c+\x12;\x16%<\x0e\x1d<^Y\x04<<]\x1aj<<;twϻ`?\x07p=JӍ;&\\"y;IwF7"\tgIw<\x1bw@\x1dP\x15E\x08! “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom [when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs -animals – photosynthesize, so it is eye-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step-by-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -[2024-11-21 13:32:05 +0000] [1108994] [ERROR] Error in ASGI Framework -Traceback (most recent call last): - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/task_group.py", line 27, in _handle - await app(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 51, in __call__ - await self.handle_http(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 83, in handle_http - await sync_spawn(self.run_app, environ, partial(call_soon, send)) - File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run - result = self.fn(*self.args, **self.kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 113, in run_app - for output in response_body: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wsgi.py", line 256, in __next__ - return self._next() - ^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wrappers/response.py", line 32, in _iter_encoded - for item in iterable: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/flask/helpers.py", line 113, in generator - yield from gen - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/backend/agent_app_parellel.py", line 47, in generate - for response in responses_gen.response: - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/core/dspy_classes/synthesizer.py", line 149, in __iter__ - for r in self.llm_completion_gen: -ValueError: generator already executing -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{25199 total, docs: [Document {'id': 'test_doc:daf670dd-f0fa-4846-b35e-fc0bbda325d9', 'payload': None, 'score': 55.67609996061329, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '606481', 'document_id': '4fb1f210-5642-42d1-831a-53f92e667688', '_node_content': '{"id_": "daf670dd-f0fa-4846-b35e-fc0bbda325d9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4fb1f210-5642-42d1-831a-53f92e667688", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "87ac1d3c110cace183e1cde6bb7c69f8a22d7dd10684f927b5763e29f618e239", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8745d118-8855-4f70-a6dd-53086aa330e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "5651fd8345134c058d56162b31c2d359a36a8da0c5fe52c9388c3bf0acdb18da", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2c937b77-e7da-4784-b17a-a43eb546d78d", "node_type": "1", "metadata": {}, "hash": "6e1e08893619d95ad004150eab2ec01a3d4affc3902e82c6c676587e60dbcdea", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 8678, "end_char_idx": 13255, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', 'vector': '\x03Y?Q\x195Q4ϭ0:M\x00;\x038\x18\x01\x0c<\x15>=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n 1;\x1a\x1b=3SbA,\x14e\x00Y=L˼N=\x1c=\x18=Ur=\x04y.g<\x7fi黌);F\\<72*<\x01>\rkw\x03\x14R\r\x10f;\x1b7;>;Kܼ&=\rs\'\x0f\x0cj\x08\x14!n\\\x12,@\x14\rOW=;]=7b=;<\x08;\x1c<;Xy<4#;\x10<)@\x0b8%٭Fb\x1a\x1bk<\x18<<\x1fu<|z<_\u07fc;\x1eކ&c=\nu;\x11=\x08<\x16\x02\x03V&\x1el<;04)\x08\x14!d\x07yuz=\x05ӭ\x1d\x06f=:-<`ּ;`\x00=8%;\x10><\x107^|(T}Ἥ\x16;vh\x02=\x0b\x03\x01\x16yd;\x7fn2=06<3S:;<:\x11T\x02=\n<\x06<`qE3S;rD\x0eO<`\x0e\x0e1\x19\n=Y~ @*N<(N4#2g\x1f<:q}\\ <׃ \x1f\r\x01q<7b1me=\t\x02=q<\tk!<\x10>:\'\r', 'text': "His research is not limited to air pollution, but also covers water resources, energy and climate change. Recently, he and his team have been working on the top-level design of China’s carbon market in order to advise policymakers from an economic perspective.\n\n“There is still a long way to go before these theories can be put into practice in China. Perhaps the changes we can bring now are tiny, but as long as they are useful, or they are positive, our return to China makes a difference. In fact, no matter what you research on, not merely in the sphere of environmental studies, so long as you are concerned about the environment in China, you are moving in the right direction,” Professor Zhang said.\n\nIn 2003, Professor Zhang travelled to the US for his degree in Environmental and Resource Economics at Duke University. He planned to pursue his academic career in the US, and meanwhile became a father of two children. He enjoyed sharing his thoughts through academic papers as much as sharing the lovely quotes from his sons through social media. He was appointed a tenured faculty member at the University of California, San Diego, and it seemed that his story would go on in the sunshine of California. Then he made an unexpected decision: he would go back to China to join the recently founded Duke Kunshan University.\n---\nBeing Global Environmental Leaders\n\nBeing a foreigner in China, I’m always asked where I come from. It got me thinking a lot about identity. Norwegian is one of my identities, and female is another. That’s how people tend to position me, but that’s not how I define myself. A distinctive feature of a globalized world is that national boundaries no longer carry much meaning, while our life experiences and outlooks are more important.\n\nAs we all know, global environmental problems such as climate change and marine pollution have emerged. I think the fundamental issue is how to view the relationship between human and nature, and how to make people more concerned about these issues is the main challenge to achieve environmental protection. Therefore, as future global environmental leaders, it is critical that our students are able to identify various ideologies at play and ultimately support and facilitate public acceptance and compliance with environmental policies through them.\n\nProfessor Kathinka Fürst\n\nLaw and regulation researcher with interests in environmental policy processes, law enforcement and compliance and the role of civil society actors in environmental governance processes.\n---\n# Professor John S. Ji\n\nEnvironmental health researcher with interests in population health sciences, epidemiology, occupational health, and energy and the environment.\n\nCan you introduce the research that you have been working on?\n\nI do two kinds of research right now. One is on the science side and one is on the policy side. Both are meaningful. I enjoy more of my work on the science side than the policy side, but we get a lot of information from the policy side.\n\nWhat are you most passionate about in research?\n\nFreedom. You can follow your thoughts even if it's not systematic. It's really amazing that you can find something by accident that deviates from your original idea, but the new idea that you found by accident actually it is more interesting.\n\nWith your experiences and reflections, what’s your current understanding of research?\n\nAt the end of the day, it is answering some very simple questions that currently people don't have answers to. For some of my studies I'm using data to find connections between A and B that I feel exist but they may or may not be there, so I need to do these kinds of research to find out. Some research is very meaningful in the short-run. Some research is meaningful in the long-run. In fact, most are just not useful at all, but they are efforts of trying to be meaningful, that’s important. It is really fun. It's really fun, if it's a question that you are genuinely curious about. Genuinely curious.\n\nIs genuinely the keyword?\n\nYes, genuinely is the keyword.\n\nLet’s talk about teaching. If you choose to open a course at DKU, what would you like to teach most?\n\nI would develop a course on planetary health. I will bring in the experts from each topic. Some econometrics models, some study design, some statistics, some kind of a mapping tool like GIS. And layered on top of these analytical skills, the various issues related to the planetary health, like pollution, climate change, water scarcity or atmospheric processes.", 'ref_doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'file_name': 'imep_year_book-v6_bt_e.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155119/imep_year_book-v6_bt_e.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9d741364-d09e-41bc-a81f-668b2ccb59e2', 'payload': None, 'score': 32.54671465690447, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '132377', 'document_id': '369c95b3-bcf2-4ce6-80a9-da39d8befa7c', '_node_content': '{"id_": "9d741364-d09e-41bc-a81f-668b2ccb59e2", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "369c95b3-bcf2-4ce6-80a9-da39d8befa7c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "145a4af52f9e61f58dcdb62d79e0c007fa5e89084e392a05fda8844d2c46e968", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bac532d5-ec6c-485e-a3e3-892326752fa3", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "17524a3c808e77325ec13cc19f828007c0f8bdeb727086b5ac2265217157efe5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "51eea6ae-e400-402a-ac41-4485ca6aa8f1", "node_type": "1", "metadata": {}, "hash": "7877b626e092c83a74cdcdc07e6ffacb642d90ab1423b25572827f1169d0e63a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 10401, "end_char_idx": 14491, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html', 'vector': 'tY2R@\x035ENC=\x1f<ƿ#[}\x1eVE=Z=\x1d\x1b\x14ŻӺ<˪\x1f_m<7=\x04:\x1b;kA]@_<2鼿/Xa\x08<\tC&ۼq<5]\x1bo<(q+\x1f:ɻO3vvCc\x15Q<$\t)f\x1d\x0e:;^=O<\x18\x07<\x17,\x1a@值l?DtplD`=tp\x03<\x0f\x11^]3@;\x13ූ\x19қ;\x08TM\x12;)S\x06\x1bUx<\x7f3\'bף=ڈ9^;¼ӌ=c\x0e;\x03_B]@\u07fc6JD\nҟW;\x18\x077p\x10s|!<=j\x7f\x01?b\x15\x13ĉ<֯Cʥ<<\x12\u05fbd*ݼ!F\u070ei&=\x13\x03-To\x0cnd髻ڬNrJ\x148T\x03=\x04㼜\x06<^# ƿv\x15-м*A)\'\x15\t=\nPK=+w\x02\x1d٩`hr;i&3*=\x0eJ\x12c=M?<\\\x00ߩQ\'<\x0cV^#<(ˉ<<\x14<3\t\'=;\x0fܕ;\tۼ\rF<\x08<7_\t[Q\x17iW\x0b5U\x18dnN=W:\x10hi=\x00%<͆\x1e=<ƺ\x0bt\x0e;:<*=\x11\x19;\x1dپ4<ɹx\x1f=hrNU>T뫼ঽN\x16w<<\x17=DY::\x00uO=JEvY=uKNU<\x0f"+\x03dnN\x00"=Ml<[X<"X\x10<\\h\x19<}P9C[XG\x11<;WkT;]i#u%;}=9̼]ﻌ=/<5!/\x03x\x0fi=cMl\x10<\x14ǼϞsyA:o`O<<\x7f{6ʼM̼|z1=:\x15=z6;\x13,\x16,¼e@R< HYy݅<{=3\t<6\x03=\x03<=N"=mgJ+)м՜B`EDѝ<\x03eF\x06<\x00=\x0ej\x12<\x1dk:<~tC\x19\x033\x0fq<<=)<ŽG\x11L:/\x1dݼ\x18<\x01\x06<\x05\r0{= \x01\x02dnμGP\x05\x7f!\x04\x05\rw̌G6;js;\x7f?&;3<ݻ`#\x1c\x1d;{\t\x1d\x0e\x17\x01\rN<{;G=\n<.\u0379m\x10g;\x18;1M~&Z=ٟs=4\x0fl<\x11(\x1a:QU=;j"<\x10ڼ\x1a \x01=&M<#<\x01;<\x1aͼ[\x14r{\x1bc<\x17L(\\={Ee"V=\r;.;&=~&ڼ\x14턼~<Ƌ\x1bnYB;Y%;$,<\x1dw;2=\x16\x13;\x049b;\rs,7B7\x05(o\x1fV8=\x08\x066\x07=e78˼\x0ef=>λL=iJV=Fc\x04<9@&\x04\x1e;;\x17<-:9ϼht<\x18_b;\x0fG\x02/r<<ư<_b\x03Q\'EM*;Ubz?;ƥ\x13F;:j$)2\x04<\x00=X\x02\x1c=sb\x17\x08;`ÁFc\x1d3;.ͻ\x01nw[;a.!;zw\x05\x05D9_EgdA<*hL˼\x1f\x06=\x10\x16ja$:\x7f#<\x1dgJ=\te\x07B;H=\x01\x1eO?-<4\x12\x96<;3:ߤ3;\x08\x066\x00EмR\x1d$=];{n~Zi<<5ƅ,u=:\x03= zu3\x1c=p4[;Ϸ;6\x1b<\nC"\r\x05\x1f=$<1%c<3\'f3|0w0<\x07\x0c<)ʼ\x0c;\x0bqZC;q\t=%otH\r<\x185=mS`\x10\x00<[7Buٻ6\x1dv=Db<\x1bE;_}:\x83I&\x14$_D5=(\';6\x1dv<\x11eo=%r=F\x04+:L<Ҭc<;5㵺\x0bJ{\x1br<ڋ9_\x7f+<<γ3=ʺ<<\x04H\x13?\x11;^l<3/be<\x08K=\x1eG<$s\x14:\x1dd¼tdӬbT=|a;Z\x04}$=:]c4;ܺ<8dǼ\x023:!\x04=7\x17<2]:;OW\x1c;ëd\\O\x10=;\x85=+9\x1eq3<\x18;vs#k:=фckkI+\x1b=_#\x19s,R]<2\x07\x17\x1b;÷}\x0cԻ|WFI=I?\x1b\r\'\x10=7m;\x14V݃<ӻ<˴-4E\rl?V:Î=γ;R\x1c=\\\x1e/\x14<0\x05|ȼj:<\x18<*=Y<-t;\x02\x1fb\x06<^\x13<\x0cY}\x0c\u0600\x1a:\x01\x05#=/=\x08=Nj|\nv<2imh\x10[J:N\x12:c켔C\nh=Ք=ݍ=p<\x15C/<{ǏL9RqM=\x1b!<\x17#:@<5<0\x06h<\x7f<\x16\x0f9:\r\x0cкX:\x00&=&`]=\x18K\x03_\x02\x0b\x12FwGg<\x04ix>7\x1a",o\x1d\tN")E\\<\x05\n<\x14H3V;\\<\x01>ƻ\x05\x05n\x07=\x17#\x16=ȼ\x05\r3\x0eN;\n=J:=)l;<\x04\x10=\x11&V\x08<"9&<\x168.T7\x08~=s3=/j6\u07fcisVqJ$\x03ʆ9*:\uf237<,ۼ\x158\x05\r87t\x00=kٖ:Z]R7\x04?<\n^I~F<|\x1d\x12s\x1cl\r;1\x13=<\x04E\x1b<|4D=o<͝\x12V=Ӎ=%\x06=%J=\x18k< \x0e\x0f\x1c\x1a\x10c˵<\x15ഗ\x15<\x17\t{~=/+!#\x18\x1b@8\x12Bi<Ƽ5\tc;إK7\x08\x00>DY;)\x19ZOz<\x15=UqJnI<)υ\x10o< <̻\\\x11\nxhO\x17;`߫\x0b0Q#<\'\r=%ɗ-qD;.h!={\x1f\x16<\x18C\x1f;`:\x0ex2<\\So\x03=#PA\x0er!=\x1bټ\x0b=\x198\x12x;W\x01=,=\x028,ኼ,^&\x04R\x12=Rר!\x04ӓ<\x03ZBG<^;$e\nި<~(<\u07fbr\x04Zwn戽8#?<\x12x=6\x05\x14;T!m;Z,κ=)<\tA6G[=\x13bS\x10&', 'text': 'The two cultural pillars of the Spanish and Anglo culture, Miguel de Cervantes and William Shakespeare shared the same times, and almost, the same day of death, April 23, 1616. Both, lived fully, as we do today, in tumultuous and tempestuous times and shared it in the tragedies and comedies coming out of their imagination. We, their heirs have adopted, used, and transformed their legacy -our language. Also, we do share that history, one of imperial dreams and nightmares and the expansion of a global Eurocentric culture that transformed the globe during what we called modernity. They foresaw such forces, those that unleashed our own wild and turbulent times. Art still creates out of Cervantes Don Quitoxe. This paper was commissioned for the first of a number of exhibits produced by the Artists Studio Project (ASP) for the annual Quixote Festiva, a nine month cultural adventure that takes place every year since 2015.Save to library[Download](https://www.academia.edu/attachments/64930199/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=44495782)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[![Research paper thumbnail of Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://attachments.academia-assets.com/49530053/thumbnails/1.jpg)](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)[Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultur... [more](javascript:;) In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultural loss for more than five centuries. Today, within the framework of global policies for open markets, the community has developed new strategies or resistance: documentary video and community radio, public and community based performance, and symbolic uses of ancestral objects are threaded with cosmological knowledge. New media technologies and collective performance are part of the strategies that indigenous organizations in Southern Colombia are practicing in order to close the generational divide, build communities in resistance, share, and make visible their struggle. The emergence of the ACIN\'s Tejido de comunicación and the"kiwe Ten\'za" (the Indigenous Guard) are the result of this process. Developing a communication platform while fighting against resource extraction operations, illegal crops, and land disputes, the tejido and the guard inform and protect Nasa communities targeted by local, national, and transnational forces. The Nasa are actualizing their tactics through a combination of historical means of resistance (military and political), by strengthening their core values, and by processes of autonomy, education, and circulation of inherited means of governance. Miguel Rojas-\xadSotelo is a Colombian art historian, visual artist, media activist, scholar, and curator. He holds a Doctorate (PhD) in Visual Studies, Contemporary Art, and Cultural Theory (U. Pittsburgh, 2009). Miguel worked as visual arts director of the Ministry of Culture of Colombia (1995-\xad2001), building participatory cultural policy for the visual arts in his country, and he works independently as artist, curator, and critic ever since. Currently works and teaches atSave to library[Download](https://www.academia.edu/attachments/49530053/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=23676786)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[!', 'ref_doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/duke.academia.edu/MiguelRojasSotelo/index.html'}, Document {'id': 'test_doc:7ae4106a-10a0-40f8-8cc5-971e807c885e', 'payload': None, 'score': 38.53360199092106, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '235942', 'document_id': '71dea93b-9b52-4783-bcd3-f27c0c643427', '_node_content': '{"id_": "7ae4106a-10a0-40f8-8cc5-971e807c885e", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71dea93b-9b52-4783-bcd3-f27c0c643427", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "hash": "0e1208392f260a647322efa9a480d331435548499b5ad3056d939be3965d5865", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3192, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf', 'vector': '\x16\x1c\x00ռtW듼\x0c]UX."Ѽkũ<\x16߰\x1c\x08ʼQ0\x03;0\x08rxڻI=hk<\x16\'=ˌ<;\r=:C=ݔl;;lW;̂i;Ab={x\u07bbQռ<<\x11\'%;̋\x070*n;c=\x02Ak<\x0cw\x1d\x189E<>7\n=䝁<0.wܿ0\x08.\x0fμ#M\x04C\x18\x1eݹ\x0f==<\x08/<\x1f<{<\x0e,0=>7\x06\x12=yW-g8\x01\x11\t_<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&E=[; \x18\x1dݼ<|\x0b.8=<^\x0bN%<`;?;G;q\tt\x0e\x18N(i/$\x18,q:Q\x03=K9,5⼰^¼m\x0fn:\\\x01\x1c<;Z\x15,ִI";\x1b}u仄\':;#>YƼ\x1fOμOTJC%=gxU=PȐ<矺12<ϼ$OoR]$\x13\x1e9~mV~mVvCb=?S \x14+=\x1d\x06=żD<<*<\x0e=34Լ\x11=TK\x0e<=*\x10<\x10W\x1fONd#t: ;>\x1c6=<\x08<\x1eļl\x08=12:/]bK\x02M/u\x163=R}}\x05\x13\x19aw<:PU\n\x0e=@F|<Ȁ=\x17-\x14< ;\u07fb廇\t\x19ȻmE9[\x05\x7f[J=Cv\x1f$_\x12;\'m/<ґ::<Ƽ|H$V"Fd=H9P\x0b;=q<\x08\x1c\x1f=\x18\x1avOu\x005:7üë:t<\x10<\r\x03<+~QG6<\x1f\x06\u07fc\x0e;obk\x01=d#ȇ;}>=n]=Lx\x07ؼR[^;\x17-xpD=\x06P\x0epDA&\x1bU&u/\u07fb\\n\x07\x17<ԕ=0=\x19<;u*=:*<*OF&\x14O\x08<\x19ܼK=\x19ܼ_ya#<<\x001\x03=^\x06g\r:JN\x00ѻMpȿ\x19ܹTIY:[\x10vޚ\x03»\x07"\x1aiK#=N0=ɰ\x04\x0e/Xצb,qb#\x12)l\x17\x12.JRor~;1!;Jv<9[\x06=pyrSм\x1f\n\ue3fd=#uе;0&=&W\x023<%ď=ٽ<.a; D<:S=i<\x1b㱼a<\x12\x17}@<.9Q<8.=\x1b1>\x17\x1b<;\x02\x12Cq\x0c\x17=;(#&6dս<[<6\x05\x0b\x0e<\x05lY<.sTs=s\x11(Ɯ\x1f\x7f6ټt<\x08\n(cR[;X=UѼ}OZ\x1da\\\x0b=5\x07=u7`\x0e<\\r\x05<\nP輻:\x1fۼb\x06+;C<:\nP\x15\x07=+\u05fcD\x10P;\'8\x1a<(<3\x0b:\tC;킽<^\x16\x08<<<<\x11!<\x17ʥ<=<\x04;A\x18ʼ\';=%S3\x7f6\x14=\x00*=Q_5a^><\rػ\x1f\x04<<\x0b\x02e@r[&<4;\x16];\x7fpm켒ۼ><90G\x1f\x00=w]\x02=O\x1c=\u0604<\t/\x0bG=A<\x1b>;=t_3<𧎼T;\rkOK<\x1e<;}9*\x01N>\n\x14\x1e=c\x01yeҭ\x06R}H;\x02߰T<\x11?,ق5\x1b<~\x02<\x06d:YT\x02٢\x13\x00\x01Ѽx;@5ʈ="@#弡>=e,g<\x1e\x1dv=6\x04:4;\u0604;ڵqĖ<ּ\rE:^f<;k:+j=-k<=K<\\;=8kr;\t%ּ6]<16;,\x0e=\x0e\r;eJz8M_\x18:,-\x19<0\x10\x0e=ᨅ\x02\x0e<\nP_<2/<ߛ*<><(G\x00q3gutѶeJ<\x15ʻ\tCi=,\x1diռ\x03Ƨ="\x19\x14n\x0eռ\x01\x05Sl\x10=h{AJ52="7,r[;\x1cμ͂k=(\x120=\x0c\r\x05=\x08\t-ؼT6=2\x00=\x1b<2r;V\x0fKTI\x19i\x1d\\Z()h<\tixQ\x1bpy5f<5\x1cQ\x1d/<ȨL\x12=p\x03ḟ<3\t<\x7f\x02{BļQ\x00輩\x13;($<)uɼuϞ\x1d\x1d]<*!<\x1f`=\x1cƼ\x03<_=\x0e<\x19,\x0e<#=\x16%BDBļ=\x1e)B<\x128\x07BD<ںK\x05Ǻ\x19<\rJ<\x11p<\x03=W;>Zg\x1ePQ(=x<\x12ݼ\x1bO%7Buٻ6\x1dv=Db<\x1bE;_}:\x83I&\x14$_D5=(\';6\x1dv<\x11eo=%r=F\x04+:L<Ҭc<;5㵺\x0bJ{\x1br<ڋ9_\x7f+<<γ3=ʺ<<\x04H\x13?\x11;^l<3/be<\x08K=\x1eG<$s\x14:\x1dd¼tdӬbT=|a;Z\x04}$=:]c4;ܺ<8dǼ\x023:!\x04=7\x17<2]:;OW\x1c;ëd\\O\x10=;\x85=+9\x1eq3<\x18;vs#k:=фckkI+\x1b=_#\x19s,R]<2\x07\x17\x1b;÷}\x0cԻ|WFI=I?\x1b\r\'\x10=7m;\x14V݃<ӻ<˴-4E\rl?V:Î=γ;R\x1c=\\\x1e/\x14<0\x05|ȼj:<\x18<*=Y<-t;\x02\x1fb\x06<^\x13<\x0cY}\x0c\u0600\x1a:\x01\x05#=/=\x08=Nj|\nv<2imh\x10[J:N\x12:c켔C\nh=Ք=ݍ=p<\x15C/<{ǏL9RqM=\x1b!<\x17#:@<5<0\x06h<\x7f<\x16\x0f9:\r\x0cкX:\x00&=&`]=\x18K\x03_\x02\x0b\x12FwGg<\x04ix>7\x1a",o\x1d\tN")E\\<\x05\n<\x14H3V;\\<\x01>ƻ\x05\x05n\x07=\x17#\x16=ȼ\x05\r3\x0eN;\n=J:=)l;<\x04\x10=\x11&V\x08<"9&<\x168.T7\x08~=s3=/j6\u07fcisVqJ$\x03ʆ9*:\uf237<,ۼ\x158\x05\r87t\x00=kٖ:Z]R7\x04?<\n^I~F<|\x1d\x12s\x1cl\r;1\x13=<\x04E\x1b<|4D=o<͝\x12V=Ӎ=%\x06=%J=\x18k< \x0e\x0f\x1c\x1a\x10c˵<\x15ഗ\x15<\x17\t{~=/+!#\x18\x1b@8\x12Bi<Ƽ5\tc;إK7\x08\x00>DY;)\x19ZOz<\x15=UqJnI<)υ\x10o< <̻\\\x11\nxhO\x17;`߫\x0b0Q#<\'\r=%ɗ-qD;.h!={\x1f\x16<\x18C\x1f;`:\x0ex2<\\So\x03=#PA\x0er!=\x1bټ\x0b=\x198\x12x;W\x01=,=\x028,ኼ,^&\x04R\x12=Rר!\x04ӓ<\x03ZBG<^;$e\nި<~(<\u07fbr\x04Zwn戽8#?<\x12x=6\x05\x14;T!m;Z,κ=)<\tA6G[=\x13bS\x10&', 'text': 'The two cultural pillars of the Spanish and Anglo culture, Miguel de Cervantes and William Shakespeare shared the same times, and almost, the same day of death, April 23, 1616. Both, lived fully, as we do today, in tumultuous and tempestuous times and shared it in the tragedies and comedies coming out of their imagination. We, their heirs have adopted, used, and transformed their legacy -our language. Also, we do share that history, one of imperial dreams and nightmares and the expansion of a global Eurocentric culture that transformed the globe during what we called modernity. They foresaw such forces, those that unleashed our own wild and turbulent times. Art still creates out of Cervantes Don Quitoxe. This paper was commissioned for the first of a number of exhibits produced by the Artists Studio Project (ASP) for the annual Quixote Festiva, a nine month cultural adventure that takes place every year since 2015.Save to library[Download](https://www.academia.edu/attachments/64930199/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=44495782)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[![Research paper thumbnail of Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://attachments.academia-assets.com/49530053/thumbnails/1.jpg)](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)[Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultur... [more](javascript:;) In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultural loss for more than five centuries. Today, within the framework of global policies for open markets, the community has developed new strategies or resistance: documentary video and community radio, public and community based performance, and symbolic uses of ancestral objects are threaded with cosmological knowledge. New media technologies and collective performance are part of the strategies that indigenous organizations in Southern Colombia are practicing in order to close the generational divide, build communities in resistance, share, and make visible their struggle. The emergence of the ACIN\'s Tejido de comunicación and the"kiwe Ten\'za" (the Indigenous Guard) are the result of this process. Developing a communication platform while fighting against resource extraction operations, illegal crops, and land disputes, the tejido and the guard inform and protect Nasa communities targeted by local, national, and transnational forces. The Nasa are actualizing their tactics through a combination of historical means of resistance (military and political), by strengthening their core values, and by processes of autonomy, education, and circulation of inherited means of governance. Miguel Rojas-\xadSotelo is a Colombian art historian, visual artist, media activist, scholar, and curator. He holds a Doctorate (PhD) in Visual Studies, Contemporary Art, and Cultural Theory (U. Pittsburgh, 2009). Miguel worked as visual arts director of the Ministry of Culture of Colombia (1995-\xad2001), building participatory cultural policy for the visual arts in his country, and he works independently as artist, curator, and critic ever since. Currently works and teaches atSave to library[Download](https://www.academia.edu/attachments/49530053/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=23676786)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[!', 'ref_doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/duke.academia.edu/MiguelRojasSotelo/index.html'}, Document {'id': 'test_doc:7ae4106a-10a0-40f8-8cc5-971e807c885e', 'payload': None, 'score': 38.53360199092106, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '235942', 'document_id': '71dea93b-9b52-4783-bcd3-f27c0c643427', '_node_content': '{"id_": "7ae4106a-10a0-40f8-8cc5-971e807c885e", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71dea93b-9b52-4783-bcd3-f27c0c643427", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "hash": "0e1208392f260a647322efa9a480d331435548499b5ad3056d939be3965d5865", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3192, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf', 'vector': '\x16\x1c\x00ռtW듼\x0c]UX."Ѽkũ<\x16߰\x1c\x08ʼQ0\x03;0\x08rxڻI=hk<\x16\'=ˌ<;\r=:C=ݔl;;lW;̂i;Ab={x\u07bbQռ<<\x11\'%;̋\x070*n;c=\x02Ak<\x0cw\x1d\x189E<>7\n=䝁<0.wܿ0\x08.\x0fμ#M\x04C\x18\x1eݹ\x0f==<\x08/<\x1f<{<\x0e,0=>7\x06\x12=yW-g8\x01\x11\t_<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&\x03=q*<&{;\x13g7鹼r=1gg\x15=<\x14e]=\x19\x0f<2;`\x17=z\x18\x08<\x13\x14=L4*\tf=3;\'\x7f\x1ai;\x0858;\x01%/:r/<`<\x0f\'G^;i\x17<\x15= @<\x0b"\x009y<\'6\r=4\x03\x1f=ӻl38ټƳ:Ja=k\x0f=E\x018\x03m9$ƴB=\x16< \x1a/;/j\x07<4\x02\'<\x02G\x0b\n{рR\x16;\x1a篼r\x17ݒ;jn\x1b=@$\x16r\x1a=8=\x08\tG\x06*\x04e8=mwH<\x1bR(=\x06\r\x00V\x14\x08\x02 q<\x17;uN\t?j:<7;nn\x0ep;\x0e=\r3C<)H\x14q\x16=|KA;\n\x17b=+9\x12";x<+\x06=ӼzgAsaTL\r3$3<Ʀ<-\x19[G=#v9=)=\x039\x01_\x1dDF2,=Vw;;\x14}j$ <\x1fjuD=X;=p3M=0\x13<[Ǽ(8=z -:\x06CS=\x05eJ(s\x1d.\x07Fga\x1dc8J<Gr\x082ϻY;@@+B<\x037*`+<\x19ؼ,KȓX=ͻ\x14:<%<\x19\x1f|&yI\x1eC\x08kVr<"\x1b\x1dl\x1c;Ϻ:;\x00\x0b\x12!\x01=\x1a?87%=mC\x02!*̚<,<./CA_HT`;u:<\x0e%=5=lyB#\x11^2\x01f\x07jHE夼;\x03;w&\x1c<=v\x10;w<]\x1c\x0b:<;xɼI|ZL!a\x18=!F"EK?g./7])<_\t\x08{J\x15/ha@<E<O};\x04E;@=\x02=s\x1e\x1d<_=,:2\x1b+1<̴λ7=e\x13\x15;b\x13Q.4:<Ȼ(;J=\x1bޕP\x12\x176<\x1dk=S=tI\x01a\'\x15=!F=Cp.=\x04\x03ӼҰ<\x1a\ueffb#\x15\x1aGc.nq\r|&=^\x19="\x0f<\\;.>O7<Ƹ;;4\x0e[6;\x17=;;< :\x7f(<\x1b\x100\nH/w9h<\x02;\x07;Ueջ9h@=I=<<<\x0e<ŕw<ۗ\x11\t=\r5G&Pܐ$D=\x12:=z\x7f\x11\x10;\n\r`\x08 \x7fr<"Iz\x1aֻ!dj\\a*\x15+<\U0004747cq\x19=\x02<\x12E\x02\x15+=!\x02%AL\x15=\x1dr=s]8"<\x0f:\x18#]OfǤo<$<=d\x00H";\x082;3|<\x13ck[`}\x199l!<\t\x10y-\tH=\x12E9\x15@P\x0eM<\x19D<\x15@1\x7fyk<=d=4!;d\x0e}~\x1f{ý$\x12<j/!\x07=d=\x02<[)ү+=n8<[n&a\x07\x10\x12zP<@\x16Fq*=8<\x1c#ߌb\x03V}<\x04\x0b\x192\x1bA= qF16ﮢ;4/R<\x10<\\;VΧ;\x086=xx;Z =\x15+=6Hj<ϋH<\x05\x15:BXB,$.EƼ(_=\x19Z\x0b;ùc=\x0eVITRм{Ȃ\x06/\r\x0b=Y;R\n\x0c<[y<\'J\x19ZK=r=ۓ.yG <\'Ge<\x8d,\x0c)Kx;u#=;aQ9;\x1a\x0f\n="ڼsJ\'19N{\x038bd\x13\x02\x0b9F-Y=a\x1e<ߢ=\x1c<:z%<[2:g\x06ʮlN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 14.485480856092394, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{12561 total, docs: [Document {'id': 'test_doc:c4f28e62-fdf6-49a7-a88e-0d047e91e051', 'payload': None, 'score': 6.748795506943125, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "c4f28e62-fdf6-49a7-a88e-0d047e91e051", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b7b88d89-7a53-4e71-8678-c062ad1bdd29", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fad8155c-cf3a-4e0e-88bb-bae31a75e089", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '\x14o$;]$Ov!ļ{;M<\x15\x1b>\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG2üWh3<"7O|11ȇ\x1e\x01=,=Z;$;y⼦\x16?nм\x17\x01>4\x11}=Q=f2C<\x06o\x191\x07)7}\x14Yi\x1bm<;\x7fԳl3:ӻ\u07bbK]]4+ae\x14^:\x13<\x1c\x1d/=\x01{\x7f;hټ\x14<-_\n=;N=6<\x1e8"-\x199,<\x04=_([ 4+\x05,Q%c=&=S;?Q\x00";=OGP<$\n;N%7\x1e=kG1u1Q\x10\x07=\x05u=\x1f:wgn\x1aY\ro<৵=<ͻ6=\x1d\nX<՞,><\\v+>;ȇ<|B˼Q\x12\x0bV{:!<Ǻdtμ<\x07FP8Ꜳ<<\x0b=o\nBT\t#\x1f{՜\x02)=([х;Q<)\x1aǻ\x1a\x02\x0c=/.\x05=;;*k\x02=Ɔ\x13<\x03,C7\x05y<%37L\x12\x03&F^N=\x16ĺ=b\x0f=h;\\ߡ;4\x11NI;\x03,2;,$;`;pltvd=5\x15F=\'dSlO*;\x06=W<\x0c\u0381\x1eiWX=<-\x0cR;\n\x0bƻXV\x19F\x03d>\n{\x14>\x0f㼒z^=Nz{=\x16<\x0eKjG_<谼\x15~q2<\x1eAF<&\x08l;"0X;s,=\x00ebȻ\x10=/\x03v*=Ժ<\x13Hf\n/\x03=&f;%=T@;;W<\\;\x7f>\'b_i;+]3E<\x06\x00\x0e>l=9ܻMJ=\x0e\x15\r>f\x1e;-\x1e\t;=t0he\'=\x17xż\x0b$ͼۧ\r,OdƘ<^\x1e~;\x14؏=0 **All courses** link.\n\nIf an instructor would like to continue making changes to a site, allow late submissions or other changes in their site, they can switch the site to be dictated by course participation dates instead of the default term dates. This is done within each site’s course settings. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354) on this process.\n\nIn addition, instructors may set within the course’s settings to ‘restrict students from viewing course after term/course end date’. By doing so, the instructor would retain access to the site but students would no longer be able to access the course at all. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269) on this process.\n\nNote: Sandbox & Collaboration sites are not dictated by the same controls by default as they are not associated with a specific term.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSetting up course site and content\n----------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nHow can I enable/disable a tool in the Course Navigation?\n\nOn your Canvas course site, there are some links (Home, Announcement, Modules, Grades, and DKU Library) enabled by default in the Course Navigation. But if you want to customize your Course Navigation by adding or removing links, you can\n\n1. Go to Settings in Course Navigation\n2. Select “Navigation”\n3. Drag and move the tool(s) you want to add or remove\n4. Click “Save”\n\n\xa0\n\nFor more details, please see [How do I manage Course Navigation links?](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-manage-Course-Navigation-links/ta-p/1020)\n\n\n\n\n\n\n\n\n\nShould I adjust the time zone in Canvas just like in Sakai?\n\nYes. All DKU users are recommended to change their **personal time zone preference** to China Time. See [this documentation](https://community.canvaslms.com/t5/Student-Guide/How-do-I-set-a-time-zone-in-my-user-account-as-a-student/ta-p/414) for detailed steps. All DKU courses use the China Time as the default time zone.\n\n\n\n\n\n\n\n\n\nHow can I copy over existing content in my previous Canvas sites to a new site?\n\nInstructors can copy content from an existing Canvas site to another including course settings, syllabus, assignments, modules, files, pages, discussions, quizzes, and question banks. You can also copy or adjust events and due dates. Student work cannot be copied over to the new course. Find out detailed instructions [here](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-copy-a-Canvas-course-into-a-new-course-shell/ta-p/712).', 'ref_doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c533cdc5-9ca9-4392-838a-416efcc47b89', 'payload': None, 'score': 21.66200818990451, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '417741', 'document_id': 'f4ece21d-8d06-40e7-a47a-297ff4d2cf02', '_node_content': '{"id_": "c533cdc5-9ca9-4392-838a-416efcc47b89", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f4ece21d-8d06-40e7-a47a-297ff4d2cf02", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "ddade1bcbfe7aaccdbc3b5146863be9efdcc4f12b4b4bafd131f8ed6ef19e3eb", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "896a8981-c39a-43b8-a50b-7d769ef500f6", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "3ee38770b0a269b83f5bd48fca6fad36d601082d6c68f0f9348d7c45748b08fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3fb6dee9-bad4-4058-a845-288ff4a1356a", "node_type": "1", "metadata": {}, "hash": "5a79b341b4a35ac8fd3dff0c2bbb3cf27a6cfe724a34804ba1c42913f9a75588", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 103547, "end_char_idx": 106536, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html', 'vector': '\'-Aۼ\x0f\'y?/6j༁|;q\r=\x161.=5aJ 6@zH:`\x1a\x0c=]<\x1c1H<5a<^!<]={2<\x02GwNrb`\x1a<\x1d\x03p\x7f=#C )R\u07fbz;/o\x13w\n\x10+s"l\x18B=/=T)ڼ\x12<\x1b(<ûJg\x8a"q\x18=O\x11ټ:\x03\x12=1\x033;\x17\x12\x19\x01Z;\x15=oX9\x0bM<\x1dP<4=,ۯ,<\x03\x18=(n:\x1a\x16h==\x10+sHK"Ȳa7"(@\x05<ϊ<\x13*\x15<`\x1a\x0c:;Sb<=Yky<\x0bF=\x18<\x11ԹF\t%~?\u07fcðli\x1a.W\x16y\x15M.\u074bƙhL\x00=\x19\x1bo\x03m<\tK\x17;ѻg\u07bc#=/<,=]e<\x00\tхd<5\u061c=NcQ<\x1d3<\x11\x1e\x04)2@μɑ(\x11K\x1c=-JP=T\x1bɖ#<\x18=;\r=\x03t;l<4\x1c\x1c\x03F<\x14\x11t<3젼F=S\x14;\x1d")hܹf.\x06\n\x13=̼\x0f+r}12\x132=J@dTJ\x05\x0e\x10b@};?X;M+ZD.\x06\x11\x0e9A\x1aչN!ۼ#=Գ-5=4ԃ(:\x18NH!\x1fPռ\x16\u0383G\x16=J<70<"f\x18Q=Kt<=\x1a =dU!<\x1e<\t\r\x1c\x15=J<8;g;*ɦ<9*yr=[\x02k=T\x13\\:\x1d=Vf<μs\u07bc]=Ⱥ"=Hճ;%\te<\x19\'c=S쁻 \x0fF^KD\x05hn@@Zbu=*\x01\x1f+ip;\x19kr\x04,U?<\x038G=pP;뻠S1X<Г<\x06lH\x06\x19k2ca:ּْ;ܼSeqP=K\x0f\x19\'\x1bۢ*\x18y\x0ex\u0383h@=\x17[L3h\x11\x05\x0f/ϼP\x04.\x7f>;,ٌ/+=\x07~\x0b<\x04^\x1aZ\x0bx&~D<\n/\x1c0:\x02<\x16\x18]\x12QDH]qX\x19;k`<\x10G=(<>6I<+X~;Y\x1d=]>;\r\x1cl\x1fDw\x0f<{Nsc\x1a\x06\x03$Z<%\teZs<,<\x05=fN=R\x03F=EUݼ9\x0f\x1e=\n}.^x<\t\r<\x08<9㡱=$|=\x08;bo\x06\x16\x0cGp@<^1\x15Qs`y;Z\x02=\x19=\x1d\x04=<ب1=9즺Y,Kܾ\x0f=<&\u07bb\x03=\x11\x1f\x13\x1a;6,\x0fo\x08;O\x12~\x10:\tH=\x14G=X\x02\x18"\x0bm,?CB)=e<\nֺ<\x07ft<\x1f\x16<-ʌ=;-\x14\x04;TC:\x1deʼZ;\'kڼ}NP\'+=;i"D\x04Dq;\x0fo=\x1eWuc!㼝\x13;1$%;O\x04=\x1b\x07=`;:;e<\r\x15ؼs\x05M\x02vB=\t#<֝B<7F\'l>:\x00\x0c=z!=NW=̼\x12<\x12I=e˽¼OU\x1b=;\x1cB"=C=ӻ>\x04vS; \x1a73E^<}Չ<$]?u(=\x0b1\x13\x1f&W*+ +c=κZ;tI\x04=;,<}\t;qĊ;\x0fI\\=\x051o2⻌R\x05=\'kڼ"I\'\x13<\x1f=f\x04=S=\xa0\n\n\n\n\n\n\n\n\n Frequently Asked Questions \n\n\n\n\nWhen your student comes to Duke, there are always questions about university life, including selecting the best dining plan. To help select the right dining plan for your student\'s needs, check out the plans described in the "Plan Profiles" section above.\n\nIf you have questions, contact Duke Dining\xa0at 919-660-3900 or\xa0[dining@duke.edu](mailto:dining@duke.edu).\n\n**How does the First-Year Dining Plan work?**\n\nThe First-Year Dining Plan is designed to enhance the \nundergraduate experience. Centered around Marketplace, the main East Campus dining facility, the First-Year Dining Plan provides a wide range of choices and fosters a sense of community through dining.\n\n-BOARD PLAN: Students receive 14 meals per week for dining at Marketplace as follows: \n-5 breakfast meals (1 per day, Monday-Friday) \n-7 dinner meals (1 per day) \n-2 brunch meals (1 per day on Saturday & Sunday) \n-All other meals are purchased by way of Food Points and can be used at any on-campus location,\xa0 Merchants-On-Points (MOPs) vendor, food truck vendor, mobile-ordering, or campus convenience stores.\n\n-If a breakfast meal is missed at Marketplace students may still utilize that meal at The Skillet (Brodhead Center) by 2pm, at Trinity Café from 8:00am-12pm, or for lunch at Marketplace from 11:30am-2:00pm. The swipe equivalency amount is $5.70 and anything over $5.70 will automatically be deducted from the student’s Food Points.', 'ref_doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d28b1dee-0129-4bff-aa4b-713d1852ad80', 'payload': None, 'score': 19.888226658218823, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '81625', 'document_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', '_node_content': '{"id_": "d28b1dee-0129-4bff-aa4b-713d1852ad80", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4b7d8b1e-ea97-4931-9d28-4f74876bafc0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "06d84dfad93dc9440c05a73eecc088556df596178b7b4c3735ddd6cf91a1abea", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b9804bb2-aed2-4e49-8177-a1042b494e41", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "ab6de2f8d496838bc4d558fab517f7136b2dab6b3a3bbbade681d455f1e01718", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43aa2b93-9f7d-442d-b104-cd44eb2584e4", "node_type": "1", "metadata": {}, "hash": "2822754110ae2cd497d63424e85ca2d3e1d42008c583c1b1eccae8d784c2a4a0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2882, "end_char_idx": 6756, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', 'vector': '&ރ%\x07gX\x7f|UCߙb<\n \x02\x17S<)=b\x11Iǀ!\x0c=M;>\n=Ӓ\x02+ î\r{ȼ\x10<]<+=<\x1cMw6\x1d<\x0c<\x03="<&\x03<\x08\x1cN\x11);Ct;\x02ma5\x18;(.;,9;:ޱ&=H:)\x06\x06@wJ\x03\x7fɦ\x14gu\x08<)v=ˍs\x0b=\x1b<\r_Ly;\n\x02|;y<\x12"=).<\x1c%=0l/K;\x1d=BB5t:;<\x18\x0e\x13=4z05\x0fj\x13\x14\x0e+F=y\x19l\x0f=yHg9\r\x1c\x1a=ѭ\x1c<(@\x08:\x08\x0f<\t4\x02V<\x1aOxN~/u1\x17GZ\x12g\x1f\r_=GF~g9C\x04f\n^#\x0e\x188TQ`a5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհa5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհ<\x08,g=Dd;b\x18=\x06a\x13żzv8\x15\x10"=k\x1a=h|r\uf500hٽ\'=+;Cs\x15\x12R\x07=>=Z03;\x06=\x15F=\x11=\x0b<\x13-)7\x1e|;Cw\x16\t8\x11~=\',<\x1c~ؼZ03\x05t8;\x18=5"<+\x11#Qf<)\u07fbrX`z=hհ<\x0b=o(=9<=ػ>\x17Ƌ4\x17<4\r\x007p=\x18[;\x1a=\x1d<\x06⯺\r9/=S\'\x14/`;d\x00=\x14)FEҝ\t=E<=\x1fس<^M|ԼV\x07:\x19-t;\\@\x0b\x1bAO<;5(\x7fb<\\=\x07\x0c<.\x08=|\nbϼ6*;\x1bҼz\x0b:3Xޜ]%N,\x1c<\x1cg=I˼@U<?ۼ\x00a;`:=;启=Oo\x01D6*Ļ6\x12:\x11\x00~\x12n=xF <[Qau\x1b&\x0e=dɺ\x12<@M\x19=:;=ЍI\x05ȱfQT`"\x0b¡mG<\t>jCз<\te=;fz\x16<=<;\'<\x15;e=pQ\x16=(\x02=\x19\x032:]\x14K\x1e;S̔\x13\x1e\r<8p\x03;*;.\x1e):p\x01=o<\x13.4G\x15=\x132=\x02-p\x11<<\r=3p\t=\x13\x13&zw3=O\u05fc_z<鎌Wz(<-pE<\x06\x14\x13R(`2G়֟<\x086zz\x1b\rM=f\x02pżo(^Q\u07fc%=ˈ.;kG:W\u07fc\x17]\x15=w=@w҃\x017=\x15ֻP=C?\x131;=">.\n7f`;=\x1b\x07;P\x10=١~j$l,ć;$\x15\t(\x01SgQ<=DUv\x1d\x7f=\x018ͻl.@<ϲ=T\x9a5;\x01ϩo<\x0e=`=Ѽ8+=ԉ=4#L[5=jɛ;;d<\x12(ļQ\tIN\x7fb=p3/L<\t%۸=kp4\x08@PWDJ&=z<\x05\x1f=25:\x12m<\x03Qt+(FQÔ\x00<2J]\x0e\x1c<\x12&;EA=\nhi\x13<ƹ=5W!:C<\x19rgl\r7\r<,>\x03;ΌN\x08M<ڻ\x18.=o{=?;j"u\x0b\x17;̇;\x144=7\x04zC\x10=\x15ϼތ<\x1f\x0c#=tKF!T};\x00\x0cĂ\x05Aм\x15\x03|\x07<)II\x17v!<\x07Fg@*6;c<\\;0\x03=\x07[8=S<\x1dW<7ekpuH\x1e<\x02<Lۻ\x07[80=\x0b4#\x03H<"i1÷IN\x08ͻ\x08G=!㼭i+D\x07j\x1f<=\x0c\x15UL\r\u05eb[\x07l&+I=:M\x1f\x06eV\x1c;>=(#\'ؼ\x1f<:\x17:e\t<ӡ\x12Y2;>!ci\x16F=ϔ\r\x0e<\x0fӛT=5)\x06=\rl$¼\x0f=<#;l&=tK=H{=0$\x13\x18[\x13a<<<\nN\x05\ueea0<_Q\x18:IHr="<3<)=z\x06];Tr\x1c_=!\x14<', 'text': 'Settings\n\n* [How do I use course settings?](/t5/Instructor-Guide/How-do-I-use-course-settings/ta-p/1267)\n* [How do I set details for a course?](/t5/Instructor-Guide/How-do-I-set-details-for-a-course/ta-p/1037)\n* [How do I change a course name and course code?](/t5/Instructor-Guide/How-do-I-change-a-course-name-and-course-code/ta-p/1234)\n* [How do I add an image to a course card in the Dashboard?](/t5/Instructor-Guide/How-do-I-add-an-image-to-a-course-card-in-the-Dashboard/ta-p/624)\n* [How do I set a time zone for a course?](/t5/Instructor-Guide/How-do-I-set-a-time-zone-for-a-course/ta-p/1295)\n* [How do I change the start and end dates for a course?](/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354)\n* [How do I restrict student access to a course before or after the course dates?](/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269)\n* [How do I change the language preference for a course?](/t5/Instructor-Guide/How-do-I-change-the-language-preference-for-a-course/ta-p/1246)\n* [How do I enable SpeedGrader to launch filtered by student group?](/t5/Instructor-Guide/How-do-I-enable-SpeedGrader-to-launch-filtered-by-student-group/ta-p/947)\n* [How do I enable a grading scheme for a course?](/t5/Instructor-Guide/How-do-I-enable-a-grading-scheme-for-a-course/ta-p/1042)\n* [How do I use grading schemes in a course?](/t5/Instructor-Guide/How-do-I-use-grading-schemes-in-a-course/ta-p/870)\n* [How do I view and manage grading schemes in a course?](/t5/Instructor-Guide/How-do-I-view-and-manage-grading-schemes-in-a-course/ta-p/1188)\n* [How do I add a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-add-a-grading-scheme-in-a-course/ta-p/1054)\n* [How do I duplicate a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-duplicate-a-grading-scheme-in-a-course/ta-p/601384)\n* [How do I edit a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-edit-a-grading-scheme-in-a-course/ta-p/601385)\n* [How do I archive a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-archive-a-grading-scheme-in-a-course/ta-p/601386)\n* [How do I customize visibility options for a course?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-a-course/ta-p/844)\n* [How do I customize visibility options for course content?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-course-content/ta-p/814)\n* [How do I set a Creative Commons license for a course?](/t5/Instructor-Guide/How-do-I-set-a-Creative-Commons-license-for-a-course/ta-p/1059)\n* [How do I include a course in the Public Course Index?](/t5/Instructor-Guide/How-do-I-include-a-course-in-the-Public-Course-Index/ta-p/812)\n* [How do I set a course format?](/t5/Instructor-Guide/How-do-I-set-a-course-format/ta-p/1089)\n* [How do I change the format of a course ePub export file?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'emphasized_text_tags': '["span"]', 'filetype': 'text/html', 'category_depth': '1', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5de98e40-d933-49c2-90eb-c286525861b1', 'payload': None, 'score': 90.64511634021032, 'emphasized_text_contents': '["How do I manage my Canvas notification settings as an instructor?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "5de98e40-d933-49c2-90eb-c286525861b1", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-manag/e-my-Canvas-notification-settings-as-an-instructor/ta-p/1222", "filename": "index.html", "filetype": "text/html"}, "hash": "3d1a042c6d4a1bae721210c0a10127a1615064bd928e2854d5b7c96e2e2f1134", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16302703-378c-45c0-9106-9ad07470f8e3", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "860beb54725152d1658bbd2172b5f691ae88263f5cc891530405e4e0ab8b697e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b26b7f66-993d-49e0-894f-a130d7cd1140", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'k\x0fpB\x15\r\x11\x1d;uYº\x02\x06Bd<\x15;I\t\x7f\x03=U1[}:iKW\x1e=\x0e;{n伢ږ< .\x1eF<\x1260=8ahP\x12<\x0cļW=<=%\x07=kP<>6(=,;*Cܻ@\x03*|ӓ7<\x19\x13\x00=B\x0cZ;MW=\x07\x0bL=\x1dg<\x02\x04<\x12\x1f\x1a\x1e=ڟ\x7fK\x16=\x01I\x1f<\x19\x04q=9Y@p#T`:,q;`%\x14ԡ=R2,\x17;\';)] <.\x1e\x00=4eȻ:;\x12wnʀI*`L9Q+K<\x1c<8=\x14w\x01ؼ\x11=\x1cL=(\x13t!r<*\x13\t=\x15Rh<\x06\x0e=ɱ8}<9N[<\x00=\x1cU:d$N\x13\x1bRh9W<<\x12\x1e;\x1e\x05H^{;!2=+\x1c#\x1dg\x19\x12n\x07"/y;R"缬\x19.\x1eN\\=\'VG\x11mm\ncg9\x1cL1=Ik\x1eA\x13R<\x11<\r,= \x07\x10<8qG\x03dCo\x16\x19\n\x08<\x11w`:=\x073;Y=T\x1a\U000bc5bdKH\x06f\x04NG\x1e<09p<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG\x15<;2;\x1b_=4n탪;X/\x086\x1d4\U00082f08y<[\r:ŀ\'\ue17dʢ ļuh2<ě;e\x1e){W\x16w;){\u05fc<*!|\x1c^Bɼٺ\x15<8;#b.\\\x0b~M\x0fڼ.<\x18\x17MU\x06=o<<==P9\x16w{ag=҇;`\'\\=%to\x14~$<ðB={\x15b<\x1aʿ:j<\x08\nKi;H=)&=G\x10UN<\x07B=E\x03H:b\x05\x161ֻ\x1fu<U;\x0fr;נ?>q \n\x19\x06<\x18T<\x12\x1f=r\x06=\\\n\x0e\ue188N̼RƼ5J<\x0e0̟\x06\x00K=$x&\x00\x19%\t:^\x17=\x1d숻\';༏6;A\x15a\x1f<<~<\x1f<0_e>\x0fs7T;\x1b(U\u07fcR˄\r9<=aҬ<\x17\x13\x04ς[i\x02YG\x11yA=\x0b̉f5=s"\x1c<7<Lj\x12y輙5v_8o6e;gP\x07\x18s7(=Ҭ;\x07.ٹ<\x0c\x1c<\x1b(h=6\x0b\x04p:\u07fb\x1c>=F=6\x0ba^;B8<-Sog<>$K>\x1d`(:4\na;\x1f=$x\x14*6M=\x0c\x08XX;\x10ym\x18k=S\x04;\x14==\t\n<\x02L9\u07bcA\x155ʔSX \x19Y\x07,S469;\ta<4eJ#<^\x17\\мb!\x01ۻ|)=V8;\x0c\x08=ҀΠR<č<\x1cΠ<\x0foI\x1e=eF\x03\x02=Y̟*f|\x7fN=A\x15=1"#b\x0e=O<=oѽw\x11<<\x18(=\x08`L6ۼP^ּ7\x10Gp\x1d\x1bm<<֢<.G\x10d\x18=ɼ^⇼oѼMȺz۩;ź]D:]=\x00\x18;B;#\x10=N\'\x1a8\x19`_NV@=igoo;\x08<\x1e2<\x07\x13<5%:;.\x0bpD<\x0e_:\x12e5@6Y:\x04J=\x17gB\x01s\x19=bݍ\x1a,\x11J(;\n;WG<\x1f!\x0cr<=\x17\x11\x16\x0c%\x07\x14>w;5%\x1e5;ka\x19E\'m\x15.G;/26P{"=.\x0bp=M(Я\u05fc9=8\x12=><ͮe\x02=.h;\'uD(?=u<*\t?\x02=a|(o;QK\\<\x13`3ļ:l+?\n:\x16\x14<3:ɖ\t켏H=r\x19`=y;j\x0fD\x04,1\x19J\x1c\x11<;պ\'\x08<}u<%\x0c%L+Jpx?={H<\x02W<5:\x15ּx\x0cW\x13=摽V\nʺ=~ %T&=k\x1a\x1d;\x1a;:ē^=?P93\x15<@\x07mfZ:OػCw\x15ݲ<>-έ r7Y;PI^\x05\x10<5<(ȉ;:̡_\x1d=\x04\n=@1ż\x1eQdT<\x15%=D<\x1cU\x19=\x18T\x01;cg=\x10tA\x10&\nH.:Bk;w;\x0f<&\x13~\x0eX\x1e\x02=v=>m3Qoϓ\\\t<{l\\T=¼ r7g=\x01>A|1C\x133V|]Z=v=>)Ye+<\x1et<`\x05\r<~\x10=l\x17\x01<6jbu<証\x010\x19N<`P\x04=@T\';[AR\x1ca6\x17\u05fc2<:Uy;(|<\x18Z<+oqJ1\x1a\x16\x1ch^B+ZH<<,<5V=\x07+9j<;\x1e:d\x10>ɏ;\x02[=Ӈ<\x1eoɦ;V\x0f.X\x1eh?=\x1fJ\x12/=\r;;`<,M\x00;1\x1e7\x07^10<\n\x7fTIv=\x18Y\x16\x18;W0^=\x1c\x19<\x13\x0f<$\x0bZ\x00\n<.<6z<_<=\x0cW<9\x0eQ=n\x19<\x1c1=+_<0=o=\x0c\x00a{:{:k\x03"ȵԼw{b\x1e=\x1eʼ\x19>90\'2<,UY<ƸzJ@\x19m\x15=aC\rRϼh\x0bւ\x17=<\x05=\x19LF\x17#<3=B\x1e{\x06Kʌ=c=\x08=$\x1b06\x01=\x08F\x16r\x0e\x1a|=I\x19<;#\x08-]%\x0374\x04\x1b;(cM8=\x08=#t\x1f\x12k<\x0f\n\x06v8\x18X<-(2\x02̈<6;dv<2TI<2==\x10)༃r\x0e.8\x0c〼\x1e=Queᖻ\x08\x17컅\x14==\x03\r<آ\t\x16<{zS㼠\x05i\x0b*\n=[G="\x1ew\x18=\x12ps+ĻZy \nSP\t)\x022=;RM(\x11<\t\x15t<\x1b_=;vY<1BFi\x1b=\x1f<\r5<6mW\x1bE=*=8<آ\x13\x01\'ޠ:;JD&=jX{Wܶ<<ƨ\x07Rϼ\x11!=\x01\x13\x1f;\x02=9n+&\n<<0{\x11мkh.=!L\x10<\x19\x0e nFQ=\x1dީ=\u0557;H\x1e\x7f\x04ּ\x0f==<\x113Swo{<,=%\t=sa\x19TH\x0e~<.B<\x7f=~z;FtkK:\x05,`\x0e꽼;\u0ad5u\x08w];ȼ\x0co:q<;m>\x1e+N}\x18<:2"=\x01!ϼ\x16<\r=\\ʊ<Ȑ\x0f\x10\x1f<\x7f.\x0bR<\x19-4z\n=\x06o\x15;B;=.\r<ڊ\x1bB;>k\x14̎ڼ\x05r{\x11<<آ\x13&竻OegF9%;<\x7f\'L\x1e0BFNI;<\x0c\x08<2;\x01QvY6üw<\x1a_˼NZS&<\x00?\x11y?\rwS<\x15a;WK\x022={W<=h\x08==Ҥ\x0f=\x1d\x19=\x12k$=t={):6*NY,7\u07fb\x7fm\x1bk=x\x17:BA=p<L\x19!ki=.ͷ:<<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nLibrary Spaces\n--------------\n\n \n\n\n\n\n\n\n\n\n\n General Rules \n\n\n\n\n\n Study Rooms & Team Rooms \n\n\n\n\n\n Functional Rooms \n\n\n\n\n\n Wind Finance Lab \n\n\n\n\n\n Multi-Media Booths \n\n\n\n\n\n\n Please follow the general guidelines below to use the Library spaces/rooms:\n\n1. **Open space seats and study rooms are on a first-come, first-served basis**. Please take your personal belongings with you when you need to leave for more than 30 minutes.\n2. Do not use personal belongings to occupy seats. The left items will be cleaned up by library staff and we will not be responsible for any loss.\n3. When using **functional rooms** or places with equipment, please send an email to [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn) to make a reservation, then go to the 1st floor service desk to exchange your ID card for a temporary key card after the reservation is approved. Each reservation is limited to 3 hours with additional 3 hours renewable. Course reservations will be given priority.\n4. Please **keep quiet** in open space, use team/seminar rooms for group discussions.\n5. **Telephone booths** on the 3rd and 4th floors are available for phone calls.\n6. If you need to move around furniture in a particular space, please return it to its original position when you leave.\n7. Please keep the environment clean and don’t litter.\n8. **No eating** **on the 3rd floor and 4th floors.**\n9. You can [check for space availability here](https://dukekunshan.emscloudservice.com/Web/BrowseForSpace.aspx#), but please note you cannot reserve rooms on this site.\n10. Contact to reserve classrooms.\n11. Follow any additional guidelines for other special spaces listed on this page.\n\n\xa0\xa0\xa0\xa0 \n\n\n\n\n\nStudy rooms are on a first-come, first-served basis, and we don’t make reservations. Reservation is required for events and classes in the team rooms.\n\n \n\n\n\n\n\n| **Study Rooms** | | |\n| --- | --- | --- |\n| **Floor** | **Room Number** | **How many people can fit in?** |\n| **2F** | 2103 | 2-3P |\n| 2109 | 2-3P |\n| 2111 | 2-3P |\n| 2117 | 2-3P |\n| 2119 | 2-3P |\n| **3F** | 3101 | 2-3P |\n| 3102 | 2-3P |\n| 3105 | 4-6P |\n| 3106 | 2-3P |\n| 3107 | 2-3P |\n| 3002 | 2-3P |\n| 3003 | 2-3P |\n| 3004 | 2-3P |\n| 3007 | 2-3P |\n| 3111 | 4-6P |\n| 3112 | 4-6P |\n| **4F** | 4101 | 2-3P |\n| 4112 | 4-6P |\n| 4113 | 2-3P |', 'ref_doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d6d27406-84ee-4f2e-8fe9-40d837477efc', 'payload': None, 'score': 16.06860192312335, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '156358', 'document_id': 'b921af15-be3d-4648-a832-9eff128b796a', '_node_content': '{"id_": "d6d27406-84ee-4f2e-8fe9-40d837477efc", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b921af15-be3d-4648-a832-9eff128b796a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "944bdda3371daca1284fd390ca0a29a9d73fc0764ea88d2c55fcc8bb495cf062", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f14b732-8c96-4cc7-aab4-34c23342640b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "b811c1fef340a9b0e4ac9860aaf0bcb4eafbaec57628f2ce4f38eb3f1faa6f9a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36aec92c-b4af-4794-9536-0cf40ffc99bb", "node_type": "1", "metadata": {}, "hash": "9f61e90e3cf6222cad0453557dba29fa4656b2d87ad996c0b95a8bf1221add9a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 38850, "end_char_idx": 43900, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', 'vector': 'ꁽ\x18;ًL;;\n\x0bBXb\x07<\x10.\x1e=FB<1;Ҽ?\x17=\u197bwI|Q;\x12;{eRWŜLüY\x05=،<\x062ҴbEnYg\x17l$\x17\x13=ND1=\r!5"G<\x15\x0eD(!\nh\x1ab\x1d=\x0eV<\x07=h`\u07bc&=\n\x1bd=3u<\x1d;k[:\x04PО퐟\x1an(|<_:=7v<\x15aR\x00Ǒ\x0b<<<X=ԼbL=Bx<\x00f=jZr=\x0258r=<;fK?7)Q\x02\x7f<ܔo,:,\x19C;<;\x03\u05fc@To3\ru\x03=Vt\x02):s\x16=6\x06\x13V eRWVP;@?ޛ;+0;(\n?k%ڍ=*\x13<~ąw\r N\x07=;;ll\x14\x0b7)Q<;lI+"~\x15j\x06\x1e3=&+<@<¼v\x08̢BXg=\x0f=. P\x0c=^9=J<֡ٻ\x06\x172Ҵ:<8"9=!\n*9\x11oŻbLp8\x00\x01v=6b<;ll;RZ\x1e\x11\x00(=m?k%=Pp<', 'text': '* ***Time:*** *10:10-10:30 & 15:00-15:20*\n* ***Location:*** *LIB 3015 Tea House*\n\n \n\n\n\n#### A Brand-New Learning Resource Centre – Your Gateway to Learning\n\n*Xiaojia WU, Assistant College Librarian (System & Facilities), Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nIn this Poster, we invite you to step into the enchanting realm of the Learning Resource Centre, where the pursuit of knowledge has no bounds. Building a brand-new library is to build a knowledge palace for readers, thinkers, and dreamers alike. This poster provides a glimpse into the myriad treasures and opportunities that await you within these hallowed walls.\n\n1. Exploration: To embark on a journey through the vast expanse of literature. To discover books spanning genres, from timeless classics to cutting-edge research.\n2. Innovation: At the Learning Resource Centre, we embrace technology’s transformative power. You can dive into our digital resources, e-books, and interactive learning platforms.\n3. Community: A library is more than just books; it’s a vibrant community. You can attend workshops, book clubs, book fairs and lectures that foster intellectual growth and social connection.\n4. Empowerment: Knowledge is the key to empowerment. Highlights the various educational programs, information literacy instruction services, and career resources that are available at the Learning Resource Centre.\n\n \n\n\n\n#### Learning Support through LibGuides\n\n*Jane ZHANG, Reference Librarian, Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nAs a common practice among libraries, LRC makes program guides to help students of different programs to learn about library resources and services related to their study and research. The program guides enable us to further consolidate our collection to the requirements of program syllabi. Previously we stored program guides as PDF files on UIC’s Moodle – iSpace. With information from course-related books to databases to library services, a guide can be more than 10 pages long, and not very user-friendly. This summer, we officially move the guides to LibGuides. The platform provides us with more flexibility and possibility to present library resources. First, with the “page” function, the sections of the guide are more visible and the organization of the guide is straightforward to the users. Second, LibGuides allows us to add more functionalities for better user experience, including direct linking to the resources, the support of multimedia contents, adding notes or contents without disrupting the flow of reading. Furthermore, the guides are cross-referable, allowing the library to build a complete information literacy program to facilitate self-learning.\n\n \n\n\n\n#### Practices and Challenges in Academic Library Space Projects\n\n*Pin WANG, Team Leader of Library Operation Team in XEC, Xi’an Jiaotong-Liverpool University Library*\n\nThe poster looks at the practices and challenges in academic library space projects. It consists of 5 parts. The first part identifies the user activities in the library, such as collaborative learning, individual study, library classroom learning, socializing, events and exhibitions. The second part shows the functional spaces in the library, including learning commons, group study room, training room, reading pavilion, research commons, outdoor area, exhibition area, etc. The third part summarizes the most recommended practices of library space projects, including communication between librarians and users, frequent meetings with related departments, visits to other libraries to find out good designs, etc. The fourth part tells us the challenges and solutions, such as noise reduction, seat occupation and power outlets. The last part shows the future opportunities of academic library spaces. With the development of artificial intelligence and education reform, academic libraries are facing their challenges. In the future, the library should merge into the innovation ecosystem. Space innovation such as demand-driven and technology-supported labs to enhance user experience may be a very good start.\n\n \n\n\n\n#### Professional Excellence: A Library Assistant’s Growth Path\n\n*Cai YAN, Library Assistant, Duke Kunshan University Library*\n\nThis poster will share what professional qualities a library assistant should possess and how a new library assistant grows in the workplace.\n\n1. Learning by doing: This part will share some examples of how a library assistant learns from doing everyday work.\n2. New library, new challenge: Moving to the new library also brings about new challenges. This part will share the case of the DKU Faculty Works Project about how this display project turns from proposal to reality and the constant process of occurring and solving problems.\n3. The nurturing of leadership: This part will share some experiences in training and organizing student workers, thus shifting from the role of a follower to a leader.', 'ref_doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:75b0644f-1aa4-48e9-8944-0ad15f0edc50', 'payload': None, 'score': 8.944652793411237, 'document_id': 'index.html', '_node_content': '{"id_": "75b0644f-1aa4-48e9-8944-0ad15f0edc50", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "152dfeb0-eda7-4982-885e-b8bd274fd1aa", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c646a76d-1b42-402a-a04b-29eeefc6ee86", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x03c\x05?nTG\x13\x0f;1yӼR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 8.944652793411235, 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 8.944652793411235, 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{25414 total, docs: [Document {'id': 'test_doc:8745d118-8855-4f70-a6dd-53086aa330e2', 'payload': None, 'score': 15.477395079429096, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '606481', 'document_id': '4fb1f210-5642-42d1-831a-53f92e667688', '_node_content': '{"id_": "8745d118-8855-4f70-a6dd-53086aa330e2", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4fb1f210-5642-42d1-831a-53f92e667688", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "87ac1d3c110cace183e1cde6bb7c69f8a22d7dd10684f927b5763e29f618e239", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7e92b642-2a2c-4bbc-91ce-5fb57144c37c", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "2c5d8b42b665ac980937af682c9a50e745710c98c93af11165c2a7304281672b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "daf670dd-f0fa-4846-b35e-fc0bbda325d9", "node_type": "1", "metadata": {}, "hash": "caf9549fe9321dc41aaa420a5d387f812a6746fc750f6ec1772317c663d980a5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3815, "end_char_idx": 8704, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', 'vector': '"<;0K(K\x11̻ H4;.ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 11.008880660696656, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 8.454732360868446, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{34021 total, docs: [Document {'id': 'test_doc:bb7965cf-f1f5-491a-8e9e-f4a445020834', 'payload': None, 'score': 31.051525444173286, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '14059448', 'document_id': '9062de26-2e99-4ef8-83be-fce73f42201a', '_node_content': '{"id_": "bb7965cf-f1f5-491a-8e9e-f4a445020834", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9062de26-2e99-4ef8-83be-fce73f42201a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "hash": "c83c94e9785880140b7941400c4b3a2a5f285c0c603ac9c7d1d52aa192026347", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba356a65-50a2-48fd-b1fc-f967a9e6d437", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "hash": "4bbbcd119b451fb66d451fc33a8695c59c970047e95a285666822117512c143a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8be234a2-0105-48a9-8e87-18cf52777101", "node_type": "1", "metadata": {}, "hash": "5f71991666afb3f94bb24ec11d8905fec45505977419b92e10bf8505e81e76f5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 43356, "end_char_idx": 48146, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf', 'vector': '-4&\x1d\x1cļ=T;G\x1bN\x0c<,\x19=\x15ȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Failed to export batch code: 401, reason: Invalid token -Result{22121 total, docs: [Document {'id': 'test_doc:454d0646-49dc-456e-a909-ebf5741a1147', 'payload': None, 'score': 50.53752520230127, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '599676', 'document_id': 'ffb8a4bb-f4ac-4c6f-bd78-cf7592b543b3', '_node_content': '{"id_": "454d0646-49dc-456e-a909-ebf5741a1147", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 599676, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ffb8a4bb-f4ac-4c6f-bd78-cf7592b543b3", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 599676, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html"}, "hash": "fc26bfbd7f39ae39bcd625eccaac0a34fbd334f8a5a42d3f1b1fdcb58264bf25", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ea0b6179-fc4c-49de-9cf1-d2f643b15c76", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 599676, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html"}, "hash": "a7e251954d2d28ee33e5abfd3e831cf482c52bc1a8b830c58b38e9d8e285b2a8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d4f9a572-0e9d-4420-a973-991026fad085", "node_type": "1", "metadata": {}, "hash": "418833b606793add31a3a7ccba4f3b22e7ba0f02f72e12e6f79f21623084a065", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3404, "end_char_idx": 8168, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html', 'vector': '\x14b\r蜓\x13m8\x17tb֊5獜VX\x18H\x08;w#*\x16vLp,=7#\x15NR>=\x08\x02\x16=\x17H<\x08י;\x16Ƿj:2<1;=96Uʼ7;5λ4\x1bڼ(hk\x10]*=\\;Hi6<&hl=r};u\x03M=gM";7<\x18%=4\x1bZ<ȍU_Ӿm\x18=nC5\x1d;y4=sHe<*\x167˜U<\x08\x11y4\x04<\x0eU\x10ȹ֦;9m=V=-;\x16d1Cw:so;,s\x167=Y\x00:}<\r;HR}\x157;\x12WE<\x1aw?=h<( <;A^\x7f#<4b[=uϺ\x19h\x03&(\x10=9\x08\x1d\x1c\x14f\x173VY;\'\x1c#p=r<6f-^\x15֊5<َ):=Ӻ3;8[9\x1aY2;h\x12=碌J\tM\x15\x0cмSb<4\x1a<\x17H4bۻ\x7fd \x1b\x03\x12\x10\x12\x08=Hz<<$K\x0e\n4A#;o\x03=\t\u07fcG)<<\x14z\x06=vƶ뺭X;\x02;\x05GӼ\x0bm\x06\x1dU<{\x15̼\x05t\x0e\x1abK=>2\x08E:/?}@<\x19=\x1d\u07bb\x056=\x043=*6<\x17MQ=\x13+;|Ղ;O缚Tu{=0=tp\x0c=8n<)a\x7fou<\x0e==3Ox|\x08;C\x05=7\x1bڻ?Y?h<\n\'Q;Wg3<5<(|O?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 42.94798667588227, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;t]\x01\x11:\r\r\x13]h9xŝ\x14\x071.Ի\x1f\t.<}=\x01a\x02<ࡊG;#:/Q;a\x150\x14M<\x0f"~mF D8<\x17b%; Q9܌<;wJ_t*\x1a\x17Ӫ.==<ͼU5\x13]/Q)\x17L;T\x1eT;ή\x1ac<>Z=dA<13;\\\x19\x11~\x1cN=\x11w٦B*=ڽ\x01=Y\x08)&;/=vji;=\x174wy;ۻF\x16=)\n=\x1a<\x15d\x1b\x17\x173[<Z;;0Q=i;-<\x06)<<\x1a\x03ż\\i~<\x1aO\x04+\x00;6G;t;\'z<\t&:Mm\x10h\'<ڼ\u05fcVsil<\x10\'~\x1c;ѿwy)=\x1b,{=q8<3\x1f\x03v=p~<\x02;\x7f\x11<08tq\x18se;2\x08HL\x7f1:=\x11mR=\x1etNq86E弓6<ݣ\x00=\'VaP=\x1a錼\x02Zl=)U\x15L{\x15d\x1bT\x1eԻ˰<6\\8b;\nkM59IQ\x0cSZse\n\x0cd\x0e=0\x01\x06\x0bq\n5]*=\n\\u\\=& =J1\x7f1=B,\x0e=ͼ:\r\x16;\x17-\x11!SE(?]\x10\x0e0=Tx\x03t:\x16L\x10=>I<\n+=Ի*hc`1ͼ5cR\'V<.\x1ee\t_\x06?9\x04;@C\x1cӥP<1E\x07=L\x129~nP=A#(=gpa\x1d\x0bN\x06;\x04"u<\x01;I@\x1f=-N8V\x06;<;;\x15\r<\x06;o\x069\'\x07_=D\'/\x00л@12\u07bb\tQ<8ii.\x1cJa;A\x15<\t\x19;=/JcoQK\x06@=b\x01s=\x08-\x06*|a:=\x1b9&%K=Ed$ϼO\x1c/\x05T<1Ƽ{;\x02\x00\x01=\\,\x18;Q\x0f<?;h\x1f9=\x1a;8i;Ct<\x11砼r;Xz\r-;̚R9e\x08\x1dZ;ݯ\x14\rR^X\x0f<\rl=aK;}=m:ԾW1~yEyFW\n/<\x04\x16<ɼ\x0e-7S:b8\x02Wv78@<\x05cji>\nP*\n:@)=Y;N\x1eWW5\x0b=i>\n=X/5f\x0e-=bXc<\x0e\x01R=P*\n+%ӼҪ;6h:\r\x10m\x06;;\x15z=\x1f\x0b;a)\x06=.\x0e@<\n<\'\x05+8\'\x01PL\x05=?2X<=q\x0bG(ü&幻D\x0e=\x16=\x05+<7\x0f¼q\x18)\x1fq\x0cڷ\x0e2?z^ʼn4=\x05ƼIQ=\rW5\x0f/\rt;b$\x05\x1b\u07fbXs<8Z\x16!=ꐼͼuy?T=P5xQ[=Ay#Dz<ʐ\x04Q\x7f\x0bA=J\x0f\x1b3yo<0\t=55eU\x1cN\x04=\x1ag^=\t"\x0fǻjYja<\r=\x12;\x13`ù\x19T;Yܼ\'\t.-kd-9W1;ob=1#ZU34<}=9<-\x16/=!\x7f<\x1e=ۛ\x170+=\'@qDC+ǼHƯ=<\x1ajY\x14\x15*G<ݱKμgV=s\x12;?\x0b<5\x04\x05\x15^Tp;0i\x1c=I\x0e<=HƯh1\x0c\x0c0pN;L=!L=\x10;\x0fw<@\x13iܞ<)J}&;<\x02?\x16&;A㶻æ<\x0c$ݼmsk$/\x01\x05<=\x1b\x16a՝;\x18\x04\x1fq<[\'F=\'=ɻ<\x01XV=\x07C;j.=Oi=_ͻ\nF\x10"\x14\x12\x1ewf=+q=|id\x10\x03;~;\x07L=\x10;C|=\';V=Njp\x0b=zAټi:zA;\x1aZݼ\x0cW<跮伂\x13Ul\x7f\x1f6B<[\x0f=c\x07n<;\x1b%\x1fi_ϼM\x1c\x18Jsu<\x1eP<\x00<&[:\x03Ufz\x7fz=5\tVg<\x1c;(+ּ1!=9=:\x1b۬j:l<\x130\x1bܼ̽GK<\x05`9PP<]\x0fe1\x06<Τ8=K;q}>\tc;K<ʫ\x08:!=v*\x1eg:c<)$\x08=\x1b1gU=㛰< \x18aA&k(֏Cm<^N2?-pGo\x1f=*5\u05fc̖9Ci<:=^~*E;\rf/;ȝjp<\x18Bm9\x7f<][Cɾ\u07fc\x1c꼽B?=l{\n\x1aV8S^&2\x08,<䎽*\n=\x1dZ1uH Z=~4<<\x14\x0cGp@<^1\x15Qs`y;Z\x02=\x19=\x1d\x04=<ب1=9즺Y,Kܾ\x0f=<&\u07bb\x03=\x11\x1f\x13\x1a;6,\x0fo\x08;O\x12~\x10:\tH=\x14G=X\x02\x18"\x0bm,?CB)=e<\nֺ<\x07ft<\x1f\x16<-ʌ=;-\x14\x04;TC:\x1deʼZ;\'kڼ}NP\'+=;i"D\x04Dq;\x0fo=\x1eWuc!㼝\x13;1$%;O\x04=\x1b\x07=`;:;e<\r\x15ؼs\x05M\x02vB=\t#<֝B<7F\'l>:\x00\x0c=z!=NW=̼\x12<\x12I=e˽¼OU\x1b=;\x1cB"=C=ӻ>\x04vS; \x1a73E^<}Չ<$]?u(=\x0b1\x13\x1f&W*+ +c=κZ;tI\x04=;,<}\t;qĊ;\x0fI\\=\x051o2⻌R\x05=\'kڼ"I\'\x13<\x1f=f\x04=S=\xa0\n\n\n\n\n\n\n\n\n Frequently Asked Questions \n\n\n\n\nWhen your student comes to Duke, there are always questions about university life, including selecting the best dining plan. To help select the right dining plan for your student\'s needs, check out the plans described in the "Plan Profiles" section above.\n\nIf you have questions, contact Duke Dining\xa0at 919-660-3900 or\xa0[dining@duke.edu](mailto:dining@duke.edu).\n\n**How does the First-Year Dining Plan work?**\n\nThe First-Year Dining Plan is designed to enhance the \nundergraduate experience. Centered around Marketplace, the main East Campus dining facility, the First-Year Dining Plan provides a wide range of choices and fosters a sense of community through dining.\n\n-BOARD PLAN: Students receive 14 meals per week for dining at Marketplace as follows: \n-5 breakfast meals (1 per day, Monday-Friday) \n-7 dinner meals (1 per day) \n-2 brunch meals (1 per day on Saturday & Sunday) \n-All other meals are purchased by way of Food Points and can be used at any on-campus location,\xa0 Merchants-On-Points (MOPs) vendor, food truck vendor, mobile-ordering, or campus convenience stores.\n\n-If a breakfast meal is missed at Marketplace students may still utilize that meal at The Skillet (Brodhead Center) by 2pm, at Trinity Café from 8:00am-12pm, or for lunch at Marketplace from 11:30am-2:00pm. The swipe equivalency amount is $5.70 and anything over $5.70 will automatically be deducted from the student’s Food Points.', 'ref_doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d28b1dee-0129-4bff-aa4b-713d1852ad80', 'payload': None, 'score': 19.888226658218823, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '81625', 'document_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', '_node_content': '{"id_": "d28b1dee-0129-4bff-aa4b-713d1852ad80", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4b7d8b1e-ea97-4931-9d28-4f74876bafc0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "06d84dfad93dc9440c05a73eecc088556df596178b7b4c3735ddd6cf91a1abea", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b9804bb2-aed2-4e49-8177-a1042b494e41", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "ab6de2f8d496838bc4d558fab517f7136b2dab6b3a3bbbade681d455f1e01718", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43aa2b93-9f7d-442d-b104-cd44eb2584e4", "node_type": "1", "metadata": {}, "hash": "2822754110ae2cd497d63424e85ca2d3e1d42008c583c1b1eccae8d784c2a4a0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2882, "end_char_idx": 6756, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', 'vector': '&ރ%\x07gX\x7f|UCߙb<\n \x02\x17S<)=b\x11Iǀ!\x0c=M;>\n=Ӓ\x02+ î\r{ȼ\x10<]<+=<\x1cMw6\x1d<\x0c<\x03="<&\x03<\x08\x1cN\x11);Ct;\x02ma5\x18;(.;,9;:ޱ&=H:)\x06\x06@wJ\x03\x7fɦ\x14gu\x08<)v=ˍs\x0b=\x1b<\r_Ly;\n\x02|;y<\x12"=).<\x1c%=0l/K;\x1d=BB5t:;<\x18\x0e\x13=4z05\x0fj\x13\x14\x0e+F=y\x19l\x0f=yHg9\r\x1c\x1a=ѭ\x1c<(@\x08:\x08\x0f<\t4\x02V<\x1aOxN~/u1\x17GZ\x12g\x1f\r_=GF~g9C\x04f\n^#\x0e\x188TQ`a5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհa5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհ<\x08,g=Dd;b\x18=\x06a\x13żzv8\x15\x10"=k\x1a=h|r\uf500hٽ\'=+;Cs\x15\x12R\x07=>=Z03;\x06=\x15F=\x11=\x0b<\x13-)7\x1e|;Cw\x16\t8\x11~=\',<\x1c~ؼZ03\x05t8;\x18=5"<+\x11#Qf<)\u07fbrX`z}\x0f=\x00<\x13g=XɁ:k<\'@<:%=u\x13=[<\x1d)\x11;9\x0b\u07bc/#諼Z::%&\x147?\x03S=n;oY?u;l\x1c0=C<<\x1cݼl;\r}<\x06o]N!=N\x1b<&l0<\x05\\\x14\x07=̯<_Y.<;t̂;}\x1c<[\x04;<=;빼\x0e}[ DF$e\x0eZy!\x05=bVv<Ć<\x17b<;<3<>y\x07WQX<$\x1f<)\x1b\x14\x16=\x02(=rH\':ц,Io*\x15=\x0b\x0e\x1c;V{\x18;Fb*;\\\x7fvkMŻ+<;0\x15;G\x1d̼3\x0e\x18\x05\x03-\x0ek"6E;DT;;<2;\x1d\x1b\x00W(a\x16\t<1D\x13EL=Q0OG\x1d̼.\x08<\x11n<\x14W=ȩAB<<\x0e= ,=#\x1d7\x04%f<\x1a<`>=h;5$=?<\x7f\x08;T<9`T ^\x0e]|V\x1et=n(\x12<\x15Bs \x11\\7z-F\x04ἷ =<;y\x0b\x18|g\x18|`\'=\'H;\x19滠/M=7\x03]"<\x1e;|~<`(ۼH6\x00uꑳ.{K<\x008<\x18yc\x07;m<\x16CK\x19+=\x0c;\x1e=^x5p\x19\t\x149\\4\x00Dc2D\x1d=v\x0c\x11;-\x10=\x01@Fr<#%;%=CN9O!{H˻oke\rPUˣDTXS`G/=o˻\x116=G/<ؼ\\\n=H<\x00=.)nUW<3C_;\x1fϻ:QV\x1f=CNՂ.O<3\x18<\x0c;\x17<3<|=0G\x10Y-; \x12F;YR}O<<~ڼ\n<\x18\x06b<:k\x1dc\x04(p=ޤ<лDPp;Ļ\x04Qi"<\x0eMB͝=\x18eP< Mw<5=O=f^D\x05Bظ;bp\x0c==<\x01\x1faB823*9<\t\x01=ڧ\x17`BR=p\x0c\x11&B ۩μ6\x085ȼpGԆ\x0fk\u05fcûiG:=*̼\x19|bY-%\x16\x04+.=\tw~3v< :=\r\x01\x1b=\x03\'\x16RV=B\x0178d_T]WC=3[:\x02;\x14>gp<\x7fM;\x03c=\x06C\x1fz=yX~p\x10V+\x14<\x1c:ӼD<&\x07<@V5U=&\x00w\x1f\x01\x14=6<\x1f<\x1cQP<\x0c?=\r\x12<\'ԗ5F2c<\x18\x1bf?<~LѺDr=!\x19\x15avoݙ^M;*mtx<,j=B*{|b1w<\U0006837c\x164\x16=\x05:+;6#GC=n\x05<8;\x04-\'d\x1c;:%Lj9м<\\;&<Z;KMz<~:;<9욼\x06k7\x12=,,,=\'w\x1a\t=#\x12E`8FI=q\x1d<<+\x03<6<\t\x1dV㼉qüsy;Dq܁\x017\x1eCL%0(d\x19<`J\'Ja\x1c-\x1ae\x1f~<\x0e\x15>x\x0c{=A8<=\x0e\x06G;h}~\x14\x0c?\x06\x17=7\x18\x07`J\x19䑼^m/\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{27999 total, docs: [Document {'id': 'test_doc:daf670dd-f0fa-4846-b35e-fc0bbda325d9', 'payload': None, 'score': 178.16351987396254, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '606481', 'document_id': '4fb1f210-5642-42d1-831a-53f92e667688', '_node_content': '{"id_": "daf670dd-f0fa-4846-b35e-fc0bbda325d9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4fb1f210-5642-42d1-831a-53f92e667688", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "87ac1d3c110cace183e1cde6bb7c69f8a22d7dd10684f927b5763e29f618e239", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8745d118-8855-4f70-a6dd-53086aa330e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "5651fd8345134c058d56162b31c2d359a36a8da0c5fe52c9388c3bf0acdb18da", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2c937b77-e7da-4784-b17a-a43eb546d78d", "node_type": "1", "metadata": {}, "hash": "6e1e08893619d95ad004150eab2ec01a3d4affc3902e82c6c676587e60dbcdea", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 8678, "end_char_idx": 13255, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', 'vector': '\x03Y?Q\x195Q4ϭ0:M\x00;\x038\x18\x01\x0c<\x15>=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n 1;\x1a\x1b=3SbA,\x14e\x00Y=L˼N=\x1c=\x18=Ur=\x04y.g<\x7fi黌);F\\<72*<\x01>\rkw\x03\x14R\r\x10f;\x1b7;>;Kܼ&=\rs\'\x0f\x0cj\x08\x14!n\\\x12,@\x14\rOW=;]=7b=;<\x08;\x1c<;Xy<4#;\x10<)@\x0b8%٭Fb\x1a\x1bk<\x18<<\x1fu<|z<_\u07fc;\x1eކ&c=\nu;\x11=\x08<\x16\x02\x03V&\x1el<;04)\x08\x14!d\x07yuz=\x05ӭ\x1d\x06f=:-<`ּ;`\x00=8%;\x10><\x107^|(T}Ἥ\x16;vh\x02=\x0b\x03\x01\x16yd;\x7fn2=06<3S:;<:\x11T\x02=\n<\x06<`qE3S;rD\x0eO<`\x0e\x0e1\x19\n=Y~ @*N<(N4#2g\x1f<:q}\\ <׃ \x1f\r\x01q<7b1me=\t\x02=q<\tk!<\x10>:\'\r', 'text': "His research is not limited to air pollution, but also covers water resources, energy and climate change. Recently, he and his team have been working on the top-level design of China’s carbon market in order to advise policymakers from an economic perspective.\n\n“There is still a long way to go before these theories can be put into practice in China. Perhaps the changes we can bring now are tiny, but as long as they are useful, or they are positive, our return to China makes a difference. In fact, no matter what you research on, not merely in the sphere of environmental studies, so long as you are concerned about the environment in China, you are moving in the right direction,” Professor Zhang said.\n\nIn 2003, Professor Zhang travelled to the US for his degree in Environmental and Resource Economics at Duke University. He planned to pursue his academic career in the US, and meanwhile became a father of two children. He enjoyed sharing his thoughts through academic papers as much as sharing the lovely quotes from his sons through social media. He was appointed a tenured faculty member at the University of California, San Diego, and it seemed that his story would go on in the sunshine of California. Then he made an unexpected decision: he would go back to China to join the recently founded Duke Kunshan University.\n---\nBeing Global Environmental Leaders\n\nBeing a foreigner in China, I’m always asked where I come from. It got me thinking a lot about identity. Norwegian is one of my identities, and female is another. That’s how people tend to position me, but that’s not how I define myself. A distinctive feature of a globalized world is that national boundaries no longer carry much meaning, while our life experiences and outlooks are more important.\n\nAs we all know, global environmental problems such as climate change and marine pollution have emerged. I think the fundamental issue is how to view the relationship between human and nature, and how to make people more concerned about these issues is the main challenge to achieve environmental protection. Therefore, as future global environmental leaders, it is critical that our students are able to identify various ideologies at play and ultimately support and facilitate public acceptance and compliance with environmental policies through them.\n\nProfessor Kathinka Fürst\n\nLaw and regulation researcher with interests in environmental policy processes, law enforcement and compliance and the role of civil society actors in environmental governance processes.\n---\n# Professor John S. Ji\n\nEnvironmental health researcher with interests in population health sciences, epidemiology, occupational health, and energy and the environment.\n\nCan you introduce the research that you have been working on?\n\nI do two kinds of research right now. One is on the science side and one is on the policy side. Both are meaningful. I enjoy more of my work on the science side than the policy side, but we get a lot of information from the policy side.\n\nWhat are you most passionate about in research?\n\nFreedom. You can follow your thoughts even if it's not systematic. It's really amazing that you can find something by accident that deviates from your original idea, but the new idea that you found by accident actually it is more interesting.\n\nWith your experiences and reflections, what’s your current understanding of research?\n\nAt the end of the day, it is answering some very simple questions that currently people don't have answers to. For some of my studies I'm using data to find connections between A and B that I feel exist but they may or may not be there, so I need to do these kinds of research to find out. Some research is very meaningful in the short-run. Some research is meaningful in the long-run. In fact, most are just not useful at all, but they are efforts of trying to be meaningful, that’s important. It is really fun. It's really fun, if it's a question that you are genuinely curious about. Genuinely curious.\n\nIs genuinely the keyword?\n\nYes, genuinely is the keyword.\n\nLet’s talk about teaching. If you choose to open a course at DKU, what would you like to teach most?\n\nI would develop a course on planetary health. I will bring in the experts from each topic. Some econometrics models, some study design, some statistics, some kind of a mapping tool like GIS. And layered on top of these analytical skills, the various issues related to the planetary health, like pollution, climate change, water scarcity or atmospheric processes.", 'ref_doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'file_name': 'imep_year_book-v6_bt_e.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155119/imep_year_book-v6_bt_e.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9d741364-d09e-41bc-a81f-668b2ccb59e2', 'payload': None, 'score': 104.14948690209431, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '132377', 'document_id': '369c95b3-bcf2-4ce6-80a9-da39d8befa7c', '_node_content': '{"id_": "9d741364-d09e-41bc-a81f-668b2ccb59e2", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "369c95b3-bcf2-4ce6-80a9-da39d8befa7c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "145a4af52f9e61f58dcdb62d79e0c007fa5e89084e392a05fda8844d2c46e968", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bac532d5-ec6c-485e-a3e3-892326752fa3", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "17524a3c808e77325ec13cc19f828007c0f8bdeb727086b5ac2265217157efe5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "51eea6ae-e400-402a-ac41-4485ca6aa8f1", "node_type": "1", "metadata": {}, "hash": "7877b626e092c83a74cdcdc07e6ffacb642d90ab1423b25572827f1169d0e63a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 10401, "end_char_idx": 14491, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html', 'vector': 'tY2R@\x035ENC=\x1f<ƿ#[}\x1eVE=Z=\x1d\x1b\x14ŻӺ<˪\x1f_m<7=\x04:\x1b;kA]@_<2鼿/Xa\x08<\tC&ۼq<5]\x1bo<(q+\x1f:ɻO3vvCc\x15Q<$\t)f\x1d\x0e:;^=O<\x18\x07<\x17,\x1a@值l?DtplD`=tp\x03<\x0f\x11^]3@;\x13ූ\x19қ;\x08TM\x12;)S\x06\x1bUx<\x7f3\'bף=ڈ9^;¼ӌ=c\x0e;\x03_B]@\u07fc6JD\nҟW;\x18\x077p\x10s|!<=j\x7f\x01?b\x15\x13ĉ<֯Cʥ<<\x12\u05fbd*ݼ!F\u070ei&=\x13\x03-To\x0cnd髻ڬNrJ\x148T\x03=\x04㼜\x06<^# ƿv\x15-м*A)\'\x15\t=\nPK=+w\x02\x1d٩`hr;i&3*=\x0eJ\x12c=M?<\\\x00ߩQ\'<\x0cV^#<(ˉ<<\x14<3\t\'=;\x0fܕ;\tۼ\rF<\x08<7_\t[Q\x17iW\x0b5U\x18dnN=W:\x10hi=\x00%<͆\x1e=<ƺ\x0bt\x0e;:<*=\x11\x19;\x1dپ4<ɹx\x1f=hrNU>T뫼ঽN\x16w<<\x17=DY::\x00uO=JEvY=uKNU<\x0f"+\x03dnN\x00"=Ml<[X<"X\x10<\\h\x19<}P9C[XG\x11<;WkT;]i#u%;}=9̼]ﻌ=/<5!/\x03x\x0fi=cMl\x10<\x14ǼϞsyA:o`O<<\x7f{6ʼM̼|z1=:\x15=z6;\x13,\x16,¼e@R< HYy݅<{=3\t<6\x03=\x03<=N"=mgJ+)м՜B`EDѝ<\x03eF\x06<\x00=\x0ej\x12<\x1dk:<~tC\x19\x033\x0fq<<=)<ŽG\x11L:/\x1dݼ\x18<\x01\x06<\x05\r0{= \x01\x02dnμGP\x05\x7f!\x04\x05\rw̌G6;js;\x7f?&;3<ݻ`#\x1c\x1d;{\t\x1d\x0e\x17\x01\rN<{;G=\n<.\u0379m\x10g;\x18;1M~&Z=ٟs=4\x0fl<\x11(\x1a:QU=;j"<\x10ڼ\x1a \x01=&M<#<\x01;<\x1aͼ[\x14r{\x1bc<\x17L(\\={Ee"V=\r;.;&=~&ڼ\x14턼~<Ƌ\x1bnYB;Y%;$,<\x1dw;2=\x16\x13;\x049b;\rs,7B7\x05(o\x1fV8=\x08\x066\x07=e78˼\x0ef=>λL=iJV=Fc\x04<9@&\x04\x1e;;\x17<-:9ϼht<\x18_b;\x0fG\x02/r<<ư<_b\x03Q\'EM*;Ubz?;ƥ\x13F;:j$)2\x04<\x00=X\x02\x1c=sb\x17\x08;`ÁFc\x1d3;.ͻ\x01nw[;a.!;zw\x05\x05D9_EgdA<*hL˼\x1f\x06=\x10\x16ja$:\x7f#<\x1dgJ=\te\x07B;H=\x01\x1eO?-<4\x12\x96<;3:ߤ3;\x08\x066\x00EмR\x1d$=];{n~Zi<<5ƅ,u=:\x03= zu3\x1c=p4[;Ϸ;6\x1b<\nC"\r\x05\x1f=$<1%c<3\'f3|0w0<\x07\x0c<)ʼ\x0c;\x0bqZC;q\t=%otH\r<\x185=mS`\x10\x00<[\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n 1;\x1a\x1b=3SbA,\x14e\x00Y=L˼N=\x1c=\x18=Ur=\x04y.g<\x7fi黌);F\\<72*<\x01>\rkw\x03\x14R\r\x10f;\x1b7;>;Kܼ&=\rs\'\x0f\x0cj\x08\x14!n\\\x12,@\x14\rOW=;]=7b=;<\x08;\x1c<;Xy<4#;\x10<)@\x0b8%٭Fb\x1a\x1bk<\x18<<\x1fu<|z<_\u07fc;\x1eކ&c=\nu;\x11=\x08<\x16\x02\x03V&\x1el<;04)\x08\x14!d\x07yuz=\x05ӭ\x1d\x06f=:-<`ּ;`\x00=8%;\x10><\x107^|(T}Ἥ\x16;vh\x02=\x0b\x03\x01\x16yd;\x7fn2=06<3S:;<:\x11T\x02=\n<\x06<`qE3S;rD\x0eO<`\x0e\x0e1\x19\n=Y~ @*N<(N4#2g\x1f<:q}\\ <׃ \x1f\r\x01q<7b1me=\t\x02=q<\tk!<\x10>:\'\r', 'text': "His research is not limited to air pollution, but also covers water resources, energy and climate change. Recently, he and his team have been working on the top-level design of China’s carbon market in order to advise policymakers from an economic perspective.\n\n“There is still a long way to go before these theories can be put into practice in China. Perhaps the changes we can bring now are tiny, but as long as they are useful, or they are positive, our return to China makes a difference. In fact, no matter what you research on, not merely in the sphere of environmental studies, so long as you are concerned about the environment in China, you are moving in the right direction,” Professor Zhang said.\n\nIn 2003, Professor Zhang travelled to the US for his degree in Environmental and Resource Economics at Duke University. He planned to pursue his academic career in the US, and meanwhile became a father of two children. He enjoyed sharing his thoughts through academic papers as much as sharing the lovely quotes from his sons through social media. He was appointed a tenured faculty member at the University of California, San Diego, and it seemed that his story would go on in the sunshine of California. Then he made an unexpected decision: he would go back to China to join the recently founded Duke Kunshan University.\n---\nBeing Global Environmental Leaders\n\nBeing a foreigner in China, I’m always asked where I come from. It got me thinking a lot about identity. Norwegian is one of my identities, and female is another. That’s how people tend to position me, but that’s not how I define myself. A distinctive feature of a globalized world is that national boundaries no longer carry much meaning, while our life experiences and outlooks are more important.\n\nAs we all know, global environmental problems such as climate change and marine pollution have emerged. I think the fundamental issue is how to view the relationship between human and nature, and how to make people more concerned about these issues is the main challenge to achieve environmental protection. Therefore, as future global environmental leaders, it is critical that our students are able to identify various ideologies at play and ultimately support and facilitate public acceptance and compliance with environmental policies through them.\n\nProfessor Kathinka Fürst\n\nLaw and regulation researcher with interests in environmental policy processes, law enforcement and compliance and the role of civil society actors in environmental governance processes.\n---\n# Professor John S. Ji\n\nEnvironmental health researcher with interests in population health sciences, epidemiology, occupational health, and energy and the environment.\n\nCan you introduce the research that you have been working on?\n\nI do two kinds of research right now. One is on the science side and one is on the policy side. Both are meaningful. I enjoy more of my work on the science side than the policy side, but we get a lot of information from the policy side.\n\nWhat are you most passionate about in research?\n\nFreedom. You can follow your thoughts even if it's not systematic. It's really amazing that you can find something by accident that deviates from your original idea, but the new idea that you found by accident actually it is more interesting.\n\nWith your experiences and reflections, what’s your current understanding of research?\n\nAt the end of the day, it is answering some very simple questions that currently people don't have answers to. For some of my studies I'm using data to find connections between A and B that I feel exist but they may or may not be there, so I need to do these kinds of research to find out. Some research is very meaningful in the short-run. Some research is meaningful in the long-run. In fact, most are just not useful at all, but they are efforts of trying to be meaningful, that’s important. It is really fun. It's really fun, if it's a question that you are genuinely curious about. Genuinely curious.\n\nIs genuinely the keyword?\n\nYes, genuinely is the keyword.\n\nLet’s talk about teaching. If you choose to open a course at DKU, what would you like to teach most?\n\nI would develop a course on planetary health. I will bring in the experts from each topic. Some econometrics models, some study design, some statistics, some kind of a mapping tool like GIS. And layered on top of these analytical skills, the various issues related to the planetary health, like pollution, climate change, water scarcity or atmospheric processes.", 'ref_doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'file_name': 'imep_year_book-v6_bt_e.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155119/imep_year_book-v6_bt_e.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9d741364-d09e-41bc-a81f-668b2ccb59e2', 'payload': None, 'score': 104.14948690209431, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '132377', 'document_id': '369c95b3-bcf2-4ce6-80a9-da39d8befa7c', '_node_content': '{"id_": "9d741364-d09e-41bc-a81f-668b2ccb59e2", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "369c95b3-bcf2-4ce6-80a9-da39d8befa7c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "145a4af52f9e61f58dcdb62d79e0c007fa5e89084e392a05fda8844d2c46e968", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bac532d5-ec6c-485e-a3e3-892326752fa3", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "17524a3c808e77325ec13cc19f828007c0f8bdeb727086b5ac2265217157efe5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "51eea6ae-e400-402a-ac41-4485ca6aa8f1", "node_type": "1", "metadata": {}, "hash": "7877b626e092c83a74cdcdc07e6ffacb642d90ab1423b25572827f1169d0e63a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 10401, "end_char_idx": 14491, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html', 'vector': 'tY2R@\x035ENC=\x1f<ƿ#[}\x1eVE=Z=\x1d\x1b\x14ŻӺ<˪\x1f_m<7=\x04:\x1b;kA]@_<2鼿/Xa\x08<\tC&ۼq<5]\x1bo<(q+\x1f:ɻO3vvCc\x15Q<$\t)f\x1d\x0e:;^=O<\x18\x07<\x17,\x1a@值l?DtplD`=tp\x03<\x0f\x11^]3@;\x13ූ\x19қ;\x08TM\x12;)S\x06\x1bUx<\x7f3\'bף=ڈ9^;¼ӌ=c\x0e;\x03_B]@\u07fc6JD\nҟW;\x18\x077p\x10s|!<=j\x7f\x01?b\x15\x13ĉ<֯Cʥ<<\x12\u05fbd*ݼ!F\u070ei&=\x13\x03-To\x0cnd髻ڬNrJ\x148T\x03=\x04㼜\x06<^# ƿv\x15-м*A)\'\x15\t=\nPK=+w\x02\x1d٩`hr;i&3*=\x0eJ\x12c=M?<\\\x00ߩQ\'<\x0cV^#<(ˉ<<\x14<3\t\'=;\x0fܕ;\tۼ\rF<\x08<7_\t[Q\x17iW\x0b5U\x18dnN=W:\x10hi=\x00%<͆\x1e=<ƺ\x0bt\x0e;:<*=\x11\x19;\x1dپ4<ɹx\x1f=hrNU>T뫼ঽN\x16w<<\x17=DY::\x00uO=JEvY=uKNU<\x0f"+\x03dnN\x00"=Ml<[X<"X\x10<\\h\x19<}P9C[XG\x11<;WkT;]i#u%;}=9̼]ﻌ=/<5!/\x03x\x0fi=cMl\x10<\x14ǼϞsyA:o`O<<\x7f{6ʼM̼|z1=:\x15=z6;\x13,\x16,¼e@R< HYy݅<{=3\t<6\x03=\x03<=N"=mgJ+)м՜B`EDѝ<\x03eF\x06<\x00=\x0ej\x12<\x1dk:<~tC\x19\x033\x0fq<<=)<ŽG\x11L:/\x1dݼ\x18<\x01\x06<\x05\r0{= \x01\x02dnμGP\x05\x7f!\x04\x05\rw̌G6;js;\x7f?&;3<ݻ`#\x1c\x1d;{\t\x1d\x0e\x17\x01\rN<{;G=\n<.\u0379m\x10g;\x18;1M~&Z=ٟs=4\x0fl<\x11(\x1a:QU=;j"<\x10ڼ\x1a \x01=&M<#<\x01;<\x1aͼ[\x14r{\x1bc<\x17L(\\={Ee"V=\r;.;&=~&ڼ\x14턼~<Ƌ\x1bnYB;Y%;$,<\x1dw;2=\x16\x13;\x049b;\rs,7B7\x05(o\x1fV8=\x08\x066\x07=e78˼\x0ef=>λL=iJV=Fc\x04<9@&\x04\x1e;;\x17<-:9ϼht<\x18_b;\x0fG\x02/r<<ư<_b\x03Q\'EM*;Ubz?;ƥ\x13F;:j$)2\x04<\x00=X\x02\x1c=sb\x17\x08;`ÁFc\x1d3;.ͻ\x01nw[;a.!;zw\x05\x05D9_EgdA<*hL˼\x1f\x06=\x10\x16ja$:\x7f#<\x1dgJ=\te\x07B;H=\x01\x1eO?-<4\x12\x96<;3:ߤ3;\x08\x066\x00EмR\x1d$=];{n~Zi<<5ƅ,u=:\x03= zu3\x1c=p4[;Ϸ;6\x1b<\nC"\r\x05\x1f=$<1%c<3\'f3|0w0<\x07\x0c<)ʼ\x0c;\x0bqZC;q\t=%otH\r<\x185=mS`\x10\x00<[`\'=\x04\nO؋\x1dw#=M=չ;\x10\x00=(9h<\x04oy\u07fc);/;xSμ:\x07<\rm7J;&L\x00<\x7f<%\x1a<4<\x18+<1\x06<="<,C۱0\x00:\x16B=Mͼ\x10&=":VⒼ"I<\x1e<^\x06=28G*<%s)%:3\x04Ԋ=nu\x01\x02e\x01-=W]=T~;t\x19=\x1e;\x0cӼV\x06t<;t=7\x0b<2=!`<9\x1e\x0e\\P<㳼\x7fyC\x06ؼjD\x00gڼ2|x|VQ-=a<\x1c\x1c=7JL9\x17x;\x1cE89\x10ûQg\x08=#H;\x0cӼD8\u05fc\'\x00=\x1c;V<\x134jq+<)==;hE\x12O#=\x16¼؆"\n&\x15<"M[fS2<#-\x144l=mˈ\x0e\\:\x15\u05f9\x024P=)#t5Uj<\x7f2p\x17;q<\x10=I\'\x159;;]/\x05UIh.9\x1e=jq+fS2\x18 z0*=\x06 ^=!<|\x1b=Rę<\x17S{?ܼ_t](https://academicjobsonline.org/ajo/jobs/22570). Questions about the position may be sent to\xa0[lcc-search@dukekunshan.edu.cn](mailto:lcc-search@dukekunshan.edu.cn)\xa0using “Language and Culture Search” as the subject\nline. Applications will be accepted until the positions are filled.', 'ref_doc_id': '58aba244-65da-48c5-afc8-088f41a3354a', 'doc_id': '58aba244-65da-48c5-afc8-088f41a3354a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/academicjobsonline.org/ajo/jobs/22570/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7b90a916-623a-45b9-acea-b5aa2c8ff72a', 'payload': None, 'score': 54.2802533505354, 'document_id': 'index.html', '_node_content': '{"id_": "7b90a916-623a-45b9-acea-b5aa2c8ff72a", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/career.dukekunshan.edu.cn/administrative-positions", "filename": "index.html", "filetype": "text/html"}, "hash": "16b60b260922e72742beecae3c6cae0e352e8d2a69d18da877b4593cffdf73ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d62a2111-e0f7-4c9b-b211-68b8d6201a33", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "7011496aec240ac7c6eacfb33d082246eac301c976b20d7759668f831aec1b7d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a872f7a0-bff6-4724-ac4b-2a7903c2261f", "node_type": "1", "metadata": {}, "hash": "ae134d03a28af30007d2138e0b2d58e8d051713eb1128baad465c7a8e742dd7f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'T\t\x08:\x017C\x17\'rBI\x10N;FW<~9VԼj\t\x12C_\x0f;d=W;*Y\x1a=U<%:s\\\n<#\x05<2\x0f8=~[.<\x02\x03<˻s\x1aؼC\x19\x02=~\x18<₼ްGtcn<\x13x!\x1d!4\x00<5L<\x168=CHݼNR4\x0c=S<\x19=y;#\x05w<\x15ˍq|D<\x1a*\x1cY:%\x1d<<\x15F\x02\r=q\x17<\x12\x1c\x18\\d\x17\x14;,e\x01;G:\to&f[<\x17uZ\x14Kk<0ޅ\x05)<\x08tc\x1c=5\x1a-i\x00н\x12v<\n;}<\x0e<\x07\x16BƼa\x16t@;VҦ\x7f=ް\x12\x18;\x0b=)?=#Ҽh;<\x14R\u07fcW<\x07`\x00=-4<ǼN\t\x1e;\x034=\x12ü-P;qڼ7Aл\x16cNz_:o\'<\x1e*X\x01=u(\x150=*<+eS;(\x06\x1f#=\td(/\x0ez5\x1a-\r\x1b=dԇ=\n\\d\x18;В=̻\x07\x12;odͻѺ,\x14m<\x1eC;<\x01\x0f\x15~\x04C\x0bw:ˑ<\x11\x02\x1e=@H<6o8Jm=\x1d<\x00,0\x05=5\x17\x12ثk5&fm\x0fy<ɴ\x06\n=e;仵<\x1a\uf63bʴ,!m5W\n~<\x0f\x15=M:\x14\x01<\x08xro\x1b\x0e=@k;[;,\x071wf0um\x16]2ɼ\x16`N;Տ~=`\x1f;=zh@=@ѼL==F0K;\x13Ѽ,<(\x04<ؼ%W\x06=]a<\';n$R<8\x10\x0eC\x06=9=$}<\x0b>B89QT4?Û\x15\x100\x12(<\x12~L=h 2=k\x13F;<\'sm=m\x1e<2aVz۔γ\x18<\x08h=\x17\x15\x17,7J\x17<ޥ=a<\x11S\x0bH%t\x00=φ<*4=x%⻮{\x113\x01=\x0f&=M=Ƽ7;j{<ޥ= \x0b\x0e%<<\x0fց\x1a:/;"һo`\x00\x08뼚KJ;NE=TF\x0f&;\x07u\x1d20<>\rۼEl=:\x11j=\\ۘ<\U000acf10\ue33dҶ0?\x1b=G0;JBټ9\x16d<-%\x08Dw-=j\x0e=\tl;\x8d\x01\x1b/\x7fa\x043Wأ:ŏL=\x1c;Q:cC<\tw:J<\x01;=\r)=ց;M@;{iH\x07`b\x1b\nφ%\x0c=\x1d\x1eh=\x01=b', 'text': 'Administrative Positions – Career \\| Duke Kunshan University\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Skip to content](#content)\n\n\n\n\n\n\n\n [![](https://newstatic.dukekunshan.edu.cn/career/wp-content/uploads/2021/11/24110609/%E8%B5%84%E6%BA%90-11-768x156.png)](http://dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n Search\n\n\nSearch\n\n\n Close this search box.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n* [Administrative Positions](#)\n\t+ [For External Candidates](https://career.dukekunshan.edu.cn/administrative-positions/)\n\t+ [For Internal Candidates](https://career.dukekunshan.edu.cn/administrative-positions-for-internal-candidates/)\n* [Research Positions](https://career.dukekunshan.edu.cn/research-positions/)\n* [Faculty Jobs](https://career.dukekunshan.edu.cn/faculty-jobs/)\n* [Intern Positions](https://career.dukekunshan.edu.cn/intern-positions/)\n\n \n\n* [Administrative Positions](#)\n\t+ [For External Candidates](https://career.dukekunshan.edu.cn/administrative-positions/)\n\t+ [For Internal Candidates](https://career.dukekunshan.edu.cn/administrative-positions-for-internal-candidates/)\n* [Research Positions](https://career.dukekunshan.edu.cn/research-positions/)\n* [Faculty Jobs](https://career.dukekunshan.edu.cn/faculty-jobs/)\n* [Intern Positions](https://career.dukekunshan.edu.cn/intern-positions/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\nAdministrative Positions \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Thanks for your interest in applying for administrative jobs at Duke Kunshan University. Before you start to search the jobs, you are highly suggested to read the below tips. Hopefully, it would be helpful for you to know more about the working culture and the general qualifications of working at DKU as a staff.\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\nWhat kind of job application materials should I submit when applying for an administrative/staff job at Duke Kunshan University?\n\nPlease submit your formal English resume (as detailed as possible) and cover letter as attachments in the portal. Please kindly make sure there is no typo on your resume and cover letter. For some positions, transcripts are also required when applying.\n\n\n\n\n\n\n\n\n\nWhere can I check my job application status?\n\nYou will receive automatic reply after successfully submitting your application. You can check your application status through Portal. If the position is filled, a thank note will be sent to the candidates who are interviewed but don’t get the offer at the end.\n\n\n\n\n\n\n\n\n\nI have networks who are currently working at DKU, can I ask him/her to submit job application for me?\n\nNo. Job application must be submitted by the applicant himself/herself through portal.\n\n\n\n\n\n\n\n\n\nI am asked to provide referees’ information on the job application form. However, I don’t remember my previous supervisor’s contact information. What should I do?\n\nEmail address and mobile phone are both fine. As the candidates, all the information provided should be accurate. Please be kindly reminded that the credentials might be collected during the interview process. If you are not quite sure what information to provide, please make sure the information you provided is authentic.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Apply now](https://career15.sapsf.cn/career?company=dukekunsha)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/career/wp-content/uploads/2021/05/24134121/DKU-Logo_GreenTop.png)](http://dukekunshan.edu.cn) \n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:86e836a6-560e-41e5-964e-668183127748', 'payload': None, 'score': 53.685076535277105, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '83166', 'document_id': '08ded1c7-1c2c-4817-b7e3-fcec1a43e40f', '_node_content': '{"id_": "86e836a6-560e-41e5-964e-668183127748", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/hub.dukekunshan.edu.cn/career/administrative-positions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 83166, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/hub.dukekunshan.edu.cn/career/administrative-positions/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "08ded1c7-1c2c-4817-b7e3-fcec1a43e40f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/hub.dukekunshan.edu.cn/career/administrative-positions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 83166, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/hub.dukekunshan.edu.cn/career/administrative-positions/index.html"}, "hash": "5435e2cfc3bce298a519941be9c93cb6875cbd561720a49ba689b7cd8688f0bd", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7, "end_char_idx": 4219, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/hub.dukekunshan.edu.cn/career/administrative-positions/index.html', 'vector': '(vL\t\x1ac\u07bc9^!v8\x7fiY~,<;\x03-<:\x1f@\x10ԺN8u<\x7f;=H?;`%=)<1.<%Rz\x1fK\x1b\x06\x1a\x12:\x12=>)=%\x0c<\x12J1<\x05=<ۚ\x11t\t\x08\x03\x08;\x0b+ͼS=*R\'9\nj\x7f=>)=$3=<\x1eҼܛ1\x12=#<ǚ<\x12\x01iƻ\x14}9=P\x12`<\x0c\x14l\r*`ѡ\x04\x1c\x01<ա7v(=ҴW=_\r=l\uef19WH:0H\x06<ڧ<]\x11:X=~ȼ\x03=D;r<0MjN=\x1bVl6<\x1e\x07I\x07=I\x15;"=ݼ>E3Z\x0cǯ%=\x04Ƽr\x1d=b\x04\x0e=6[n4\'<\'\x14\x1e;lnu\x18=&B=]z\x01=\x05X\x1f\x16v\x0e#\x14}L<\x07ȼ\x11حw40:I9]\x11<ˎ\rl6zo{;L9n<\u07fc\x14=e=;g\x1c=\x1a\x12\x08뗼<]n<\x03%;|\x15\x1a\x1dAG=o\x1f<;:l\x15\x00}O5\x15F9<1.=\x00\x1cʼ*;M\x14n<;@3pZ=\x17j<7\\\x0f;.\x022!\x1c\x03\x1b=q=($ۚ@;A\x08WH~u\n<,\u07bcpB\x7f?C<\x15=ǝܼ2=\x1c2\x07;Jļ\x1b><}9ȼ2sϻ\x11\x0e;W*?C:Jrg(Aۼp<\x01\x14=\x19\x0eO\x0fl!*=\x12+ Ӽ- ,=_»5\x0b\x0e;F;\x13d06̻H\x10=\x7fhjꝼ\t\x1eDW\x0e=\x04R=<ߜL =\\*μs=*-v.<ƻ]p0u<\x0c?l:/=#л+[<ܤ<8=\x0fJ\x1e\x06:<ġ\x00"9N\x04{+=\x1a\x0fӼv\x1at\x03=q*<&{;\x13g7鹼r=1gg\x15=<\x14e]=\x19\x0f<2;`\x17=z\x18\x08<\x13\x14=L4*\tf=3;\'\x7f\x1ai;\x0858;\x01%/:r/<`<\x0f\'G^;i\x17<\x15= @<\x0b"\x009y<\'6\r=4\x03\x1f=ӻl38ټƳ:Ja=k\x0f=E\x018\x03m9$ƴB=\x16< \x1a/;/j\x07<4\x02\'<\x02G\x0b\n{рR\x16;\x1a篼r\x17ݒ;jn\x1b=@$\x16r\x1a=8=\x08\tG\x06*\x04e8=mwH<\x1bR(=\x06\r\x00V\x14\x08\x02 q<\x17;uN\t?j:<7;nn\x0ep;\x0e=\r3C<)H\x14q\x16=|KA;\n\x17b=+9\x12";x<+\x06=ӼzgAsaTL\r3$3<Ʀ<-\x19[G=#v9=)=\x039\x01_\x1dDF2,=Vw;;\x14}j$ <\x1fjuD=X;=p3M=0\x13<[Ǽ(8=z -:\x06CS=\x05eJ(s\x1d.\x07Fga\x1dc8J<Gr\x082ϻY;@@+B<\x037*`+<\x19ؼ,KȓX=ͻ\x14:<%<\x19\x1f|&yI\x1eC\x08kVr<"\x1b\x1dl\x1c;Ϻ:;\x00\x0b\x12!\x01=\x1a?87%=mC\x02!*̚<,<./CA_HT`;u:<\x0e%=5=lyB#\x11^2\x01f\x07jHE夼;\x03;w&\x1c<=v\x10;w<]\x1c\x0b:<;xɼI|ZL!a\x18=!F"EK?g./7])<_\t\x08{J\x15/ha@<E<O};\x04E;@=\x02=s\x1e\x1d<_=,:2\x1b+1<̴λ7=e\x13\x15;b\x13Q.4:<Ȼ(;J=\x1bޕP\x12\x176<\x1dk=S=tI\x01a\'\x15=!F=Cp.=\x04\x03ӼҰ<\x1a\ueffb#\x15\x1aGc.nq\r|&=^\x19="\x0f<\\;.>O7<Ƹ;;4\x0e[6;\x17=;;< :\x7f(<\x1b\x100\nH/w9h<\x02;\x07;Ueջ9h@=I=<<<\x0e<ŕw<ۗ\x11\t=\r5G&Pܐ$D=\x12:=z\x7f\x11\x10;\n\r`\x08 \x7fr<"Iz\x1aֻ!dj\\a*\x15+<\U0004747cq\x19=\x02<\x12E\x02\x15+=!\x02%AL\x15=\x1dr=s]8"<\x0f:\x18#]OfǤo<$<=d\x00H";\x082;3|<\x13ck[`}\x199l!<\t\x10y-\tH=\x12E9\x15@P\x0eM<\x19D<\x15@1\x7fyk<=d=4!;d\x0e}~\x1f{ý$\x12<j/!\x07=d=\x02<[)ү+=n8<[n&a\x07\x10\x12zP<@\x16Fq*=8<\x1c#ߌb\x03V}<\x04\x0b\x192\x1bA= qF16ﮢ;4/R<\x10<\\;VΧ;\x086=xx;Z =\x15+=6Hj<ϋH<\x05\x15:BXB,$.EƼ(_=\x19Z\x0b;ùc=\x0eVITRм{Ȃ\x06/\r\x0b=Y;R\n\x0c<[y<\'J\x19ZK=r=ۓ.yG <\'Ge<\x8d,\x0c)Kx;u#=;aQ9;\x1a\x0f\n="ڼsJ\'19N{\x038bd\x13\x02\x0b9F-Y=a\x1e<ߢ=\x1c<:z%<[2:g\x06ʮȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{21581 total, docs: [Document {'id': 'test_doc:fcb633a2-6c05-48f0-b0d8-b87eb05e2719', 'payload': None, 'score': 90.64511634021036, 'emphasized_text_contents': '["How do I post grades for an assignment in the Gradebook?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "fcb633a2-6c05-48f0-b0d8-b87eb05e2719", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I post grades for an assignment in the Gradebook?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I post grades for an assignment in the Gradebook?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-d/o-I-post-grades-for-an-assignment-in-the-Gradebook/ta-p/576", "filename": "index.html", "filetype": "text/html"}, "hash": "bc2dc66bd93e299e4dcf6414557cf0c2890f4571f325a582c3a27cc0c948178d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d84c961e-ee7f-40d8-bd3d-321747a981be", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I post grades for an assignment in the Gradebook?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "b5b606ef39068b3c54fb329302bfcf81f47af11bb50cdb389a8ac7a130d0109e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "374c9cc1-ba3f-4510-a77f-2aac67da0a33", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x17=\x18[\x19/\U00044f0b9F9;̼$\t\x18=="hɔR~<<&?q<<<Ѵ;;L[`;\x1b<\x0e\x10v\x1c;Nu=J=hհ<\x0b=o(=9<=ػ>\x17Ƌ4\x17<4\r\x007p=\x18[;\x1a=\x1d<\x06⯺\r9/=S\'\x14/`;d\x00=\x14)FEҝ\t=E<=\x1fس<^M|ԼV\x07:\x19-t;\\@\x0b\x1bAO<;5(\x7fb<\\=\x07\x0c<.\x08=|\nbϼ6*;\x1bҼz\x0b:3Xޜ]%N,\x1c<\x1cg=I˼@U<?ۼ\x00a;`:=;启=Oo\x01D6*Ļ6\x12:\x11\x00~\x12n=xF <[Qau\x1b&\x0e=dɺ\x12<@M\x19=:;=ЍI\x05ȱfQT`"\x0b¡mG<\t>jCз<\te=;fz\x16<=<;\'<\x15;e=pQ\x16=(\x02=\x19\x032:]\x14K\x1e;S̔\x13\x1e\r<8p\x03;*;.\x1e):p\x01=o<\x13.4G\x15=\x132=\x02-p\x11<<\r=3p\t=\x13\x13&zw3=O\u05fc_z<鎌Wz(<-pE<\x06\x14\x13R(`2G়֟<\x086zz\x1b\rM=f\x02pżo(^Q\u07fc%=ˈ.;kG:W\u07fc\x17]\x15=w=@w҃\x017=\x15ֻP=C?\x131;=">.\n7f`;=\x1b\x07;P\x10=١~j$l,ć;$\x15\t(\x01SgQ<=DUv\x1d\x7f=\x018ͻl.@<ϲ=T\x9a5;\x01ϩo<\x0e=`=Ѽ8+=ԉ=4#L[5=jɛ;;d<\x12(ļQ\tIN\x7fb=p3/L<\t%۸=kp4\x08@PWDJ&=z<\x05\x1f=25:\x12m<\x03Qt+(FQÔ\x00<2J]\x0e\x1c<\x12&;EA=\nhi\x13<ƹ=5W!:C<\x19rgl\r7\r<,>\x03;ΌN\x08M<ڻ\x18.=o{=?;j"u\x0b\x17;̇;\x144=7\x04zC\x10=\x15ϼތ<\x1f\x0c#=tKF!T};\x00\x0cĂ\x05Aм\x15\x03|\x07<)II\x17v!<\x07Fg@*6;c<\\;0\x03=\x07[8=S<\x1dW<7ekpuH\x1e<\x02<Lۻ\x07[80=\x0b4#\x03H<"i1÷IN\x08ͻ\x08G=!㼭i+D\x07j\x1f<=\x0c\x15UL\r\u05eb[\x07l&+I=:M\x1f\x06eV\x1c;>=(#\'ؼ\x1f<:\x17:e\t<ӡ\x12Y2;>!ci\x16F=ϔ\r\x0e<\x0fӛT=5)\x06=\rl$¼\x0f=<#;l&=tK=H{=0$\x13\x18[\x13a<<<\nN\x05\ueea0<_Q\x18:IHr="<3<)=z\x06];Tr\x1c_=!\x14<', 'text': 'Settings\n\n* [How do I use course settings?](/t5/Instructor-Guide/How-do-I-use-course-settings/ta-p/1267)\n* [How do I set details for a course?](/t5/Instructor-Guide/How-do-I-set-details-for-a-course/ta-p/1037)\n* [How do I change a course name and course code?](/t5/Instructor-Guide/How-do-I-change-a-course-name-and-course-code/ta-p/1234)\n* [How do I add an image to a course card in the Dashboard?](/t5/Instructor-Guide/How-do-I-add-an-image-to-a-course-card-in-the-Dashboard/ta-p/624)\n* [How do I set a time zone for a course?](/t5/Instructor-Guide/How-do-I-set-a-time-zone-for-a-course/ta-p/1295)\n* [How do I change the start and end dates for a course?](/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354)\n* [How do I restrict student access to a course before or after the course dates?](/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269)\n* [How do I change the language preference for a course?](/t5/Instructor-Guide/How-do-I-change-the-language-preference-for-a-course/ta-p/1246)\n* [How do I enable SpeedGrader to launch filtered by student group?](/t5/Instructor-Guide/How-do-I-enable-SpeedGrader-to-launch-filtered-by-student-group/ta-p/947)\n* [How do I enable a grading scheme for a course?](/t5/Instructor-Guide/How-do-I-enable-a-grading-scheme-for-a-course/ta-p/1042)\n* [How do I use grading schemes in a course?](/t5/Instructor-Guide/How-do-I-use-grading-schemes-in-a-course/ta-p/870)\n* [How do I view and manage grading schemes in a course?](/t5/Instructor-Guide/How-do-I-view-and-manage-grading-schemes-in-a-course/ta-p/1188)\n* [How do I add a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-add-a-grading-scheme-in-a-course/ta-p/1054)\n* [How do I duplicate a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-duplicate-a-grading-scheme-in-a-course/ta-p/601384)\n* [How do I edit a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-edit-a-grading-scheme-in-a-course/ta-p/601385)\n* [How do I archive a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-archive-a-grading-scheme-in-a-course/ta-p/601386)\n* [How do I customize visibility options for a course?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-a-course/ta-p/844)\n* [How do I customize visibility options for course content?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-course-content/ta-p/814)\n* [How do I set a Creative Commons license for a course?](/t5/Instructor-Guide/How-do-I-set-a-Creative-Commons-license-for-a-course/ta-p/1059)\n* [How do I include a course in the Public Course Index?](/t5/Instructor-Guide/How-do-I-include-a-course-in-the-Public-Course-Index/ta-p/812)\n* [How do I set a course format?](/t5/Instructor-Guide/How-do-I-set-a-course-format/ta-p/1089)\n* [How do I change the format of a course ePub export file?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'emphasized_text_tags': '["span"]', 'filetype': 'text/html', 'category_depth': '1', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5de98e40-d933-49c2-90eb-c286525861b1', 'payload': None, 'score': 90.64511634021032, 'emphasized_text_contents': '["How do I manage my Canvas notification settings as an instructor?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "5de98e40-d933-49c2-90eb-c286525861b1", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-manag/e-my-Canvas-notification-settings-as-an-instructor/ta-p/1222", "filename": "index.html", "filetype": "text/html"}, "hash": "3d1a042c6d4a1bae721210c0a10127a1615064bd928e2854d5b7c96e2e2f1134", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16302703-378c-45c0-9106-9ad07470f8e3", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "860beb54725152d1658bbd2172b5f691ae88263f5cc891530405e4e0ab8b697e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b26b7f66-993d-49e0-894f-a130d7cd1140", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'k\x0fpB\x15\r\x11\x1d;uYº\x02\x06Bd<\x15;I\t\x7f\x03=U1[}:iKW\x1e=\x0e;{n伢ږ< .\x1eF<\x1260=8ahP\x12<\x0cļW=<=%\x07=kP<>6(=,;*Cܻ@\x03*|ӓ7<\x19\x13\x00=B\x0cZ;MW=\x07\x0bL=\x1dg<\x02\x04<\x12\x1f\x1a\x1e=ڟ\x7fK\x16=\x01I\x1f<\x19\x04q=9Y@p#T`:,q;`%\x14ԡ=R2,\x17;\';)] <.\x1e\x00=4eȻ:;\x12wnʀI*`L9Q+K<\x1c<8=\x14w\x01ؼ\x11=\x1cL=(\x13t!r<*\x13\t=\x15Rh<\x06\x0e=ɱ8}<9N[<\x00=\x1cU:d$N\x13\x1bRh9W<<\x12\x1e;\x1e\x05H^{;!2=+\x1c#\x1dg\x19\x12n\x07"/y;R"缬\x19.\x1eN\\=\'VG\x11mm\ncg9\x1cL1=Ik\x1eA\x13R<\x11<\r,= \x07\x10<8qG\x03dCo\x16\x19\n\x08<\x11w`:=\x073;Y=T\x1a\U000bc5bdKH\x06f\x04NG\x1e<09pNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d363a1cb-9c5e-4fb1-9d69-efdfe6556773', 'payload': None, 'score': 719.2383613881026, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '508476', 'document_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', '_node_content': '{"id_": "d363a1cb-9c5e-4fb1-9d69-efdfe6556773", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5eed989b-3617-4479-8daf-3dc7f14d35ee", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "hash": "1531961555db840cdc91ded673cff60dc58a823e4db217e00c42ad46672df04f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4fe06d28-ef28-45a2-9613-f1128c83acba", "node_type": "1", "metadata": {}, "hash": "810202455f44738a4605524507fef8bf9fccc039bed143acfb4bcd157886b452", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 4710, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', 'vector': '@BGp\'drp\x04}̼hԻ5\'\'$q=w;WX:B\x7f\x1a;i\x14=0\x1a2fo\x1dY\x04ņڻwts}ݹ6=S\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 337.1156939543695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=F_vP\x01V?=>\n<\x07<\x11\x16G\x12;JV<=\x1fQC\t%6ֽp̈<}\x06Ƽ\x0e\x13=\x03ת=9vn=09H\n\x1fӼ8Ɯ;d3\x06qN=y=Y\x01<\x10*݇=Aˏ\x02;=\x18\x04/<\x10J-Tš~zm<"u;.{<_vP<ջ\';v;6\x13`H:@:F<)*=^9"\x08\ta\\;\n/"\u05cc<\x15~D<\\$\x1b=;MѾ\\?\U000e45fcwƼ\x08\x07V"=\x15< ռxƻk伩\r=]1g\x04[=R"_;\x0b&Ϩ\x00B#\x1f9=ż\x0eD:C!=\t\x1a_<=iaG&#=ؑJѼ[oռy7c=\x05Wy.=:<\x1a\x04\x8f49z:<,`<Ԗ<\n䀞:\x19e\r\x7fgJ==\r=:i(\x14<\x05Cs\x1e~.ԗ=v6;mw,=5=Լmw,=\rT;/";$<\x05;pp<\x10!\x18\x02̅=XȻ\'輵pSȋȼtc="Ƽ\r\x14;\x10P\x00[9\x02=?C\x04<6=3do(\x13\x12;-HW=]R<Ǧ\x03qM0$\x0f5=l\x14[svd\t-\x7f>\x0c=F.3A\x08=\x19 =\x1b\x05\x0c<ջs\x1e\x19q{\t=y\'\x11dF=\x01aL<\t<\x0ck=\x14;\t <"\x05=\x06R\x02t\x14<\x1f`ڀ\x01 9;mw,+z<|S\n3A<49|D\x140 =ռtj:C<^\x04;+<\x05<嚼Y;\x1a\x07S;F:ga7P=`d\x04N=\t\x1a_\r7\x13\x076Y+zE\'A<~\x103=\x10x;Ѽzh<@\'K<+EA;\x7fQ*=\tc<.=+=\'xG0;ҙ\x17L2\x0f\u0383Vaz\x16\x1eϼ\x04+9S,\x08=j\x0fZ\x00<(<1t\x03\x05u\x0c*;5\x1c\x078*\x11̻A\x03\x1e<1(ӻ\x1e?m\x08<\x17\x15`\x13*Wf\x010\'$Vjַ=::\'\x01*=\x1f\x11=\x08\x10/=[:; XX3\x18"\x12dN=hp"<\x15\x04XD;s\x0f=i\x14)$\x02ż\x0c\x19 X<\x08;{<ϔ\x16\x03\x05<\x1e\x02<-_\x1aַ\x0b;C.64=%9;:ĺ8T,V;f\x14W=RȮ\x04\x08=i\x1d:2i;ˋ;\x18\x08=JVồ8==\x08\u0378:\x05<ͺР=T\n<\x06<\x1e\x193\x00ˑ\r=\\\x15h<<<\x17;&\x16\x03;CɰF꼫¢<5.a,\x00S \x18\x0f\x7f:< üP\\\x05<ỼM<\x0e\x02=qꗛ;\x054=ȓf\x16\x03=\x19=]\x18\x02,<Ƽ=<\t<\x03\x19\x1e,!=\x01ƼF;\x1a65=d>=\'<Э\x08=Ј<\x17PӖ;\x00B\x065\x02:\x1d؏]5><51)=р<%=;(I\x7fPs:B+\r֞<\x1cW=hQ;;;\x7fu\x0fhc;;rԆ<}kK;B}: a\x13ܼ:\x10\x19=kn.dz\x1b\n\\$<,Nʟ<(!4\x16\x0cx;\x11<<\te<ς:ʟ\x13\x1aQ\x07=m,\x0e\x11=9\'<~<\x1a@|\x17.ʽ_<\r\x03=h;E=x\x0f7]μ\x02ݛ:P<\x7foa<\x1e]>\x18\x1ep<\'l=QIɛ<.<;S9B:z\x1c<ɳǼa\x0fm];|]μ\x16=\x13b;<\\\x03=I=\x1bUus\n\x13z\x18<5紺|\u058b<\x97cO\x13PFPv\x11q0\x0f(q|!7=@pT:F<\x0fi\x1aa\x08\x07;S:<9Y\x1aGK)=\t=h9\x08=̈\x08\x0f:A=<09༞\x16\x1e \x1f<\x075-d\x19\x02\x1b\r҂6=(JK\x14<˩<.=%o;5r%\x0fi=})\nX\x04=XkY<\\xXp\x11=u{\x15=d<μ4Dg\x1eIv=hI<<ؗ9:$hP;\x13=\x159/=2%\x12m:\x18\x1f<\x1fL\x06$=eEq<"ǻQ\x87\x06Q\x1ez=\x1egd,=46\x1a<\\-yϼOĻqY=n\x1f#=;\x06Xy=\x0b\x1c=D8.<;`/\x0b=dW\r=2"=ׯׯTC=mIƓ曥B:\x1c.W`\x04=\x01:<]AK\x0b\x17(OQ\n=);֑C\'0t\x01=}<\x03c<.Q<\x11W4g\x1aFI<\x04.QҼB\x1f]<\x17<\t)SZ<_:U<\x02B;\x06\x1e*mQn<&;f\x7f:Wg=[U~[,kb<\x0bv\x03EC=^<\x03|=yMS<\x0cBTO\t(Z\x1eD$O=\x01T`b=\x02\x17\x19U_\x08*m\x14/>;zD\x03\x0e傽g벺:\x02Ik7:l\x0b<^s;e>xVRr\x18\x16:)/\x1c\x1d\x00=LQ<&<4H:S\rlQ\uef16O\x15|\x17Y=\x19\x1btH\x7f"<:W<˳<\x0c~$s<:8<\x0e\x1a\x1d<\x15\x10.=a(;8<\x1a\x1c;\x11$3\x1061:`\n_$4˥aЩ<ɻp\x1e=\x11$3)\x06D\x01\x0c!vzN=;5\x18b=\x16<\x12\x1b45vX\x04<\x192\x11ly4\x08<\x0bv<\x17L\x03;+tɼ6=f{ͺP;;KV`\n=Jl\x05=ɇ\nVp6\x1f+;^\x16t=u\x1a<\x03\x1f<\x1a3#=j6c:[\r\x0fc<{C=H2\x19\x7f=\x1ay<\nB\x12;v;;=<\x04z\x04\nXs4<66м\x00JS=(<ø|\x10\x1b\x0cW\x08=a<&<\x08<\x07Lλz;2<֟Ѽh\'\x11f\\<)$5\x13y;A\r=eU\x15=\x17_u x:մ<+=̅<7(<\x18;nd\x07W\x02%\t<9#=΅K>W=l<;\x05;\x143;3\x00\x04\x15\'\x0f=0@:jl}g<\x0c3F<8\x1fq<3ύl\x1aЭ:\x02\u05fcu5Ӽ\x1eU\x05=H\x13\x1c!\x0fqvv\x14<\x1ev<<\'<л\x14M\n\x067+<\x1aIq\x10\r<<2<:OfM\x1a<; =8\x1c<\x0e<;w;S1wѼy><\'+<+dK;DλI\x1f:4s;]4^vY;Ǟ<p\x04\x1f:CS5Rx=\x0f[7\x16\r,<5\x14F<\x1d\x03Ud=xɺX;s*S\x10==0|ցd;nJ}c\x10j̀^vYS3=//<^vY!5\x02-A:$\u038bSb\x14<\x02Щ-#=8춼\x1bL"=Ěu4U;\x08:\x0bspm<`O<\x15vkT<~hg͊\x1a=\x02+p@=Ud<<\x1cf?=\x056,W^o;Rc:`J\x01=k7W7c\x07=tX\x1b=,.Z\x03=<$=q-<\rZm\\=i;\x08K\x1c=;0ɇ<(<ļP\x01%<\x08<;\x06"B;\x14-=3퉼\x1ag~\x1b6\x05Le\x1f=2\x13=\x08\x00\x0c;\x06=>(\x1bk=.\x03\x1f_<} =6mI.Ȳ!DC7;H<+Uȗk\x1dH\x0fȼj<\x14;e-<9t\x1cLB=uT<$\x05zЫ<\x10\x15Iz\x12=\x1bTLHm\x06;\x1d0N2y~<^=\x0eƼYa\x16<\x00!=.>2"<4=q\x19<ź =\x01~\x00=J?<\x12\x07ѼԻk\x0em<5/\x0cj:FL=^;<\x13N\x04=):]\x00:\x15\x0e:JɻZt0S:Er=\rx\x0f<\x16\x14-\x07jcC#<\x0ez+~\x1b<_-Nh~\x1cb<*ݻt\x03\'=<\x13%\x14\x1aP5;!\x0fԱ\x14\x12?\x02={\x1d;ݚ<*]\x17\x0e=!uB=ź AhJ~4u;\x05)n&9?\x12`l6\x18w\x1b\x7f9Zl6=Fd=ͽ:\x03(', 'text': 'Visiting College Students | Summer Session\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Skip to main content](#main-content) \n\n\n[![Duke 100 Centennial logo](https://assets.styleguide.duke.edu/cdn/logos/centennial/duke-centennial-white.svg)](https://100.duke.edu/ "Duke Centennial - Celebrating the past, inspiring the present and looking toward the future")\n\n\n\n\n\n\n\n\n\n\nEnter your keywordsSearch\n\n\n\n\n\n\n\n[Menu](#off-canvas "Menu")\n\n\n\n\n\n\n\n[![logo](/sites/summersession.duke.edu/themes/tts_labs_ctrs/logo.svg)](https://duke.edu/ "Duke University")\n\n\n[Summer Session](/ "Summer Session")\n\n\n\n\n\n\nMain navigation\n---------------\n\n\n* [Duke and DKU Students](/duke-and-dku-students)\n\n\n Open Duke and DKU Students submenu\n \n\n\n\n\n\t+ [Courses](/duke-students/courses)\n\t+ [Calendars](/duke-students/calendars)\n\t+ [Tuition & Fees](/duke-students/tuition-aid)\n\t+ [Summer Session FAQ](/summer-session-faq)\n\t+ [Drop/Add, Withdrawal and Refunds](/duke-students/add-drop)\n\t+ [Housing & Dining](/duke-students/housing-dining)\n\t+ [Register](/duke-students/register)\n* [High School Students](https://summersession.duke.edu/credit-course-options)\n\n\n Open High School Students submenu\n \n\n\n\n\n\t+ [Credit Course Options](/credit-course-options)\n\t+ [Calendar](/calendar-0)\n\t+ [Tuition, Fees & Payment](/tuition-fees-payment)\n\t+ [Drop/Add, Withdrawal and Refunds](/dropadd-withdrawal-and-refunds)\n\t+ [Transcripts & Transfer Credit](/transcripts-transfer-credit)\n\t+ [How to Apply](/how-apply)\n\t+ [FAQ – High School Students](/faq-%E2%80%93-high-school-students)\n\t+ [Language Proficiency - High School](/language-proficiency-high-school)\n\t+ [Policies](/policies)\n* [Visiting College Students](/visiting-college-students)\n\n\n Open Visiting College Students submenu\n \n\n\n\n\n\t+ [Courses](/visiting-college-students/u-s-students/courses)\n\t+ [Calendars](/visiting-college-students/u-s-students/calendars)\n\t+ [Tuition & Fees](/visiting-college-students/u-s-students/tuition-aid)\n\t+ [Visiting Students FAQ](/summer-session-faq-us-visiting-students)\n\t+ [How to Apply](/visiting-college-students/u-s-students/apply)\n\t+ [Language Proficiency](/visiting-college-students/international-summer-scholars/language-proficiency)\n\t+ [Drop/Add, Withdrawal and Refunds](/visiting-college-students/u-s-students/drop-add-withdrawal-and-refunds)\n\t+ [Housing & Dining](/visiting-college-students/u-s-students/housing-dining)\n\t+ [Transcripts](/visiting-college-students/u-s-students/transcripts)\n* [Getting Around Duke](/about-duke)\n\n\n Open Getting Around Duke submenu\n \n\n\n\n\n\t+ [The Duke Campus](/about-duke/duke-campus)\n\t+ [Parking & Transportation](/about-duke/parking-and-transportation)\n\t+ [Your Duke Identity](/about-duke/your-duke-identity)\n\t+ [Your DukeCard](/about-duke/your-dukecard)\n\t+ [Academic Services](/about-duke/academic-services)\n\t+ [Counseling, Advocacy & Health Services](/about-duke/counseling-and-health-services)\n\t+ [Buy Books and Supplies](/about-duke/buy-books-and-supplies)\n\t+ [Technology Help](/about-duke/technology-help)\n\t+ [Duke Libraries](/about-duke/duke-libraries)\n\t+ [Athletic Facilities](/about-duke/athletic-facilities)\n\t+ [Other Duke Programs](/about-duke/other-duke-programs)\n\t+ [Exploring the Local Area](/about-duke/places-to-go-things-to-do)\n* [Contact Us](/contact-us)\n\n\n Open Contact Us submenu', 'ref_doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e432f465-7336-43bf-98c6-3fdbd05f66c9', 'payload': None, 'score': 19.682046632058295, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '72941', 'document_id': '978cc5f7-518d-46c1-9a1e-bd564203f398', '_node_content': '{"id_": "e432f465-7336-43bf-98c6-3fdbd05f66c9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "978cc5f7-518d-46c1-9a1e-bd564203f398", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "hash": "a7cd9e930147aa8e0f3b4488d046ed23e992188b48df2708094d8b6c9da528c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0bd6314a-1e94-4749-9a6e-5da9c1fa0569", "node_type": "1", "metadata": {}, "hash": "c6bce8616e4a8e6d7db737b8856089e976713a4829bc3fe8d3c9ec16aa6bab96", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 17, "end_char_idx": 3353, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/summersession.duke.edu/index.html', 'vector': '̒\x1eϽ𩽲J9TD)[\x02͍輟d\x1f\x0c2=R6p<~G/\x04=5`=NR<]\x03{<"ú}%i"7^<ꚼXQq=tk\x17;A=\x1c?W\x07(\x0f!;J;uf\u07bc;!<&\x170(<=Z\x10\x08G;:\x03_}=2\x00<\x1a<ꕻ<\'D4<*\\讲;NBa<=^v=<\x14=\x171B9a[=\x18h=@V;~\x1evL0/\x04=\x0eQd?ﰻA"\x06<\x01\x11so<[\x1e̼\x7f<-t=\x17=\x1fd;7\x1aR\x0f<#\x05ϼRp\r:@9=b=\'\x10XCۃ=n:<$<(n<ۼkB<`89Tļ\x07Qoq\x15a<4w=d{j,=J%<.\x11T <@1\x1a#\nl;8`$>=w3fZT鼫\x0f=(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x12KYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 74.56712697123471, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIGTa\x12R\x06T\x183)㉽ԒdKl$XBLi;/NK3<ڰ5䒼ͼ(\\vܼ\x00p+\t8\x19?=\x000\x8dɼU9")הG蹻Uؠ\x018;tJ=<#\x1aE ļ\x01<;<\x0e_;q-\x0cd:\x06;2m;ׂNs~!=9E<:;%P)v\x13vK\x07$XBQ\x00b=a=*v\x0c5\x1f2\r)\t?=`;.c7=]0T=\x1e6\x07=\'cv4"ʼy7<Ԓ:"ߥ<)ה=\x056G:\'G=n\u05fbAHW\x0e<\r\r=\r\x06\x059ɓ3鿼h]x#\x19=[dC7\x0f\uecbbq0\x18<\r\x07J\x1b\x00\x0fi!Y\x02=\x1a\x08\x1a<\x06;ZBLR\x0b\x12=;\\8\u07fb3\'g\x12=~JD\x1a\x14J\x03<\x15<ԒdH<<_(;FĬxc*\x17-;g=5\x1f<<\x00p=7ٻ\x15C\x1a啼R=+my$<\r\x07ã\n\'\x1b\x1bɼ\\B\x0bK:\x06.=y;\x1b$<\x00\x03Z=S\x00\x1f:\x01o\x17;\x04\x1b\x1b=\x14ټ?\x05;=r^<\x023^=R\x7f<#\x7f4dͼd\x06z+<;2;DG\x1aV:\\%=|7żWUG\x10=9(<\x1f\x02=!<\'\x1b<;ʼNZ*:|7\x11Ɣ=\x1b\x1b<*;\x10<\x12\x02=]A<\x03;&#ci@Iu»35<\x10+ީ\x0c\x7f=Ξ< \x0c;<B\x1b=<8<{m,<\x0f\n%!\x17<^\x0b=\r;}ZqR\x127=ü\x18<\x13/;q\'\x11=ss\x17;\t<"#=KLB\x059Ct:ƺ:ͻ;\x05;i߲\x16S=9\r=Ig(+;$û<\r\r=K\x0ct\x01\x0b7\x16=3ҼL\'\x0c\x7f<ӻ<3q;T(=ڸZ\'$=\x0c\\4*\x1d;m\\\x1f<\r;\x13;a\x06\x12=\x00=h\x13N_͘)\x0c3j\x08;(>\x1f=1=k\x150<`\x02*&U\x1b6\x10\x16<^;\x1eܼJⴼ_\x01=6=(أ?<"\x02S|\x1fMp\x19\x1d<=^<.SvWla=+OP\x15;zn%=gF<4<\x03.lTg=XOO vz!Ê\x05=<ڬL\x1e\x03\x0b@"ϻָ\x12\x07l<\x16/cۼ\x1c\x01=a0=\x12=\x08e=\x02\x10<$䄽<\x19s9R\x0c<\x07X\x19T\x16[<\'<~Լ\r\x0e;T\\oY<}Y%\x06gĔ;\x01\x08Ss\x01-\x0f\x16\t;\x06E\x03<=%\x16! ;-¼\x04D@d撼<ր\x1aE<\x04Kmߧݼ0*<&r;vī:.\x1a9\x07لqcn\x07=|1\x06=\x16w[\x02u\x01&<;<<1\x00;G\x08;$;\x13:ߦ\x08T$<[P\x1aE\x18[\x7fU vw\x02qg=퍻\x1ceX<\x08\x14;\x17S|W<.r\r\x11\x06t\x1f\x02\x14S=7>q/=1#<8t\x19LE<\x07JϻR<*=۶/?۶\x05T<\x00T

<撼J\x15i=,=O=r\x05\x14\x16\x1e/λ}40-=<\x7f0:\x18\x152&\x0edY>\x08Vc<8;L><+THv-r={\x08\x06<}RX\x07sH\x7f;S\x0c< d\x17=ߦ<\x1c\x14к\x00E\x1bF=\x12Ԫ\x03<\x01dм\x1c\r=\x15\x0b<\x02"C<=)=/\x1aa<\x08=\x153=d\x15)=̼H0|W\x05/<**`A<\x17=\x06(<]Z;%SJ\x18W=\\i\nϼb\tgD\x18~8]\x07<\x10u8=_A<"^\x024\t7\x0bj=w(\x07$=ZF=Ҩ\'zt2Y<+Sؔ\x0b\x1c%Jq?<$ҟ<<<#yKYF0\x1c;vQ\x12=\x0cU}\x06\x01=\x19x;.cXBJļ@:@\x1aX\x19<;\x04Ŧ;K<\x19돶=:\n\x0e\x18<ҫ<\x19yf$=77 dG(\x03\U00089ed9)X61ghEU1I\x02Iռ\t=\x0b\x19f=\x0f<(\x16vh<0f9\'t< =MMRAc*=!(\x00\nU%:Ё;\x01\x1b\x07G\U000dbed8(=py\t\x0e<\x1e\x1b<ȵMۺ>-=ŵ(Y%<\x08a;a»PQ\x0fHSC\r=;!2Ӵ77<\x10\x14\x07RŬ<\x0cO9e\t=h;&\ueef4\x1aq3\'#O^<1<ď3<)Q\x0c\'>$\x1cƼvV;dhȼ=\x12J19>\x03=q*<&{;\x13g7鹼r=1gg\x15=<\x14e]=\x19\x0f<2;`\x17=z\x18\x08<\x13\x14=L4*\tf=3;\'\x7f\x1ai;\x0858;\x01%/:r/<`<\x0f\'G^;i\x17<\x15= @<\x0b"\x009y<\'6\r=4\x03\x1f=ӻl38ټƳ:Ja=k\x0f=E\x018\x03m9$ƴB=\x16< \x1a/;/j\x07<4\x02\'<\x02G\x0b\n{рR\x16;\x1a篼r\x17ݒ;jn\x1b=@$\x16r\x1a=8=\x08\tG\x06*\x04e8=mwH<\x1bR(=\x06\r\x00V\x14\x08\x02 q<\x17;uN\t?j:<7;nn\x0ep;\x0e=\r3C<)H\x14q\x16=|KA;\n\x17b=+9\x12";x<+\x06=ӼzgAsaTL\r3$3<Ʀ<-\x19[G=#v9=)=\x039\x01_\x1dDF2,=Vw;;\x14}j$ <\x1fjuD=X;=p3M=0\x13<[Ǽ(8=z -:\x06CS=\x05eJ(s\x1d.\x07Fga\x1dc8J<Gr\x082ϻY;@@+B<\x037*`+<\x19ؼ,KȓX=ͻ\x14:<%<\x19\x1f|&yI\x1eC\x08kVr<"\x1b\x1dl\x1c;Ϻ:;\x00\x0b\x12!\x01=\x1a?87%=mC\x02!*̚<,<./CA_HT`;u:<\x0e%=5=lyB#\x11^2\x01f\x07jHE夼;\x03;w&\x1c<=v\x10;w<]\x1c\x0b:<;xɼI|ZL!a\x18=!F"EK?g./7])<_\t\x08{J\x15/ha@<E<O};\x04E;@=\x02=s\x1e\x1d<_=,:2\x1b+1<̴λ7=e\x13\x15;b\x13Q.4:<Ȼ(;J=\x1bޕP\x12\x176<\x1dk=S=tI\x01a\'\x15=!F=Cp.=\x04\x03ӼҰ<\x1a\ueffb#\x15\x1aGc.nq\r|&=^\x19="\x0f<\\;.>O7<Ƹ;;4\x0e[6;\x17=;;< :\x7f(<\x1b\x100\nH/w9h<\x02;\x07;Ueջ9h@=I=<<<\x0e<ŕw<ۗ\x11\t=\r5G&Pܐ$D=\x12:=z\x7f\x11\x10;\n\r`\x08 \x7fr<"Iz\x1aֻ!dj\\a*\x15+<\U0004747cq\x19=\x02<\x12E\x02\x15+=!\x02%AL\x15=\x1dr=s]8"<\x0f:\x18#]OfǤo<$<=d\x00H";\x082;3|<\x13ck[`}\x199l!<\t\x10y-\tH=\x12E9\x15@P\x0eM<\x19D<\x15@1\x7fyk<=d=4!;d\x0e}~\x1f{ý$\x12<j/!\x07=d=\x02<[)ү+=n8<[n&a\x07\x10\x12zP<@\x16Fq*=8<\x1c#ߌb\x03V}<\x04\x0b\x192\x1bA= qF16ﮢ;4/R<\x10<\\;VΧ;\x086=xx;Z =\x15+=6Hj<ϋH<\x05\x15:BXB,$.EƼ(_=\x19Z\x0b;ùc=\x0eVITRм{Ȃ\x06/\r\x0b=Y;R\n\x0c<[y<\'J\x19ZK=r=ۓ.yG <\'Ge<\x8d,\x0c)Kx;u#=;aQ9;\x1a\x0f\n="ڼsJ\'19N{\x038bd\x13\x02\x0b9F-Y=a\x1e<ߢ=\x1c<:z%<[2:g\x06ʮ\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:003aca76-5d9f-4f65-96fd-b4d915353122', 'payload': None, 'score': 4540.3438386836115, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "003aca76-5d9f-4f65-96fd-b4d915353122", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8748ff1f-4c81-4cbb-a403-7b1dd5feaf5e", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "8e0f2473b9ecf0e48ed560c822dbe79d582550a31e227d0f50896f640a850331", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fd7e78cd-1c65-4b85-ab14-0d9a24026f84", "node_type": "1", "metadata": {}, "hash": "110becb12016a8ef430564afee4ae977079e6544f53e35bc292e80933df60998", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 65687, "end_char_idx": 70590, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': 'L\r\x05鼢Zp\x0f\tӺS[%=\x10t2E.\x08=\x16<\x00Mm\x184ݼ3,=\tS:\x1f3=Iɞ=\x12<\x1a$\x14q;\x1a=.\x00\x0e\n=̃<76b=0&;\x07:=y;i\x0b\x0bҞ.\x14k|O\t;\x10=([Xr=\x11\ru\x03l;؝=\x06\x1a=l;\x01ҁ =kl<3\x04Ȃ\x15Tw<\x00jn=B!l;\x14T<:@<\x13\x1a;<=;3,;qԼ~VI3=S5¡<\x11O\x0b\x10~ʕ>l\x1b<˿ȼk1>=)Ҟ<\x00Q^D\\\x03\x00$\x1d6S\x11Q<:a;8PhB=e\x06ɻs&YR\x15=q<4ڔ;\x161PѼu\x1b\x16$\x01=g\x7f2<', 'text': '8. What are the classes like? Will there be lectures in addition to small classes?\n\nCourse instruction will be delivered primarily in small classes taught in an open, participatory style. Although there are some larger classes, the majority of courses will be seminar-style with 20 or fewer students. These seminars are the primary means by which excellence in writing, speaking and listening are nurtured.\n\n\xa0\n\nTwo of the core courses, China in the World and Critical Global Challenges, will be taught in large classes, appropriate to their function in developing a shared community of learning among students and teachers. Hybrid class designs utilizing flipped classrooms and team-based learning will provide opportunities for students to gain exposure to course content prior to class and provide in-class activities that focus on higher-level cognitive learning.\n\n\n\n\n\n\n\n\n\n9. Will there be research opportunities?\n\nUndergraduate students have the opportunity to get involved in research with faculty members for credit through independent study research courses. The university’s research centers and institutes, including the Global Health Research Center, the Humanities Research Center and the Data Science Research Center, also sponsor research projects open to undergraduate students. In addition, the signature work project provides students the opportunity to seek creative alignments between curricular pathways and to engage in experiential learning that leads to the creation of knowledge and products for scholarly, private sector and public audiences.Undergraduate students have the opportunity to get involved in research with faculty members for credit through independent study research courses.\n\n\xa0\n\nThe university’s research centers and institutes, including the Global Health Research Center, the Humanities Research Center and the Data Science Research Center, also sponsor research projects open to undergraduate students. In addition, the signature work project provides students the opportunity to seek creative alignments between curricular pathways and to engage in experiential learning that leads to the creation of knowledge and products for scholarly, private sector and public audiences.\n\n\n\n\n\n\n\n\n\n10. Will ESL (English as a Second Language) classes be offered for students who would like extra help?\n\nStudents whose secondary education was not in English-medium schools will generally benefit from instruction in academic English skills, and they will take two semesters of English for Academic Purposes (EAP) courses. Students can further develop their academic English skills by taking additional elective EAP courses and/or written and oral communication (WOC) courses. We have a Writing and Language Studio for students who want to learn more about how to build their foreign language skills.\n\n\n\n\n\n\n\n\n\n11. What is the general academic calendar?\n\nThe general academic calendar is similar to that of Duke University. The fall semester starts in late August and ends in the middle of December. The spring semester starts in early January and ends around May 15. The spring break week will coincide with the Chinese Spring Festival holiday week. The one-week mini-term will take place between the two seven-week sessions in the spring term.\n\n\xa0\n\nPlease click [here](https://dukekunshan.edu.cn/en/registrar-office/academic-calendar) to see the academic calendars at Duke Kunshan University.\n\n\n\n\n\n\n\n\n\n12. Are there academic advisers to help me with my courses and major selection?\n\nAcademic Advising is an essential part of the student experience at Duke Kunshan University. Advisers aid in the selection of courses, majors, signature work and experiential activities, as well as exploration of career goals. In addition, advisers cultivate learning outside of the classroom by helping students explore their interests and goals while advising on how to navigate academic and social life. Through the advising community, students are connected to a network of faculty and staff who can help them adjust to college and make decisions related to major selection and enhanced academic experiences (e.g. internships, study abroad, research and civic engagement).\n\n\n\n\n\n\n\n\n\n13. What language study options will I have at Duke Kunshan?\n\nDKU offers courses in English and Chinese. Students who have a strong enough command of both English and Chinese that they can readily do academic work in both languages may take independent study courses in a third language through the Writing and Language Studio.\n\n\n\n\n\n\n\n\n\n14. Can I transfer from Duke Kunshan to Duke, or vice versa?\n\nEach year, Duke University accepts a very small number of transfer students. Duke Kunshan students interested in transferring to Duke University should apply in the same way as all others. They receive no special consideration for admission to Duke University. Duke Kunshan does not accept transfer students.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:bf2ae102-dcf3-4152-a5a6-d2bfd4713969', 'payload': None, 'score': 4540.343838683608, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "bf2ae102-dcf3-4152-a5a6-d2bfd4713969", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4ca2ad83-35a7-486d-90ae-0d6c867ad0a8", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "8e0f2473b9ecf0e48ed560c822dbe79d582550a31e227d0f50896f640a850331", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f98e7081-5f72-4fc0-9779-84e7dae646ad", "node_type": "1", "metadata": {}, "hash": "110becb12016a8ef430564afee4ae977079e6544f53e35bc292e80933df60998", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 65687, "end_char_idx": 70590, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': 'L\r\x05鼢Zp\x0f\tӺS[%=\x10t2E.\x08=\x16<\x00Mm\x184ݼ3,=\tS:\x1f3=Iɞ=\x12<\x1a$\x14q;\x1a=.\x00\x0e\n=̃<76b=0&;\x07:=y;i\x0b\x0bҞ.\x14k|O\t;\x10=([Xr=\x11\ru\x03l;؝=\x06\x1a=l;\x01ҁ =kl<3\x04Ȃ\x15Tw<\x00jn=B!l;\x14T<:@<\x13\x1a;<=;3,;qԼ~VI3=S5¡<\x11O\x0b\x10~ʕ>l\x1b<˿ȼk1>=)Ҟ<\x00Q^D\\\x03\x00$\x1d6S\x11Q<:a;8PhB=e\x06ɻs&YR\x15=q<4ڔ;\x161PѼu\x1b\x16$\x01=g\x7f2<', 'text': '8. What are the classes like? Will there be lectures in addition to small classes?\n\nCourse instruction will be delivered primarily in small classes taught in an open, participatory style. Although there are some larger classes, the majority of courses will be seminar-style with 20 or fewer students. These seminars are the primary means by which excellence in writing, speaking and listening are nurtured.\n\n\xa0\n\nTwo of the core courses, China in the World and Critical Global Challenges, will be taught in large classes, appropriate to their function in developing a shared community of learning among students and teachers. Hybrid class designs utilizing flipped classrooms and team-based learning will provide opportunities for students to gain exposure to course content prior to class and provide in-class activities that focus on higher-level cognitive learning.\n\n\n\n\n\n\n\n\n\n9. Will there be research opportunities?\n\nUndergraduate students have the opportunity to get involved in research with faculty members for credit through independent study research courses. The university’s research centers and institutes, including the Global Health Research Center, the Humanities Research Center and the Data Science Research Center, also sponsor research projects open to undergraduate students. In addition, the signature work project provides students the opportunity to seek creative alignments between curricular pathways and to engage in experiential learning that leads to the creation of knowledge and products for scholarly, private sector and public audiences.Undergraduate students have the opportunity to get involved in research with faculty members for credit through independent study research courses.\n\n\xa0\n\nThe university’s research centers and institutes, including the Global Health Research Center, the Humanities Research Center and the Data Science Research Center, also sponsor research projects open to undergraduate students. In addition, the signature work project provides students the opportunity to seek creative alignments between curricular pathways and to engage in experiential learning that leads to the creation of knowledge and products for scholarly, private sector and public audiences.\n\n\n\n\n\n\n\n\n\n10. Will ESL (English as a Second Language) classes be offered for students who would like extra help?\n\nStudents whose secondary education was not in English-medium schools will generally benefit from instruction in academic English skills, and they will take two semesters of English for Academic Purposes (EAP) courses. Students can further develop their academic English skills by taking additional elective EAP courses and/or written and oral communication (WOC) courses. We have a Writing and Language Studio for students who want to learn more about how to build their foreign language skills.\n\n\n\n\n\n\n\n\n\n11. What is the general academic calendar?\n\nThe general academic calendar is similar to that of Duke University. The fall semester starts in late August and ends in the middle of December. The spring semester starts in early January and ends around May 15. The spring break week will coincide with the Chinese Spring Festival holiday week. The one-week mini-term will take place between the two seven-week sessions in the spring term.\n\n\xa0\n\nPlease click [here](https://dukekunshan.edu.cn/en/registrar-office/academic-calendar) to see the academic calendars at Duke Kunshan University.\n\n\n\n\n\n\n\n\n\n12. Are there academic advisers to help me with my courses and major selection?\n\nAcademic Advising is an essential part of the student experience at Duke Kunshan University. Advisers aid in the selection of courses, majors, signature work and experiential activities, as well as exploration of career goals. In addition, advisers cultivate learning outside of the classroom by helping students explore their interests and goals while advising on how to navigate academic and social life. Through the advising community, students are connected to a network of faculty and staff who can help them adjust to college and make decisions related to major selection and enhanced academic experiences (e.g. internships, study abroad, research and civic engagement).\n\n\n\n\n\n\n\n\n\n13. What language study options will I have at Duke Kunshan?\n\nDKU offers courses in English and Chinese. Students who have a strong enough command of both English and Chinese that they can readily do academic work in both languages may take independent study courses in a third language through the Writing and Language Studio.\n\n\n\n\n\n\n\n\n\n14. Can I transfer from Duke Kunshan to Duke, or vice versa?\n\nEach year, Duke University accepts a very small number of transfer students. Duke Kunshan students interested in transferring to Duke University should apply in the same way as all others. They receive no special consideration for admission to Duke University. Duke Kunshan does not accept transfer students.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d5bace3b-2c32-476a-9ffc-f0018ff8bb9e', 'payload': None, 'score': 4540.343838683602, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "d5bace3b-2c32-476a-9ffc-f0018ff8bb9e", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1702c185-1e76-4aee-beb7-255d26e3aaf0", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "80656f9d92b03491084112e6882bd4a12c3b3539ff6997c3b54af71def744d14", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9b36ce5f-2905-46e1-91fe-62ea171e9112", "node_type": "1", "metadata": {}, "hash": "110becb12016a8ef430564afee4ae977079e6544f53e35bc292e80933df60998", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 41367, "end_char_idx": 46270, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': ';>ԼVbaQf0=P\x19&Z;o =0\x16\x0c=&\x12:\x18=9>9*\x1e=wq;~U;9n\\2<*+<\x06\x16<<7E\x13\x00\x04<\x084<\x11X\x00LRR!3*;k#=7=CR]<|<\x08|.=p@\rv;ks<ՊJ2/*\rv\x1f\x00Xl<|F\x0e\x06<+G\r.=\x06=\x0b=`I7:值2ocu\x1d\x08\x1bo\x15=<&Z \x02=;\x1c?Wz˼5-6켛_5=<\'&\x12몼9剽9o2=<\x00<<˯<\x10J=*<&8a<=j/[\r9t\x13s=\x15ڼ\x13ἹAR=ܒ\x04\x06\x1f;r\x0e<\x1c?w\x12P\x10=q\x03=b];֒:J2;=X\x00=vo<=\x1b$=e<\x03;JR\'<+Ѷ\x06D\x00!=\x1a(\\z<\'o]\x01;9\tW\x04t=o;f]һ\\5ºDy@5;I\r\x1c=l<~\x04\x1a\r;*VT<ԒL=XV-ؼEJRgIђ¼hټm=3<\x08h}6\x0e\x00ܒ\'ؼK\x18SFےM%e<\x16d=jtM=<+eL;r_=\x16ڔ<<*=\x06=`\x0e`\x1b\x7f5=\\\x16<^<2\x0f<\r@\r*;;=%=c0+>PP蕻`\t=Zv=V:\x10);\x03=2<\x0e`&\x7f<\x15\x00b\x01QO\x00;<|\x16=*Mz<"%Y\x04q]=N>˼\x1c++jk<\x19r٘\'\x10UH۸_\x1cMm>U*ΝkGQ3\x05ԗ<-9=;r\t\x0ctz}\x18;o½V\t\x00ڱ}C\x06rIh+=j&\x03g*[,R\x17!\U000fb31aZ\x0e"<+\x18\t\x1bz\x01=6=Gؼe=nkS=\r<\\\x01PQ˧\x0b=Q3\x05Ĕ҂:\x0b喼\x1b!L#/#u=\x11<\x1b}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em;lw!>_=v\x19gu<ۻ\x03\n<\x0e*4ʼ\x1fE\x00\x03VX\x1a=T;a6}<ޙ8=\x0f=\x026PL6\x06;:5:=\x15r b\x19\\μ#="\x179\x14\x1c=5j"\x14If\x14=p\x0b2#=);9\x11;\nm:9\x047SJ<͗\x18OY=F~$\x1f(=-tQܙ\x02q$.;f\x05iK&!\x00s+\x00Q\x11= <<0\x13\x0c\x0e\x1aO=\x17<\x14M`\x0e=<3ְ;5!ȼ=9\x19Ӏ<\x0fB\x15,<\x06\x13K\x0cU;|\x01 ea瀽\x7fU\x12<ԻF<;\x0c\x11==IQ;G2jC\x03=\'F\x10=Hˤ<\x05*=8Pj+\x01[M=W=\x04\x1a=@;3z@J=O\x04;\x15hJ<^=\x1e\x00=Q=1n5\x12<\x1bb\x11<\x07J=\x7f*=[ZU7\x04o@\x1ei\x0cW=d9=c)=k=.l9R%\r=gP8<@\x14\x08D<\x081\x19fvMڦ<\x04:\r=I+;RM3\x1ea<@;ڽ/Uh<\x0e\x06bԇ\x16h=NP<<<\x04RMм/%=8봻\x0ea<\x19캗\x17\x1f:&=<7p"><ٞ<\x04Ė;dа\x0b=+I-]<3#=yC<7F\r<ܻ\x0bcg<\x145쩻]\x08;/i{\u05ce<﮼g(\x12K:"\x0fp!\x00k=.l9R%\r=gP8<@\x14\x08D<\x081\x19fvMڦ<\x04:\r=I+;RM3\x1ea<@;ڽ/Uh<\x0e\x06bԇ\x16h=NP<<<\x04RMм/%=8봻\x0ea<\x19캗\x17\x1f:&=<7p"><ٞ<\x04Ė;dа\x0b=+I-]<3#=yC<7F\r<ܻ\x0bcg<\x145쩻]\x08;/i{\u05ce<﮼g(\x12K:"\x0fp!\x00\x02\'ݦ<`fՃ<.\x18\x07i<V;=ж#=g\x06\x1f`;\t\x05V\x05=\x0fYs<"=\'\x19\x0f=:\x1f\x0f=;ۻ\x0e\x05\nR=ؑxh40=M=\x16\x17FO;!\x1a\x17\x0c?>V\x1e\x19XX^b2:\x14\x19=¤NV[]wYE\x14:^!<<\x11\rc\x1bN\r\x18q"\x15\x19*<&"=ox<&<<=k\x0f<<\rw\x00<;\x15;/\x19sOJ=/()\x0f;=;=S<\\Rd\x10<\x18ղ<ǻ:I\x0b$=\x16\x1a=u\x0bK<\x12; ;\x1ezټ\x7f?K=\x04=ml[N\x1b==и<;\x17ƺ宷<\'\nm<\x1d\x08֦\n=rd<\x07H\x1f=\x02m<<\x14\x02m `\x12D=?\x17\x1datǒ\r8<\x03\x10;4h\x13^<<"=*=9a\x01\x1c5\x1cוgU\x00Q]\x06e\x07=\x0fM<(ZeML8=PՍ)I(PG=K;[}\x0b{s\x1a=T<\x1c\x15͍9Zoȫs[Rny=ˏ\x06c\u07fc: q{\x0et=p9\x1bt<\x7f?=$19\x12q\r|\'\x16\x00\x03=zh<\x16%߃@dRЌ<2\x1c==sDtK<<ݞg<\x07¼Bɒ\x1bQ(n<.>Lu%<[$1ج?\n\x01=\x12=\x15\x00<\x07B<\x0cZ=o=\x00\x1e]q\x11~z=:;(7d=&<ψtV|=xߦ#+6t<=\x159=Eٻ3mл%\x04Õ;&]>A<2MkHqI\x06Q\x07\x0b\x00.x\x0f\x02"N%<+Uq;\x1cwL]u\x15\x17\\K0<Q\x1e[=qXk<\x02\x0ff;ug\\J~.=wU\x1b,hJ=g<*ҼH\x01:\nx<\x13<\x10\x13&堯<:Ʈ׃\x1aL<\x079NӼ\x01\x16U=i=\x1c+;\x1cp<@\x17yai\x1f`<[?<;?\x1b,*\x07׀=\x14\x16ð<\x0b6=`Լދ\x14$ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈>;\x01\t;\x00\'`Z_؇=8}=\x02;.<\n=;\\5\x16:\x01a"KT<$YӼS=[;"=K9+^;\'ƼTWV\x13:},,=S\x1d<\x02>\x12;@2Fs˺:(=sμWǻ+w\x1c\x12=|~mc;,7<\x0b<;<\x00\x08Ҽ fMv=̼RP\x11\x06\x15L<2hh\x14<8<\x12;Z<9\x07;\x00\'Z4\x1b<@2bCÁoe:\x15\x1d\x1e<*\x12\x0bt<5@g<\';pu<<瞻s\x16\x1a\x17g<%KN<2=c>< <;}<\x18E\x121=)=xm=#;O*\x7fF\x05\x15;=~t\x1d\x1b=U\x15O;\x14\x10\x1cSV<', 'text': 'Membership Information\n----------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n\n\n\n\n\n\n Programs and Services \n\n\n\n\n\n\n\n\n* [Open fitness classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#fitclass)\n* [Spinning and rowing classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#spinning)\n* [Personal training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#pt)\n* [Boxing](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#boxing "Boxing")\n* [Stretching and rolling sessions](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#rolling)\n* [Rehabilitation & recovery training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#recovery)\n* [Sport Massage](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#massage)\n* [Free bicycle rentals](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bikerental)\n* [Swimming Lessons](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#swim)\n* [Climbing Wall](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#climb)\n* [Body composition assessment](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bodycom)\n\n \n\n\n\n\n\n\n\n\n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n\n\n\n\n\n\n\n\n\n\nIf you’d like to take control of your health and wellness, you have all the resources you need right here on our campus. As a member of the DKU Sports Complex, you will have access to a range of facilities, motivational programs, activities, and services, with experienced and enthusiastic staff providing personalized attention. Our goal is to provide our members with the tools to learn and enjoy their health and wellness journey.\n\nMembership is currently available to all DKU students, staff, faculty, and family members. We also soon hope to invite alumni and local Kunshan community members to join us.\n\n**For the fall semester, all students, staff, faculty, and their family members can register for a free membership, which includes access to available sports and activities as well as free access to open fitness classes. Starting in the spring semester, staff, faculty, and family members will have several membership options that can be tailored to individual preferences.**\n\nMembers must be 18 years or older to be eligible for membership. DKU students younger than 18 are eligible for a membership with a waiver signed by their parent or legal guardian.\n\nAnnual memberships expire at the end of the academic year, regardless of the date of purchase. Memberships starting later in the academic year will be prorated monthly. The subsidized amount of a membership cannot be refunded. Minimum 30-day advanced notice is required for all membership cancellations.\n\nTo join DKU Sports Complex and enjoy all our amazing resources, simply complete a\xa0[membership application](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/).', 'ref_doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/sport-complex/membership-information/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{25977 total, docs: [Document {'id': 'test_doc:a6ece455-20f9-4162-9aec-283d569af329', 'payload': None, 'score': 15.549779420966656, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '139432', 'document_id': '4c8706bb-92f1-4ced-b4f6-d741f1128e61', '_node_content': '{"id_": "a6ece455-20f9-4162-9aec-283d569af329", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4c8706bb-92f1-4ced-b4f6-d741f1128e61", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "hash": "96e184cc8db1f50e5fb21defc8a365c981504feacb2ffc80a67400445188a0a2", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4b88ee27-1bed-440f-9e41-6d9aa3e31bc7", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "hash": "08aebee95fd0d1021d5a00e43c2572878a17f5b07a5b3f23025ce94a6fbc949e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4cecead8-79c8-4c45-96ae-1fbcb1118484", "node_type": "1", "metadata": {}, "hash": "7072ece6925180f6d5b4b3c3b06eeac11f3620a7d8d71772c67c4e947cc96497", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6505, "end_char_idx": 11291, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html', 'vector': '\x03c\x1d\x10#\x15$27Bw<_\x08__\x0f=s\\KYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 11.651113589255424, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19\x13 Z=S0μ)\x1c\x02<,=)ɜ3Hx<5\x1b;\rJջ\x02ԙ;\x13\x14Ϻ=b,\\[3\x01i\r\x18h;z\x0c̼e=K<\x0e\x08<>=+6\x15=\x11\x15ˠ:=K\x19;3Ǽ\x15=\x0c,<.=r<`d=\x7f\x0c=$3<%#=I*xݼzh <@\x17\x13=^ȫ9ܗB3LU\x08=\rJռtѼA\x12%(C9;43Aܼ\ued7b\uf0a4;Pwx\x05E\x07T\x11;\x1f\x07:z\x0c;\x0b.\x1c\x0f5=<:\x05>9\r4;nL(=g<`<#c\x0eHd9\x05<߹\nZ̼UW<\x16\x1d=\x1d<*ؼt<\x07>;c\x04\t=\x00ẺH:~ѻ&F:,%#nL<9\x19=淼X\'Լ,~<)\x1c=\x0bx\x02<3x;\x0ee;<3>\x02=;Ȱ<$<= B<(̼.\x1b\x12j4\x146;,%xSV{!p\x14]\n2>o:u⼙d<(F\x0c=⼗:Ժ\x03Y:`\x18qP\r8.\x10\x06ND/B;\x0c<]<,o<\x13;', 'text': '#### Are there student worker opportunities in the ARC?\n\n \n\n\n\nWe hire DKU undergraduate students who have successfully completed applicable courses to work as Peer Tutors based on demand. More information about Peer Tutors can be found in the\xa0[Peer Tutor Program](https://www.dukekunshan.edu.cn/academics-advising/peer-tutor-program/)\xa0section.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### What is a tutoring session like? Can I get help with my assignment?\n\n \n\n\n\nDuring a learning session, our tutors use the Socratic method asking intentional questions to help students reflect, connect knowledge points and develop effective learning skills to become an independent learner. We can definitely help you with your homework, but not by doing the work for you, rather by guiding you to find the solution on your own. There are no grades involved with attending a tutoring session and peer tutors do not report anything that happens in a session with the instructor.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### When are tutoring sessions offered?\n\n \n\n\n\nWe offer tutoring sessions throughout the week, including evenings and weekends. You can find the detailed schedule of tutoring sessions for the current semester on the A[RC Tutoring Schedule](https://docs.google.com/spreadsheets/d/1DyLkERtLywdCYe1AsfkiuPIdwknkB8IKRW9rYhiCfss/edit#gid=465269066) page. Tutoring takes place primarily in the tutoring space located in Library 1032, the Office of Undergraduate Advising suite.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Do I have to make an appointment for drop-in tutoring?\n\n \n\n\n\nNo, you don’t need to make an appointment for drop-in tutoring. You can visit the [ARC Tutoring Schedule](https://docs.google.com/spreadsheets/d/1gNE05s54BnHkYVxtx17_qgfdS9VBhSRtPi0UUyuOlLE/edit#gid=1635144644) page to view the drop-in tutoring schedule, and go to a scheduled tutoring session. Our tutors will be there to help you.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### How can I make an appointment for 1-on-1 tutoring?\n\n \n\n\n\nTo make an appointment for 1-on-1 tutoring, please fill out the [1-on-1 Appointment survey](https://duke.qualtrics.com/jfe/form/SV_b8Wdsihu1OesAaq)\xa0and submit the request form at least 2 days in advance, because we need time to match you with our tutor who is available during the time you would like to meet.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### What courses does the ARC offer study groups for? Does my course have a study group?\n\n \n\n\n\nThe ARC supports several entry-level courses in the study group format. For a complete list of the courses we offer study groups in the current semester, please check our [Study Group](https://www.dukekunshan.edu.cn/academics-advising/tutoring-service/)\xa0page.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Can I obtain tutoring support for courses I am taking at Duke?\n\n \n\n\n\nStudents should seek tutoring and learning support at the institution they are taking the course.\xa0 For courses at Duke, please visit\xa0[Duke ARC](https://arc.duke.edu/).\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### How often do you hire Peer Tutors?\n\n \n\n\n\nWe have recruitment for Peer Tutors every semester. In certain cases, we may hire a limited number of Peer Tutors during the year based on demand.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### How can I apply for the Peer Tutor job position?\n\n \n\n\n\nLook out for the announcement that the ARC attend the info session. Detailed information about how and when to apply will be shared then.\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### How can I find the event/workshop schedule?', 'ref_doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/faqs-for-arc/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:556f2e72-26d4-4a61-a136-e8bebec48261', 'payload': None, 'score': 239.2672447455728, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '97475', 'document_id': '9d8cbb05-7c4f-4b83-9072-f9b96fe311cc', '_node_content': '{"id_": "556f2e72-26d4-4a61-a136-e8bebec48261", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 97475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9d8cbb05-7c4f-4b83-9072-f9b96fe311cc", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 97475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html"}, "hash": "0c2460c9d3e58acad6431377c345c2514d38bd1ca2a58d243eb3c71afc06b337", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a5eeaa22-86fb-4d8b-804a-600cc729dde1", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 97475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html"}, "hash": "d4d2bf8d10a8b97cf7f37ed4d2d960c2d8cc06dfff76d6f010cb67e41a66300c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1c93862c-2048-4d11-a220-4dcc2df4c389", "node_type": "1", "metadata": {}, "hash": "b8f0288d19b1c9462260c51f61459e68e591e949ddcfa36c8fcd64b5f0401d6d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2924, "end_char_idx": 6333, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/new-students/index.html', 'vector': 'Y\x190bZ먽\x00ݼkrD;\x1bP=TS\x1c\x1d=\x00ݺL=+\x0c\x0e<;J"\x10=zL\x07=\x1f<#5n\x0f\n<0>o=\x7f<]1\x1f/=\x7fĭ;!<\x15,\x1c\x15i^;\x12\x16;l<\x08>;=E0=-.4<\x7f@w<*<2:\'}>\x02\x17@\x00<\x03>p\x95=x;W;&:$=:\x03=`a;T\x0e@%=f:,\x10MǼ\x1c9\x1a\x1bGG:؝<:wl<\x1d:Z\x02%-\x14=Mǻq<`a@[Ԭ<~;aJD.<\n}>\t\u07fcA;i{g\x0e{*G,<\x17`;:\x7f@=8ܼv\x19=\x06<\x00U/=EQ~\x15i<\x16j\x03\x10r;EQ\x13Z;\x0cM=\x19=xݼ*=o;<\t\x14:<\x1c\x0c;\x11,ՐF(=epݒ;9ꇻa\x0es\x12==p\x1e;#\x1d\x01<\x0c;\x0e;1:\x08\x0e\x07c\x1cL=!#|\x1e5=\x0c\ud7fc1K(9\x00\x193Y\x01<\x0cO7j\x02=Q,㮶<\x0b\x0b<\x06\x1fT<]\x1f:3\x1f^뢗<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&=-K7p=l<,=\x12\x15̃\x05\x1a;\x1f.=;\x05\x18=\x1c\x045<"hU<\x0c\x07\x1cTŔ\x01\t;Qɼ\x08\x17}<\x1d=K1=\x12\rfF\x04-y;GE<[Ƽ6C%;\x18Z.<+<ػ\x00HY\x02<\x19/is\x1d\x0e<9;DR~<n\x01\t\x03\x7f"=y\x10<\x16<1=ջ;@+(7\x11=Fc\x01\x14=:\x15[n*o=b=={=\x1f.ڍFB7\x11%=\\QS\r<5\x008Ł*B=2\x13<\x16=N\x18-\t=a2=\x0e&Gȟp}b;\x0bMX\x18=\x00=馼@\x18U?ʼ<҂\x005y\x02K', 'text': '* [About Us](#)\n\t+ [What We Do](https://academic-advising.dukekunshan.edu.cn/what-we-do/)\n\t+ [Our Team](https://academic-advising.dukekunshan.edu.cn/our-team/)\n\t+ [Faculty Directory](https://faculty.dukekunshan.edu.cn/)\n* [Academic Advising](#)\n\t+ [What is Academic Advising](https://academic-advising.dukekunshan.edu.cn/academic-advising/)\n\t+ [First Year Student? Start Here!](https://academic-advising.dukekunshan.edu.cn/new-students/)\n\t+ [DKU Definitions](https://academic-advising.dukekunshan.edu.cn/dkudefinitions/)\n\t+ [Academic Accommodations](https://academic-advising.dukekunshan.edu.cn/academic-accommodations/)\n\t+ [Academic Integrity](https://ugstudies.dukekunshan.edu.cn/academic-integrity/)\n* [Academic Resource Center](#)\n\t+ [Tutoring](https://academic-advising.dukekunshan.edu.cn/tutoring-service/)\n\t+ [Academic Success Coaching](https://academic-advising.dukekunshan.edu.cn/academic-success-coaching/)\n\t+ [Workshop & Events](https://academic-advising.dukekunshan.edu.cn/events-workshops/)\n\t+ [Peer Tutor Program](https://academic-advising.dukekunshan.edu.cn/peer-tutor-program/)\n\t+ [Peer Mentor Program](https://academic-advising.dukekunshan.edu.cn/peer-mentors-list/)\n* [Resources](#)\n\t+ [Students Resources](https://academic-advising.dukekunshan.edu.cn/resources-for-students/)\n\t+ [Faculty & Staff Resources](https://academic-advising.dukekunshan.edu.cn/resources-for-faculty-staff/)\n\t+ [Pre-Health Resources](https://duke.app.box.com/folder/48799464636?s=87pre13veghzaho133u8zaozzgr9pv9s)\n\t+ [Pre-Law Resources](https://duke.app.box.com/folder/48799879835)\n\t+ [Interesting Upcoming Classes](https://academic-advising.dukekunshan.edu.cn/interesting-upcoming-classes/)\n* [FAQ](#)\n\t+ [Advising FAQs](https://docs.google.com/document/d/1XKuY2rwXBLEYZtM9LDUGFNHgyhVvEmcURKLTWDwscwM/edit?mode=html#heading=h.uqazz4jigo46)\n\t+ [ARC FAQs](https://academic-advising.dukekunshan.edu.cn/faqs-for-arc/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFrequently Asked Questions about ARC Services\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Table of Contents\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n#### What does the ARC do? What if I am not sure if you can help me?\n\n \n\n\n\nThe Academic Resource Center (ARC) is a learning support center within the Office of Undergraduate Advising. Our mission is to provide undergraduate students at Duke Kunshan University (DKU) with quality academic resources that promote inclusive learning and development. Our specialty is providing tutoring and learning support for gateway, sequence, core, and large lecture courses. Our services include [tutoring support](https://www.dukekunshan.edu.cn/academics-advising/tutoring-service/), [academic success coaching](https://www.dukekunshan.edu.cn/academics-advising/academic-success-coaching/), [workshop and events](https://www.dukekunshan.edu.cn/academics-advising/events-workshops/), and [peer tutor program](https://www.dukekunshan.edu.cn/academics-advising/peer-tutor-program/). You can check the webpage of each service for the detailed information. If you are not sure how we can help you, feel free to write us an email or drop by our office for a chat\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Are there student worker opportunities in the ARC?', 'ref_doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/faqs-for-arc/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:bb523310-82f7-4fd1-bbfd-f33c9032727e', 'payload': None, 'score': 191.1216467726108, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '122152', 'document_id': 'd8330f4c-2363-4d2c-a2b1-881532a038de', '_node_content': '{"id_": "bb523310-82f7-4fd1-bbfd-f33c9032727e", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 122152, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d8330f4c-2363-4d2c-a2b1-881532a038de", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 122152, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html"}, "hash": "1576e35e6fc46d1f86114d924d93dd3d0cd0cdad7cdcc980b37f9493a4705911", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "620b8783-7b87-435f-b462-98fc8cd2f905", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 122152, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html"}, "hash": "60f26167998b9d9e2a1630ed8d0353f31bce52c2db7fb56d4fcfd069308813f8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5b3e63aa-363c-4f5d-8ee5-69dd754a8a7a", "node_type": "1", "metadata": {}, "hash": "232c8044741670219e0c4fc5fcc384fc6e9bbb82822a0f2c7f103609afcc002c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9507, "end_char_idx": 13827, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/cscc/%e4%ba%a4%e9%9b%86/%ef%bd%9cafter-school-tutoring-persists-despite-double-reduction/index.html', 'vector': 'X\u05fc]\x07Q\x02Cg\x0e\x04a;\'f\t=W\x04=+\x16<\x1f^=\x01Aܼ\\\x17=%ۻ o<<"!-:\x1be#0/<\x8a`,ȼQ?\x1d=S=47N<\x1b*<ڻ;ڻexL;!dM;Ϧ\x11;}:@;Z\x7f<:@9S=N=-%ph2\x1d<м\n=\x06v<:\x10\x1e=0\x04<<;\x01==\x11XQ~$\x1f<;\x14=V;SA:\x1c1=D$`\x1cECŻY|;\x13B\u07fbw\x00=6ؾ<\\<\x1e\x0cQ\'\x14R\nZ<0\x0fżY\x05\x07qw<\x11)\x14;H\x13<7E=t\t\'v@=<_\x7fZ2=_\x7f\x15O2\rs-=MݻX3e:U\x060T;\x1e\x03 \x03=V=ز\n_LV=\x00<\rۼ{;,e|:\rgVg/C|żJ<=x\rF\r7V_vP\x01V?=>\n<\x07<\x11\x16G\x12;JV<=\x1fQC\t%6ֽp̈<}\x06Ƽ\x0e\x13=\x03ת=9vn=09H\n\x1fӼ8Ɯ;d3\x06qN=y=Y\x01<\x10*݇=Aˏ\x02;=\x18\x04/<\x10J-Tš~zm<"u;.{<_vP<ջ\';v;6\x13`H:@:F<)*=^9"\x08\ta\\;\n/"\u05cc<\x15~D<\\$\x1b=;MѾ\\?\U000e45fcwƼ\x08\x07V"=\x15< ռxƻk伩\r=]1g\x04[=R"_;\x0b&Ϩ\x00B#\x1f9=ż\x0eD:C!=\t\x1a_<=iaG&#=ؑJѼ[oռy7c=\x05Wy.=:<\x1a\x04\x8f49z:<,`<Ԗ<\n䀞:\x19e\r\x7fgJ==\r=:i(\x14<\x05Cs\x1e~.ԗ=v6;mw,=5=Լmw,=\rT;/";$<\x05;pp<\x10!\x18\x02̅=XȻ\'輵pSȋȼtc="Ƽ\r\x14;\x10P\x00[9\x02=?C\x04<6=3do(\x13\x12;-HW=]R<Ǧ\x03qM0$\x0f5=l\x14[svd\t-\x7f>\x0c=F.3A\x08=\x19 =\x1b\x05\x0c<ջs\x1e\x19q{\t=y\'\x11dF=\x01aL<\t<\x0ck=\x14;\t <"\x05=\x06R\x02t\x14<\x1f`ڀ\x01 9;mw,+z<|S\n3A<49|D\x140 =ռtj:C<^\x04;+<\x05<嚼Y;\x1a\x07S;F:ga7P=`d\x04N=\t\x1a_\r7\x13\x076Y+zE\'A<~\x103=\x10x;Ѽzh<@\'K<+EA;\x7fQ*=\tc<.=+=\'xG0;ҙ\x17L2\x0f\u0383Vaz\x16\x1eϼ\x04+9S,\x08=j\x0fZ\x00<(<1t\x03\x05u\x0c*;5\x1c\x078*\x11̻A\x03\x1e<1(ӻ\x1e?m\x08<\x17\x15`\x13*Wf\x010\'$Vjַ=::\'\x01*=\x1f\x11=\x08\x10/=[:; XX3\x18"\x12dN=hp"<\x15\x04XD;s\x0f=i\x14)$\x02ż\x0c\x19 X<\x08;{<ϔ\x16\x03\x05<\x1e\x02<-_\x1aַ\x0b;C.64=%9;:ĺ8T,V;f\x14W=RȮ\x04\x08=i\x1d:2i;ˋ;\x18\x08=JVồ8==\x08\u0378:\x05<ͺР=T\n<\x06<\x1e\x193\x00ˑ\r=\\\x15h<<<\x17;&\x16\x03;CɰF꼫¢<5.a,\x00S \x18\x0f\x7f:< üP\\\x05<ỼM<\x0e\x02=qꗛ;\x054=ȓf\x16\x03=\x19=]\x18\x02,<Ƽ=<\t<\x03\x19\x1e,!=\x01ƼF;\x1a65=d>=\'<Э\x08=Ј<\x17PӖ;\x00B\x065\x02:\x1d؏]5><51)=р<%=;(I\x7fPs:B+\r֞<\x1cW=hQ;;;\x7fu\x0fhc;;rԆ<}kK;B}: a\x13ܼ:\x10\x19=kn.dz\x1b\n\\$<,Nʟ<(!4\x16\x0cx;\x11<<\te<ς:ʟ\x13\x1aQ\x07=m,\x0e\x11=9\'<~<\x1a@|\x17.ʽ_<\r\x03=h;E=x\x0f7]μ\x02ݛ:P<\x7foa<\x1e]>\x18\x1ep<\'l=QIɛ<.<;S9B:z\x1c<ɳǼa\x0fm];|]μ\x16=\x13b;<\\\x03=I=\x1bUus\n\x13z\x18<5紺|\u058b<\x97cO\x13PFPv\x11q0\x0f(q|!7=@pT:F<\x0fi\x1aa\x08\x07;S:<9Y\x1aGK)=\t=h9\x08=̈\x08\x0f:A=<09༞\x16\x1e \x1f<\x075-d\x19\x02\x1b\r҂6=(JK\x14<˩<.=%o;5r%\x0fi=})\nX\x04=XkY<\\xXp\x11=u{\x15=d<μ4Dg\x1eIv=hI<<ؗ9:$hP;\x13=\x159/=2%\x12m:\x18\x1f<\x1fL\x06$=eEq<"ǻQ\x87\x06Q\x1ez=\x1egd,=46\x1a<\\-yϼOĻqY=n\x1f#=;\x06Xy=\x0b\x1c=D8.<;`/\x0b=dW\r=2"=ׯׯTC=mIƓ曥B:\x1c.W`\x04=\x01:<]AK\x0b\x17(OQ\n=);֑C\'0t\x01=}<\x03c<.Q<\x11W4g\x1aFI<\x04.QҼB\x1f]<\x17<\t<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:110a63df-8b02-4822-b4a9-617ebfd42f5a', 'payload': None, 'score': 116.38286929602297, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "110a63df-8b02-4822-b4a9-617ebfd42f5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc1f8a7f-baaa-4dbb-b662-57f13800fc6d", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "42c284bcff1c342571f19d5285c5bdf0c3c2d95e0c64042007d2e2532fa12fcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44f66e02-b2b9-4265-99c9-08ed4732fef3", "node_type": "1", "metadata": {}, "hash": "297fe55bd95dc0e162681bb957aa6d46eb3c30c959b454474a848f22dc63074d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1601297, "end_char_idx": 1605766, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'B\x03sL͜\x13珼|&&a\x11y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/ݳݳ]K_<\x01l<ܵ+<2=5Ǻ\x07\x0b8-\x19hB\x05\x10(\x19Vs<1\x0c<>\u07bcp<\x00g==*\x7f:Ir;$9Vk;\x04?hJ<[pU\x181=2!|>\x10SQ\r异\r\x0e=d`\n\x01p]=\x02<\x1c\x1e>;\x0c\x12=fR<]˻><\x15\x03\x0fR;\x18\t=mGUFѼrI=+H<\x02=i¼B0cD\x11bjjXYZ(=\x0f\x02\\Ԭ:V<\x1f:\x03S\x00=!0\r\x1f溼\x1c;\x07\x12\x14;\x19\x03;7=\x7f\x1eU;ĒR<\x16<<$=\x0b˼A~\x10;ٟ;M>^=C\x19<ؼ+T\x13<=/;q\x18=\t.C6=Ur<~;\x1b\x15=^r[\x12?hʼRWk<`<\x05҄ =\x0eu\r6\t<% 9YZB<\x19}H=\rv;ۆ!\x1a/4< &=\x1cL<<ʐ\x17<\x19V;e,:\x07<&;\x1e4O;9;7t<4M:3=JK\x0c%\x15=T?\x139t\x08+\x11=wQ!}\x1d=+ȼp6\r\x0cmG =<\x071\u07fcJE\r:\\"A0Ycd=?h\x15==X1⻈}V\x06Cs\x7fŻo^|<)<\x05.\x11fP=W\x06^VB<#>?<,_=\x1fA\x16;<?\x15\x08\\<\x10\x10;N <ɘ<ޑ\x02=\x13 ^\x16%]\x14;^4\x1b6\x1bPoћ/P<T;b<ڽ\x1d%="5<\x165\x16\x1d\r/\x0cU<ּ6\x16=j\x19<9`Y=\x17=L\\Q=<<_X<\x08hԼ\x187/\x19T\x1d:`Mh\x17\x18ᦼ\x12 =\x1b`;\x1c=\x1e<\x18M<+\x17\x0bMɄ\x00\x04<:ټgy:E;DR\u07bc2!\x00<˲\\\x0e\x17<\x1cOS=,\x10\x05\x06"\x01TK;:<\x1dջ=Fq\x02PH\x0ew\x0f\x17-<\x11=\x11;\x1bͼ\x1b< =BֻI\'\x0f;$\x01<ഄ\x19U7TK=2ӂ<¦\U00100f0f<*F\x06e\x08H<\x163:M\x1c?뻢Ï\x1e=\x19\'<+ڹÏ\x1e=T\x1b=x;+\x17\x0bn\x12\t\x14=%*<~ج+S\rBV>6ʻ\x11=lU;\x0bl\x1f?\\\x1c1R=\x0c<\x17B\x1eU{;<\x06_\x0c=T\x08뼻:Ǽtm|Y:ԝ\x11\x00<߅<\x071=DV?b\x04<_~`ݼ\x0em;hW};r\x1f=j"\x17D;=5x=\x16c;&ռh`4=\x17D;$\x08%l\x03=OߛZ=e.O»7`мV;r=k\x1c\x0c\u07b4Si\x11S<ɼ\x1cR7\x0c;O`*=Mf<3\x07\x05:\x00\x15\x1c(=\x07T=T<)W(<:\U0007a4bc\x1ae\x08%9N\x03=c\\F=O~J.m^\x08WY:1\x08}%:\x0c\u05cbbFû\x070=a\x00\x08V(*~{<:<=4<=A<\x15-u\x101-x\x7faޗ<\x12\x19\x13V[\x10cR(qfKZ:\x0b\x06;)W:;\x1f\x0bEt<;,<:_}\x1f\x0b<\x07`]\u07bcv:t\x1e`C6ѼO#;5r=XH\x1cg:<%L<2fm3==X\x10"A;VjؼJ\x16=G\x07ir&\x04)=~\x12d綼^Y¼\x10\x1aqX<\x1d8(t\n紼*<:=~m\x17<{o8\x0e<3I<^9XA\x11g8y\x17\x1260d#\x17v=\x0c=kn\x17=6Ċ0\x04\x01=k W={<=\x0b\x18\x06\x03=\x0e0=\x0e<\x1e*$%,\x1c\r:JĻ+=L J\x10\x12\x01= g08Z=[\tm:\x16\x10\n<˼1\x12X<̌<\x0b< g2;\x10<\x168=͞\x19{<#<]\x1e\x17\x06<(<\x01;\t_=\x02W\x04\x02=$\x13;e\x15\x07<뺮\\H?8<,VI8B5ż\x03=о\x0b7<ܮ4=܇\x1c\x11\x13δ;3<ؼ,\x08ح(=UVù\x1a =:}P\x0fA~ü*=i\x16\x13{M+Hz\x11;N<\x1e=n%\x00\x19c<;ҭ<6e=3"=R\x0c<[TW2J\x04T]*\x13=v\x19@: wPi<\x01Y=\x1e\'\x1e\x04@=9\x7f<<\x02\x07PЏ\x19d<`Yg<#@ukջ=\x13;%>;2n\'\r$+y\x07\x01f\u07fbb5\uef3a\x12;(<\x02=\\<\x114\x111\x04=\x0ev<,\u05fb(\x1b"<[k{\x08&.G=;\x04H;\x05]\t>iY.=k;c<<\x7f<÷gE7;\x00R:vV:<\t\x00=\x11;\x7f:<̘<4;\x16hZ=zʻ᩼e;&b_\'=\x1f4L-2?=Z*\x10<\x116ٺ\x08|&=n3;\'\x17<\x116Y\x0e\n?,\x1dC&ȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{35951 total, docs: [Document {'id': 'test_doc:09ca1703-13c8-46f8-a95a-63ef33a361f3', 'payload': None, 'score': 6.1942609711684185, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "09ca1703-13c8-46f8-a95a-63ef33a361f3", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "088fd604-5ad4-41bc-9fe8-7fb4144a2e54", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "396adaf6f5bdfdec9c851c2e2ff99bc9a14410f97726e1477d3598691d145c96", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7099d2e3-66bf-4c9d-9cec-076bcb6a72ff", "node_type": "1", "metadata": {}, "hash": "fdbfb58367bc290cbf209fb93b148f90a0ddeeb5e40c3d57ea46ff4ea1b9490c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 645788, "end_char_idx": 649917, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': '\x1fT\u2e7c¼\x10Vv\nDEe.\x03\x12)\x05mk<,/=v:\x10=\x12;xhS;\x06\x0eeU梾:Ig\\<\x08w^;@!<\u07fb<\x06m/m;λ\x1fԼޠ4a\x10eF=Q\x1d\x0f=\x0b;+p\x1e\tq<\x06\x17\x1b<\rP1J;;4I\x05}#$eټWm\x06"J\x04v<=;}Z]\x10\x03g<\x0e?{\x10\x00=²\x1b<$<$=S\x15\x17h\x1b\x02;\rм.*\x10=%\x1d=M\u07bc\x17h3VW"\x18&=(:\n=\r\x11<︼I\x19=o\x1a<\\-\x0b\x10ּ1;\x02=\x17#n:i\x0e\x05ļ^\x14\x12||o\x13u\x12=d<Ѵ6<\x1e:A\x11x8;\x16:e}\x13wa\x00v~Dࣼx.=/\x12t\x07<*8\x00Ѽ~E\t7=S=\x0f-=Ek;n\x1ch\\ɼ\x1e¼%=}\x0fg#A\\q2=>$<)=JV=\x11x\x15\x02.R5\x03<7+j\u07b4`0˴⦼\x1abL:\x13\x16=:\x1b<\x04=T<Քʻѡ=bc=\x1e\x13v8=f$$\x16IQ\x0e\x01\x13VZc:\x10\x1e軚\x0e\x05ļh\r\x17:\x1a4`:b\x1d\x11)\u07be;\x0fɂP (q<\\|缊0\x06=@,=d\x01~\n\x04\x0b=\x0eD;\x15\'vKkb=o=>=}m<6E.7O\x03=3\x19>;w;YR~[=\x02<3<3Z(YԦA=$jK(OLC<ػ}=Wދs\x179u4ż\x00Ekລ|<\x0ek\t\x1a;ӟ-<:Z̈_9;\x0c<dž;_J\t\x02; <\\<\x0c;m\x04Mb\x0b\x0e=̼І\x05S=0j;Fb=\x1b\x0c;\x12\x08V}9=^=`mr\';G"?<<66J=[\x06\x14;\x19.!\x06\x14\x00\x1bLS";E2<\x1a=<~M\x18H/:̈h}p=\x17<2\x11剆p\tF\x0cY=2k><\x1d\x0bE\r<\x01=ΚO=\x06\x14\x001}=?\x02<,S\x07#kD>\x1e=I\to;üF>c<6E.7O\x03=3\x19>;w;YR~[=\x02<3<3Z(YԦA=$jK(OLC<ػ}=Wދs\x179u4ż\x00Ekລ|<\x0ek\t\x1a;ӟ-<:Z̈_9;\x0c<dž;_J\t\x02; <\\<\x0c;m\x04Mb\x0b\x0e=̼І\x05S=0j;Fb=\x1b\x0c;\x12\x08V}9=^=`mr\';G"?<<66J=[\x06\x14;\x19.!\x06\x14\x00\x1bLS";E2<\x1a=<~M\x18H/:̈h}p=\x17<2\x11剆p\tF\x0cY=2k><\x1d\x0bE\r<\x01=ΚO=\x06\x14\x001}=?\x02<,S\x07#kD>\x1e=I\to;üF>c<6E.7O\x03=3\x19>;w;YR~[=\x02<3<3Z(YԦA=$jK(OLC<ػ}=Wދs\x179u4ż\x00Ekລ|<\x0ek\t\x1a;ӟ-<:Z̈_9;\x0c<dž;_J\t\x02; <\\<\x0c;m\x04Mb\x0b\x0e=̼І\x05S=0j;Fb=\x1b\x0c;\x12\x08V}9=^=`mr\';G"?<<66J=[\x06\x14;\x19.!\x06\x14\x00\x1bLS";E2<\x1a=<~M\x18H/:̈h}p=\x17<2\x11剆p\tF\x0cY=2k><\x1d\x0bE\r<\x01=ΚO=\x06\x14\x001}=?\x02<,S\x07#kD>\x1e=I\to;üF>c<6E.7O\x03=3\x19>;w;YR~[=\x02<3<3Z(YԦA=$jK(OLC<ػ}=Wދs\x179u4ż\x00Ekລ|<\x0ek\t\x1a;ӟ-<:Z̈_9;\x0c<dž;_J\t\x02; <\\<\x0c;m\x04Mb\x0b\x0e=̼І\x05S=0j;Fb=\x1b\x0c;\x12\x08V}9=^=`mr\';G"?<<66J=[\x06\x14;\x19.!\x06\x14\x00\x1bLS";E2<\x1a=<~M\x18H/:̈h}p=\x17<2\x11剆p\tF\x0cY=2k><\x1d\x0bE\r<\x01=ΚO=\x06\x14\x001}=?\x02<,S\x07#kD>\x1e=I\to;üF>c_vP\x01V?=>\n<\x07<\x11\x16G\x12;JV<=\x1fQC\t%6ֽp̈<}\x06Ƽ\x0e\x13=\x03ת=9vn=09H\n\x1fӼ8Ɯ;d3\x06qN=y=Y\x01<\x10*݇=Aˏ\x02;=\x18\x04/<\x10J-Tš~zm<"u;.{<_vP<ջ\';v;6\x13`H:@:F<)*=^9"\x08\ta\\;\n/"\u05cc<\x15~D<\\$\x1b=;MѾ\\?\U000e45fcwƼ\x08\x07V"=\x15< ռxƻk伩\r=]1g\x04[=R"_;\x0b&Ϩ\x00B#\x1f9=ż\x0eD:C!=\t\x1a_<=iaG&#=ؑJѼ[oռy7c=\x05Wy.=:<\x1a\x04\x8f49z:<,`<Ԗ<\n䀞:\x19e\r\x7fgJ==\r=:i(\x14<\x05Cs\x1e~.ԗ=v6;mw,=5=Լmw,=\rT;/";$<\x05;pp<\x10!\x18\x02̅=XȻ\'輵pSȋȼtc="Ƽ\r\x14;\x10P\x00[9\x02=?C\x04<6=3do(\x13\x12;-HW=]R<Ǧ\x03qM0$\x0f5=l\x14[svd\t-\x7f>\x0c=F.3A\x08=\x19 =\x1b\x05\x0c<ջs\x1e\x19q{\t=y\'\x11dF=\x01aL<\t<\x0ck=\x14;\t <"\x05=\x06R\x02t\x14<\x1f`ڀ\x01 9;mw,+z<|S\n3A<49|D\x140 =ռtj:C<^\x04;+<\x05<嚼Y;\x1a\x07S;F:ga7P=`d\x04N=\t\x1a_\r7\x13\x076Y+zE\'A<~\x103=\x10x;Ѽzh<@\'K<+EA;\x7fQ*=\tc<.=+=\'xG0;ҙ\x17L2\x0f\u0383Vaz\x16\x1eϼ\x04+9S,\x08=j\x0fZ\x00<(<1t\x03\x05u\x0c*;5\x1c\x078*\x11̻A\x03\x1e<1(ӻ\x1e?m\x08<\x17\x15`\x13*Wf\x010\'$Vjַ=::\'\x01*=\x1f\x11=\x08\x10/=[:; XX3\x18"\x12dN=hp"<\x15\x04XD;s\x0f=i\x14)$\x02ż\x0c\x19 X<\x08;{<ϔ\x16\x03\x05<\x1e\x02<-_\x1aַ\x0b;C.64=%9;:ĺ8T,V;f\x14W=RȮ\x04\x08=i\x1d:2i;ˋ;\x18\x08=JVồ8==\x08\u0378:\x05<ͺР=T\n<\x06<\x1e\x193\x00ˑ\r=\\\x15h<<<\x17;&\x16\x03;CɰF꼫¢<5.a,\x00S \x18\x0f\x7f:< üP\\\x05<ỼM<\x0e\x02=qꗛ;\x054=ȓf\x16\x03=\x19=]\x18\x02,<Ƽ=<\t<\x03\x19\x1e,!=\x01ƼF;\x1a65=d>=\'<Э\x08=Ј<\x17PӖ;\x00B\x065\x02:\x1d؏]5><51)=р<%=;(I\x7fPs:B+\r֞<\x1cW=hQ;;;\x7fu\x0fhc;;rԆ<}kK;B}: a\x13ܼ:\x10\x19=kn.dz\x1b\n\\$<,Nʟ<(!4\x16\x0cx;\x11<<\te<ς:ʟ\x13\x1aQ\x07=m,\x0e\x11=9\'<~<\x1a@|\x17.ʽ_<\r\x03=h;E=x\x0f7]μ\x02ݛ:P<\x7foa<\x1e]>\x18\x1ep<\'l=QIɛ<.<;S9B:z\x1c<ɳǼa\x0fm];|]μ\x16=\x13b;<\\\x03=I=\x1bUus\n\x13z\x18<5紺|\u058b<\x97cO\x13PFPv\x11q0\x0f(q|!7=@pT:F<\x0fi\x1aa\x08\x07;S:<9Y\x1aGK)=\t=h9\x08=̈\x08\x0f:A=<09༞\x16\x1e \x1f<\x075-d\x19\x02\x1b\r҂6=(JK\x14<˩<.=%o;5r%\x0fi=})\nX\x04=XkY<\\xXp\x11=u{\x15=d<μ4Dg\x1eIv=hI<<ؗ9:$hP;\x13=\x159/=2%\x12m:\x18\x1f<\x1fL\x06$=eEq<"ǻQ\x87\x06Q\x1ez=\x1egd,=46\x1a<\\-yϼOĻqY=n\x1f#=;\x06Xy=\x0b\x1c=D8.<;`/\x0b=dW\r=2"=ׯׯTC=mIƓ曥B:\x1c.W`\x04=\x01:<]AK\x0b\x17(OQ\n=);֑C\'0t\x01=}<\x03c<.Q<\x11W4g\x1aFI<\x04.QҼB\x1f]<\x17<\txOTJ=i%\x13\t,HFL:V-\x18\x02\x17>\x17=f=0!e\x1d=V-\x18=+#A.=\x08qARj% ҼU(\uf04d#E,< <,HFG\x17\x1a8ZxC8\x01bX2K<)\x14<8I;j{<9:<1\x08d;\x03m,=f\x19<\x1ce*;E=~xX2E\x06=[_<\x0fZ\rP\x1f]&z<%\x06+<Ճ_\x00*0=x\x15ܶb/Q<*\x18:qc<:\x15\x08\x00\x01Q\x12>$q=J"-=M%"\\jW\x14U;\x00Rs%<_Z<;\x1a\x12=h\x10(<\x0b\x00K\x15={l\x00=HɻlEs-g<*k;\x03=\x17ܼ\x7fk7\x17\x04\x08v\x03\x1cvz좼t\x1aB\x1b=Ͼ,\x04\x01;ƶokOcB=&?o=?]\x0e\x17=<\nǼ6]\x1fw=\x10\x1eGB\x1b=S>\x1c:F<\x18\x05·P\x11y\x1dbX2QԎN', 'text': 'Citizens of this community commit to reflect upon and uphold these principles in all academic and nonacademic endeavors, and to protect and promote a culture of integrity.\n\nTo uphold the Duke Community Standard:\n\n- I will not lie, cheat, or steal in my academic endeavors;\n- I will conduct myself honorably in all my endeavors; and\n- I will act if the Standard is compromised.\n\nIt is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe Reaffirmation\n\nUpon completion of each academic assignment, students may be expected to reaffirm the above commitment by signing this statement:\n\n“I have adhered to the Duke Community Standard in completing this assignment.”\n\n[Student Signature]\n\nDefinitions\n\nLying, Cheating (including plagiarism), Stealing. Definitions for these terms used in the Duke Community Standard appear at https://studentaffairs.duke.edu/conduct/z-policies/academic-dishonesty-0\n\nApplication of the Community Standard to the Master of Engineering Management Program\n\nThe Duke Community Standard encompasses both academic and nonacademic endeavors. The first part of the pledge focuses on academic endeavors and includes assignments (any work, required or volunteered, submitted for review and/or academic credit) and actions that are taken to complete assignments. It also includes activities associated with a student’s job search since the definition of lying includes “communicating untruths in order to gain an unfair academic or employment advantage.” Some of the aspects of academic endeavors as they apply to master of engineering management students are:\n\n- Group and Individual Work. Please note that in many classes there will be both group work and individual work. Students should be sure they are clear about what level of consultation or collaboration with others is allowed.\n- Studying from old exams, assignments and case studies. Many courses have case studies, exercises, or problems that have been used previously. Students should not use prior semesters’ work to prepare for an exam or assignment unless allowed by the instructor.\n- MEM Program suite, computer laboratory, library, meeting rooms, and other shared resources. There are numerous shared resources that are available to support a student’s studies. Use these so that they will remain in good shape and equally accessible for others.\n- Career Service Resources. Use these so that they will remain equally accessible for others and so that the MEM Program will remain in good standing with Career Services. Abide by Career Center policies found at https://studentaffairs.duke.edu/career/about-us/policies.\n- Implicit Reaffirmation. Some instructors may not require students to include the reaffirmation on every assignment. If the instructor does not require students to write the reaffirmation (“I have adhered to the Duke Community Standard in completing this assignment”) or it is omitted from the assignment, it is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe second part of the Duke Community Standard extends its reach to nonacademic activities undertaken while enrolled as a MEM student. Students are expected to observe:\n\n- all local, state, and federal laws and\n- to abide by Duke policies including university policies on discrimination, harassment (including sexual violence and other forms of sexual misconduct), domestic violence, dating violence, and stalking. Details for these may be found at\n- https://oie.duke.edu/knowledge-base/policies-statements-and-procedures and\n- https://studentaffairs.duke.edu/conduct/z-policies/student-sexual-misconduct-policy-dukes-commitment-title-ix.\n\nJurisdiction\n\n- The MEM Program may respond to any complaint of behavior that occurred within a student’s involvement in the MEM Program, from application to graduation. However, complaints of discrimination, harassment (including sexual harassment which, in turn, includes sexual violence and other forms of sexual misconduct), domestic violence, and stalking will be addressed under the Student Sexual Misconduct Policy (for misconduct by students) or the Policy on Prohibited Discrimination, Harassment, and Related Misconduct (for misconduct by employees or others).\n- Any MEM student is subject to disciplinary action. This includes students who have matriculated to, are currently enrolled in, are on leave from, or have been readmitted (following a dismissal) to programs of the university.\n- With the agreement of the vice president for student affairs and the dean of the Pratt School of Engineering, jurisdiction may be extended to a student who has graduated and is alleged to have committed a violation during his/her MEM career.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c58cedc7-cea5-41b6-bc3b-3a771c4f86d6', 'payload': None, 'score': 89.22829267208752, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '347133', 'document_id': '7979214c-3a83-4371-9c7d-5b3a396437e0', '_node_content': '{"id_": "c58cedc7-cea5-41b6-bc3b-3a771c4f86d6", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7979214c-3a83-4371-9c7d-5b3a396437e0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "68b037e71e4a1ff245a8b811d8fd9bb3d143078a8f45b0130a1cf34eb9ef7896", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf2b9747-ad6a-4006-8d4d-1c44a2e498fd", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "78102f4238ea0c0199c9d290540cf6c0b09dde573d8c3c651955aba49ea65d6d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0d0262fd-5f63-4d3c-a40b-85f68f5e806d", "node_type": "1", "metadata": {}, "hash": "fc841255189697ca2eb6dedd5ea92f4eeb4dbf26140e34f28f8a094c39bc5b37", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5572, "end_char_idx": 10685, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html', 'vector': '/*ܼ9Oڼ\x07.5̧\x04\x15̻\x7fF\x05Ǽhp<."<\x03\x18\x1f=~\x19=Ѕ-\x11i\rERL;St\x1a;+;v{ٻQHżf\x14;<\x1c\u07fc\x0cX7uּǿ<^\t!/b\u05f9jIe=#<3\x04Y<\x1d\x11<\x19\x1c;|͢<\x15!\x07\n߰<%~<\n)-=:\x19^<2W=3\x15=<\'3;{<ǿB<+\x00=\x06M\x1er\u07ba\x13\x05\x0c=b\x0c컗༁}<\r~]uY<9O<8\x06M\x0c\x16;0=rv\ue37d8w̧=QHE;uZ\x15=\x1a=|\x19nh&鼾\x11%;J<\x06Y,/<\x175ƻc=l\x04;\x11\x1e\x10\x00ڼ;\x01e̼cQ- Ʒ.<;g;U;˂Hηn=D`\n=>l2\x01<ܼ\x17/yV1㴽*\x1e˻{ϼ]<\x02Ի\x18=$ \x14c=pΊ%ͼw=%T=R\x0f<:2x-\x16\x163<\x06\x0fӻ\t|a,\x0c4\x04$v{O\x1e\\\x06A\x1aWk;;\x13;u=\x18[;߀\x03\x12鎈3HK;3H<-.;=+v-"N\x1c\x16-M=4\x0b=}\x1e=Ӽ>>܀ѼH\x0fLqD_\x15=9\nm\x11cޢ))9=+a=#<2H<٭\u07fc=\x0ba<>q =?X<\x04%\x06\x0fY\x1c(=2\x0c@&&\x0f<&l,H=\x02<\\B\x07r=Ы;yN<\x14om<\n5ƞ87.=D_!\x15n<2\x04)n(=\x1e\U000fc5e5;:`G{;4`\u07fb\x1b:\x1f=cw4&\r<>$\x00\x01\x14\x102a<.ة]-0"=\x1b<\x16ӵ0R<\x00\x0f;,Z!;Kٮw>=zkdjG<{\x08y:\x0f\x02N<\x02>.=x=*\x02<\x03=\x0fܼ="\x1b<0ǿ<\x14\x0c<\x1fnG;l5Y\x05\x1b4;\x17a\'^ڼg;l\x12\x13\x03=+t=J<6껝<\n\x0b=\x02/:\n\x17:} мc(/OT<\x02!=?䗽;N=ᕼ} )ȼ4\x19=ټ\x07;\x08ռ:^\x06v\x11jŞ&mg2;LoXu\x17\x18><]=\x7fS\x10g<\x01o=V$^-\x18m\'X;꼼K=\tbݼ뽘<\x13rZf:=!_; ;v<:|3!<|,\x07qi,\x03\x1cPLjŞh*^\x19<\x1ap(P<\rټ\x06vmuM9b<ּi9V<\t\x13=AЇ\x04f<\x18\x7f=|I\x07\x7fJ(;Y\x15=)\x12\x10<\x17\x1e\x13];\x15\rO$=w\x08\nMl\x17<\\gz;)=<+\nɰĻkEY\x04\x19<+\n!\x0f;\x1d\x02<[\x08;\x0c0\x7fD\x7f<ڄZXY<<\x08p<\x0f\x15\x0eRM<\x1e]\x1c"Br;<\x12=\x0fʀ>3I<ڿ;,=R=~<\x03$;D;\x00<\x100+==\x0faG\x17伆u¼\tBҍ\x14=r8=$ў<\x0b:<\x18\x01Ñ=G\\\x025M<\x02!19;LrP\'ɼ\x124^;\x00;<|\x16迼߾;XD\x07\x0b:\x1e\x1dW\x11켺I\x1d.8^G1X\x01\x13N;$鼦f\x13\tͻ\x14)=\x98,R\n=$/;:+3:raB\x04=ԝ\x12iO&4\rQ= A^킺V<\x1d=\x1eԼ\u05ec\x11;{)f=cӺ7i;H<ټ.\\p<+6=^\x02=2/R&Z\x0e=<^\x02I<\x18G;\x18мo2PL:T\x10z?\x18=B\x1b<墓r=\'g\x1a=\x1dD=H\x19<[C\x10=;\x1c;\x0c^\x155l\x04=\x0b=W\x17:\x1d=9\x07\x080T>^=M<ˣ[S#\x1b =\x0f;*~=˟<\x1f\x05KټVz\t\x02=&t<ֵ\x1d=\x17N\x1e_b"z<\x05Y0<^,b\x1e=Р\\<\x10\x00E@Q^\x17nD\x0eE=\x1f٦㻘՝til#Qjy\u07bc\x06\x04=6E\x0e=MZ;u\x16\x1f\t%&ti<%\x0fz;Р<`\x02켊ߛ<\x13\x1a_]\x1dQ?\x05y<;N;\'\x12:s!<\x19WVw<<)n<\x0b͏\';3<;\\~\x18?<3\x0f<\x0b\t$k\t=@\x16\x1f=;¼F/\x0bp\x11:}z~\x11:QFT;c\x0f\x0b`;ψ=5-G<%=tf\x0fq99\x1a=\x00\x18=.=o2;mh,b\x1e\x1dļDZu=<\x1eO\x02\x1c%\x1dw\x13=Tc+jJ<(;\x1cE<\x06<\x0baBaK}j;p;x\x07UriTc+=}j<\x1b<|:ot<\x1cE:\x02<ʛ\x06̸\x10=\x07<\\<\n=Z\t\x0c\x1br7<:\x02=}\x1f=\x0fq<\x06(ý\x0b<Ԅ\x0cr=>c\x00;=Ȼ\x14}Ȼ.8\x00\x18\x03\x0c2>Z=S\x16#\x19\x16}<=E~\x0f댹.9j\x18=Ӹ\x1d<\x0eB=Y< #Ӹ<\x04#\x00UFƎ\u177c:d%;\x1a42\x0b==H=\r\x0by;4\x0e21&;\x0fּ.8\x00;\x11=q<,P3;戼\x1a=<\\<\x12l\\\x00$<\x04C\x11=:\x1bS i<#l=<}QL<]\x08\u07bb}<#\x00>銼|\x15=PC\x15\n3=/u=%0ռhu\x1a\\;#=8r7=\x0fq;A=\x17g\x17A:q\x00L\x13=W=H\x05n\x1f;:O<]\x08^;|\x15ؼ.8<>\x16\x07\x13fh3\x06\n9;f\x13\x15I<2<,;\x02<5y<\x05\x01<٤h=\x1f="0bJX\x012F\x03cO=sp<(\x1d7;\x02:.9@_0\x1eܐ<\x0f\x1a*=\x0fc\x01\x02z\x1e\x106w:\x1f>ؼn9', 'text': 'ISBN:\n\n 9781501384516 \n\n\n OCLC Number:\n\n 1346848149\n\n\n\n Other Identifiers:\n\n British national bibliography: GBC392749\n\n\n\n System ID:\n\n 011128061\n\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781501384516%2FLC.JPG&oclc=1346848149)](#)\n[Request](https://requests.library.duke.edu/item/011128061)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011128061/email)\n [Text](/catalog/DUKE011128061/sms)\n [Cite](/catalog/DUKE011128061/citation)\n [RIS File](/catalog/DUKE011128061.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011128061.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=The%20life%2C%20death%2C%20and%20afterlife%20of%20the%20record%20store%20%3A%20a%20global%20history&AUTHOR=Arnold%2C%20Gina&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011128061/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:890c6570-6673-47e2-9be0-a600326ba173', 'payload': None, 'score': 5.111859860107163, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '38469', 'document_id': 'ba7bdaee-f963-4ba1-81ee-2a4f57b775b6', '_node_content': '{"id_": "890c6570-6673-47e2-9be0-a600326ba173", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ba7bdaee-f963-4ba1-81ee-2a4f57b775b6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "1f9b49d4285484e8934880d49cc42d7a6600621aa3afa4211b77d365d847f36e", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ed1aaa9b-70e3-4333-a5ed-96f1e4fd0f61", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "ef51b4ceb583db01efb1e601a177c1635b3e9bd0f230bb5a6e3fae3dfc313a65", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fcbb370c-5342-41a3-8a91-1fd3adc0c84d", "node_type": "1", "metadata": {}, "hash": "f915634a970194ba2ed43ce6224005c536e896c2bb6c40c8797015bb4f43eede", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7061, "end_char_idx": 10572, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html', 'vector': '\x03\x18_;]E\x0b\x7fh<\x02s+\\So<\x02\x1d\x19ռ\\\x0b\x1d<\x19ԇ=XQf\x0c&;9P<`\x11=;Լۙ\x03<+<[4ۼM\x0b\r9\x1cV\x0cɺ\x04#C;\x18\'z#;q\x03M\x0b\x1b<<>л"\r=]κڽ!;fk\x1c.UN#^A\x06<,=h<孃\x12\n<=:r=\\\x1e<`\x11=:@萶T<%\rcJ~\x19\t=n=0:\x04>P5\x005/<;;\x16]/H\x02;\x0cI=ľ_O\x16=.2<\x05\u07bc;\u07fc?üi\x07p=:\x0e\x08<"+;\rEwH=l\x174\x1fvO,ë=7\x1aȼ\x02Oa^ӻ\\r\u05fc5=m6\x0c=~\x17Pټ覼&ʼPv\x04=!\x03=|kD.=R@<\x02)<\x02s+=Qi<ڹ\x1bQ<~ȵ\x0b\x077\rTw8\'=\x1fWQ=p\x102A=>;tF;_\x14\x03\x1a.Ӧ\x03ݼ\x12\'ּ$(=\x05;까==\x03=<@g;dD=t⨼*<Ϡ\x1bj\\?\x17%;\\?&W\x14850ϼ7h=\x19+"t:\x12áG<@5݆X=@\x109b;;\x18=9OּM9#f%6D=^5H^<4=Jk\x1am鴼\x7f\x1eC"-\x16\x00Qq\x16=\x025¼W<"\x0f[~=ܠl\x17̏\x17;:Ո;N\r\x0b-z<\x05It⨼捸G\x1e=/=\x0c\x0b\x7fX\x11\x11\x056=(R>= 4ozތs!\x0f\x1ev<\x142R<;>\\?#<6\x14\x1d4oj=\x00<\x1d滒9^\x0c+<<:\x07"=:$q\x02\x065\x1a\x04\x1dJavĤ\x13s\\6ăq\x02<\\O@V\'Q=;\x10%=p\x06;\x1d\x07ܠ;@T=\x1a<ŏ{<\x11fz=r\u05ec̰/<\x1e^B<<8\x0f=f\x1a\x16|r<{Ƽ\x1a\t&\x0c\n)=F\x06;gcp4<\x07e%M\x1c=\x10.\x0e\x1f93\x17=Ĥ=8`[\te\x17=Y\x1fշ\x0feV \x00\x02=+*9tFݼӟ\t\th(C̺8w\x0c[\n"Ϯ!u\x1e', 'text': 'System ID:\n\n 011279812\n\n\n\n\n\nFind related items\n------------------\n\n\n\n\n Series:\n\n [Contemporary studies in idealism.](https://find.library.duke.edu/?q=%22Contemporary+studies+in+idealism.%22&search_field=work_entry)\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781666947427%2FLC.JPG&oclc=1406744966)](#)\n[Request](https://requests.library.duke.edu/item/011279812)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011279812/email)\n [Text](/catalog/DUKE011279812/sms)\n [Cite](/catalog/DUKE011279812/citation)\n [RIS File](/catalog/DUKE011279812.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011279812.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=Kant%20in%20context%20%3A%20the%20historical%20primacy%20of%20the%20transcendental%20dialectic&AUTHOR=Kelly%2C%20Daniel%20Patrick&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n* [Find related items](#related-works)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011279812/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{20008 total, docs: [Document {'id': 'test_doc:1b337161-c7dc-4187-8ccf-3216e1888323', 'payload': None, 'score': 24.949260150649714, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '611475', 'document_id': '83133584-69fb-4093-81b0-4d216b1fdb99', '_node_content': '{"id_": "1b337161-c7dc-4187-8ccf-3216e1888323", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 611475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "83133584-69fb-4093-81b0-4d216b1fdb99", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 611475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html"}, "hash": "6264135d87641ed5a731ba76da73217eb838a32f4c01f1377695b6dbca03b72c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "179d8009-ba26-4fad-9e43-77d59c18092b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 611475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html"}, "hash": "3d598837f30165723eebde6b1cb97e0ed2bd175e3457462917d16389a2a59d59", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "24f686ec-c411-4034-a05e-bb401fcca399", "node_type": "1", "metadata": {}, "hash": "7298c2291e23705fb8b67fbbdcd046d9fe6f0bd606187828dad357bb235679d3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1192, "end_char_idx": 4820, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html', 'vector': 'FV73<{a8R+\x14ڼ5:^i$"NQh;gq\x15<;2;\x1b_=4n탪;X/\x086\x1d4\U00082f08y<[\r:ŀ\'\ue17dʢ ļuh2<ě;e\x1e){W\x16w;){\u05fc<*!|\x1c^Bɼٺ\x15<8;#b.\\\x0b~M\x0fڼ.<\x18\x17MU\x06=o<<==P9\x16w{ag=҇;`\'\\=%to\x14~$<ðB={\x15b<\x1aʿ:j<\x08\nKi;H=)&=G\x10UN<\x07B=E\x03H:b\x05\x161ֻ\x1fu<U;\x0fr;נ?>q \n\x19\x06<\x18T<\x12\x1f=r\x06=\\\n\x0e\ue188N̼RƼ5J<\x0e0̟\x06\x00K=$x&\x00\x19%\t:^\x17=\x1d숻\';༏6;A\x15a\x1f<<~<\x1f<0_e>\x0fs7T;\x1b(U\u07fcR˄\r9<=aҬ<\x17\x13\x04ς[i\x02YG\x11yA=\x0b̉f5=s"\x1c<7<Lj\x12y輙5v_8o6e;gP\x07\x18s7(=Ҭ;\x07.ٹ<\x0c\x1c<\x1b(h=6\x0b\x04p:\u07fb\x1c>=F=6\x0ba^;B8<-Sog<>$K>\x1d`(:4\na;\x1f=$x\x14*6M=\x0c\x08XX;\x10ym\x18k=S\x04;\x14==\t\n<\x02L9\u07bcA\x155ʔSX \x19Y\x07,S469;\ta<4eJ#<^\x17\\мb!\x01ۻ|)=V8;\x0c\x08=ҀΠR<č<\x1cΠ<\x0foI\x1e=eF\x03\x02=Y̟*f|\x7fN=A\x15=1"#b\x0e=O<=oѽw\x11<<\x18(=\x08`L6ۼP^ּ7\x10Gp\x1d\x1bm<<֢<.G\x10d\x18=ɼ^⇼oѼMȺz۩;ź]D:]=\x00\x18;B;#\x10=N\'\x1a8\x19`_NV@=igoo;\x08<\x1e2<\x07\x13<5%:;.\x0bpD<\x0e_:\x12e5@6Y:\x04J=\x17gB\x01s\x19=bݍ\x1a,\x11J(;\n;WG<\x1f!\x0cr<=\x17\x11\x16\x0c%\x07\x14>w;5%\x1e5;ka\x19E\'m\x15.G;/26P{"=.\x0bp=M(Я\u05fc9=8\x12=><ͮe\x02=.h;\'uD(?=u<*\t?\x02=a|(o;QK\\<\x13`3ļ:l+?\n:\x16\x14<3:ɖ\t켏H=r\x19`=y;j\x0fD\x04,1\x19J\x1c\x11<;պ\'\x08<}u<%\x0c%L+Jpx?={H<\x02W<5:\x15ּx\x0cW\x13=摽V\nʺ=~ %T&=k\x1a\x1d;\x1a;:ē^=?P93\x15<@\x07mfZ:OػCw\x15ݲ<>-έ r7Y;PI^\x05\x10<5<(ȉ;:̡_\x1d=\x04\n=@1ż\x1eQdT<\x15%=D<\x1cU\x19=\x18T\x01;cg=\x10tA\x10&\nH.:Bk;w;\x0f<&\x13~\x0eX\x1e\x02=v=>m3Qoϓ\\\t<{l\\T=¼ r7g=\x01>A|1C\x133V|]Z=v=>)Ye+<\x1et<`\x05\r<~\x10=l\x17\x01<6jbu<証\x010\x19N<`P\x04=@T\';[AR\x1ca6\x17\u05fc2<:Uy;(|<\x18Z<+oqJ1\x1a\x16\x1ch^B+ZH<<,<5V=\x07+9j<;\x1e:d\x10>ɏ;\x02[=Ӈ<\x1eoɦ;V\x0f.X\x1eh?=\x1fJ\x12/=\r;;`<,M\x00;1\x1e7\x07^10<\n\x7fTIv=\x18Y\x16\x18;W0^=\x1c\x19<\x13\x0f<$\x0bZ\x00\n<.<6z<_<=\x0cW<9\x0eQ=n\x19<\x1c1=+_<0=o=\x0c\x00a{:{:k\x03"ȵԼw{b\x1e=\x1eʼ\x19>90\'2<,UY<ƸzJ@\x19m\x15=aC\rRϼh\x0bւ\x17=<\x05=\x19LF\x17#<3=B\x1e{\x06Kʌ=c=\x08=$\x1b06\x01=\x08F\x16r\x0e\x1a|=I\x19<;#\x08-]%\x0374\x04\x1b;(cM8=\x08=#t\x1f\x12k<\x0f\n\x06v8\x18X<-(2\x02̈<6;dv<2TI<2==\x10)༃r\x0e.8\x0c〼\x1e=Queᖻ\x08\x17컅\x14==\x03\n-֞@C\x0fqI<ҠNL\x07=\x7f%:nмAcM6<7Յ\x01Qʧx)ެ\x1b=\':\x11\x1f=Y[k\x06{.v;:%Э;$t\x07\x1c=F*z\x0e\t8\x1d\x18\x19<~><\x1e\n;{\x1dڼ|M0+<=R<-7<\x03=.\x05\r=R\x0e\rR<=\x03\x01߿\x16R=A<\t$P:_=\x15\x16=l\x1dY-<\x01Q)+%=šrٻߦ+G\x08=J\r\x1c;dZ;\x008̡<[\x7fy;X\x1dF\x0cFq\x04\x15\x07;0)\x1b|\x19\x13;V4=\t\x029z<;"; <ސ<6l\x1dKOO.\u05fcT\x06\x0e\u07fc\x01Q\\ؠ<\x16i=\x1eu=\x17FE=၀Msr5<\x08u\x1f=\x04\x01U<\x1b*<Ɏ\x0f=fT\'=<[\x0b\x17ӂƼZgԼq\x0e=";P:=ǺxR?:N3\x01=Ӽ&V@\x03Q:Düt<~ӂƼE\x16=J.i;<(\x00<\x16\x14<< 0<۹<:È;ӱ.;\x00ms\n=~g\x04<;N!s<ĉ|;Y\x16j`\x1e;^<\x111=7\x05M\'<.<,\x10DO<', 'text': 'Professor Kisha N. Daniels (Dr. D) was the instructor of both EDUC 101 Foundations of Education and EDUC 204 Educational Psychology, the two courses I took in the 2020 fall and 2021 spring semesters. She adopted a strategy called flipped classrooms (Nechkina, 1984), which is a type of blended learning (Friesen, 2012) requiring students to complete the readings and learn contents before class, and have discussions instead of listening to lectures during class time. Before each class, students needed to watch Dr. D’s pre-recorded lecture videos and read materials to have an overview of the class content. Then we filled in a note-taking guide to reflect on what we had learned. Finally, we attended the class to have in-class discussions, group activities, etc.\n\n\nAs a math major student, I was used to listening to lectures without speaking a single word for a whole semester. I had even thought about dropping this class after I read the syllabus! However, Dr. D’s class opened a whole new world for me. Since then, in every class, I would excitedly click the “raise my hand” button in Zoom—I could not wait to share my ideas in the heated conversation.\n\n\n**Optional Attendance to Synchronous Classes**\n----------------------------------------------\n\n\n2020 was a year of chaos. Coronavirus and the international travel ban are distributed to students all around the world. It brought many uncertainties to our lives: unreliable internet access, different time zones, infectious outbreaks, etc. The school year taking place at the same time was obviously not easy at all. To ensure class quality, some instructors took mandatory attendance for those who were able to join the synchronous sessions. However, Dr. D was an exception: she made her synchronous classes optional, even though it was discussion- and activity-based. I was wondering why she did not make it mandatory, how she provided a relatively equivalent learning experience for those who couldn’t join lively, and why almost all the students still came to the synchronous classes.\n\n\nDr. D believes having a certain level of flexibility as a professor is always difficult, but educators should still manage to do so since it is not the reality to control everything in education. Students are adult learners and should be treated as individuals. They might have different learning preferences and face different situations. Giving them flexibility can be a form of warm support through hard times. For each assignment, Dr. D prepared two versions (synchronous and asynchronous) with detailed instructions: if you can come to the class, then you can work in a group to do the assignment; if you cannot, then finish these sections of the assignment as equivalency. By doing this, every student was fully supported.\n\n\nAlthough Dr. D’s synchronous class was optional, it achieved a relatively high attendance rate. To tackle the low attendance rate problem, Dr. D invited students to relate their own background knowledge to the course concepts. If some students did not come to class, they may not have a chance to realize how educational psychology relates to their everyday life, and what their peers’ educational experiences are like. Once students agree that class is the place where they can learn more, it will become their motivation to attend class. “Students are adults, even my freshman students. They are starting to figure out who they are in the adult world.” She, therefore, lets the students decide what is the best study strategy for them.\n\n\n\n> This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9aefe5bf-1e1f-4b31-ae11-5874c5393dbd', 'payload': None, 'score': 11.807439363540126, 'document_id': 'index.html', '_node_content': '{"id_": "9aefe5bf-1e1f-4b31-ae11-5874c5393dbd", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/lile.duke.edu/blog/2021/12/flexibility-adult-learners", "filename": "index.html", "filetype": "text/html"}, "hash": "c12bb19afe9091cf6fafa09e70f8b388092e96d62da508203161dace2cb3af57", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a427db5-ac02-4ad5-96b7-8dae766073a9", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "da61cf9bbb421fc985a175359a38bfee69742fb1d22c5e91ab9fc51a580553c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28a6432f-f95e-4e16-97a2-bc96b30e43f2", "node_type": "1", "metadata": {}, "hash": "734cbde4b860d7eb88633b64f3ce5635c61c46f1eee2dd8fb3ea547d481396b2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '@..\x1a!>\x02L)=<¼LR9"-=f2\n\x1f8;I\x13\x06̼\x19E;ǁB=^\\"Ⱥ)=)@缚RV\x1bJ܋g\x1f\x18e\\s=|\x0e<\x12\x19k 0h;o\x06\x08=^`:62<\x0eM\'=<\x0b\x1b_=59?/\x05\x1f[=I\x04\x7f<\x0b\x0e[;\r Qp=\x1e_+DySz\x14:D4;e:<\x15uN=={;\x1eF!8<{\x15\x03J\x19\x0b\x1c;\x12=!<+DP̥,\x10.\u07bc+-<1\x15=\x00k<\x01=\u05ce6-\x11֚ȼ0\r`;nB;\x1e\x19<Ѝ;]<*\t;\x1d*|$;^\x14SGJB)_\x05\'\x14\x03X8\x1c%=eX=\x13<{z=%W39L\'߷{:IC2=E(<\x1cAVR\x7f\x01KR\x02\'\x12<\x0cI>\x00\x19R<<^<@Pg#=C \x08=ߟ<.<һ`d#\x16<\r<-s\x0fϼ =\x14fڙ;\tB4<\x08 This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000\\).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:8164a0d1-1226-4de6-8d7a-39699df9bbb1', 'payload': None, 'score': 7.2496097371351755, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2826244', 'document_id': 'bfe60902-d299-44d5-af13-f68c06604fef', '_node_content': '{"id_": "8164a0d1-1226-4de6-8d7a-39699df9bbb1", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfe60902-d299-44d5-af13-f68c06604fef", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "4423c15f0262081da99b5983d0c0d4888dd19d09a77408a79310122494d98daf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1101e903-21fb-4f1a-a913-cd4d0db09034", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "a0ce698216bb12351e6c53c1f0a2e4b69df29c33d5af55c6ee316510f7e616c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc4f1340-3c4f-489a-ad6f-ff61fc6ae5bb", "node_type": "1", "metadata": {}, "hash": "f086c88c19abfef10f0e7100cf75308dc71e1c1a8b0f65ac1fe88aa3b3693b3a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3197, "end_char_idx": 6819, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf', 'vector': '\x10\x1br\t\u07bc\n}\x19\x02JG<;JT}\'j\x16q<\x0c\x0f\x03!:ʊ\x0f\rnQD;?#M;O,<ⶊ<\x16q1<\x1e\r軛ٲ8-}Իg\x0e=\x080?#M\x17M4\x0c:Z{\x13<\x1e+!5(r>*x~=J<姻J:SVkB\x0c:=\x1d\t;\x00<\x04\x12s\tB1j=s\x195f=ӻ-<1GŒ:[.\x0cb =$k\x0bJ<\r=姼\x1b\x08<\x04)\x05\x06=IWD\x00=˼\x17o\x06+=Ą=\x0e/\x0bl,<_\x0b<\x07<{\x0f;Ym?l:=dp@<{<\tZ̼\x12\x0c\x03=\x1a\x01"=]\x0c:;\x05=ޓ\tf/y\'=\x1aָ݅\x17\'<\x1be<\u0602;A\x0b*a<ɳ<>\n\x15\x7f줼~+\x0c:R]=\x14\u07fc\x0b\\<ʽ\x07;k\x111G\x1f\x104jOn;ej0A=F];\x00\x1e;\x080"6V\rr4\x1ad\x05u/<+8;\\\n6=r q<ȝ\x12=\x15\x0e\'#=A\x1dⶊtlлS!m=\x1bU<2\x14=`\x1b8»\x1c⻨ӌ],\x13,&r>*"L<\t\x10d|\x0c:$:\x07<8T\x00\x05=\nL=lv;ќ\x12\x0c&)\x01oxE\x10g\x01D\x18\n:4Q컼c;\u0bfcч&ثF<⠼ּ\x0eO=ܯ;FV=\\<\x03I㼋7\'ٕ};\x7f 7=\x1b=\x02<\t༜뻘NmB\n\x13㣼fһ;TW5=\x02;0\x1fD;뼮<$;\x1d =>"=/"==\x7f\x19\x1fʼݎ廬C꼈\x1fLoU/:#t\x1f{=(#=-<܋;+E>;\\G\'x\x17\x13kΊ\x027s5T=\x1eV\x0e@\x7f 7IϼxI/ͼ;\x0f=[<-<\x06\\+<\'g;k6<3\ue63b\x13=u=\x18)b\U000bb508B>"=\t=\x1cwC=#\n;nop\x05;%=I\x1e=8Ƹ~vw\\Uȼb@z6Ja\x0fq1:țJ=,~\x7fȼ3㊻\uf7bb\x15;=`\x04\x06<\x02\x00E< “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom \\[when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs \\-animals – photosynthesize, so it is eye\\-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step\\-by\\-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:3813364d-5d0b-43b2-8b98-89f90953c7b8', 'payload': None, 'score': 7.140919556971079, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67846', 'document_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', '_node_content': '{"id_": "3813364d-5d0b-43b2-8b98-89f90953c7b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c67a53bb-8127-4a54-8b71-e1b38caa9ff1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "19d045065fa9deb404ca09df5d278e17246849ecf0ad229013a4f1b8ebdf6baa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44dee6a0-7eb8-4a9f-96db-c955c8a4af03", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "d32b9c44375b348bc666ef0aec15d9716110288a771b9adacf9715e299e14eb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "db799e37-46c6-4470-b828-20f113c1c7e1", "node_type": "1", "metadata": {}, "hash": "95ca862141792c058376d879a3bf777f6a55c3680aed266ff9ed2bdabe4d79eb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3981, "end_char_idx": 8579, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', 'vector': 't4-N\x19\x16\x04\x06%3\x0b;)R;Xv\x12@:\x1aXv4!&m\x08<(0j=\x0cr뺚\x00 \r9:\x03R=y௺\x00F\x1e<\x1a;;\x16\x02:->=ۜ<6\x11=VI,aK)Aнx<;)<;<\x1a,=\x08|WA<~y/=DI9\x04+L\\}=W\x1b<]üt\rxtR<\x1c\x17+< \x10\x1bP=<\x17\x12z\x0e<(0j:L\x03EZFe\x10h;WTb=Y<\x1e\x0c=\x17,;\x16%<<\x11\x1e8\n\x0c+\x12;\x16%<\x0e\x1d<^Y\x04<<]\x1aj<<;twϻ`?\x07p=JӍ;&\\"y;IwF7"\tgIw<\x1bw@\x1dP\x15E\x08! “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom [when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs -animals – photosynthesize, so it is eye-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step-by-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{10899 total, docs: [Document {'id': 'test_doc:97abcd5a-3c40-4ab1-a98d-a5105ee35648', 'payload': None, 'score': 399.81140087234496, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3957701', 'document_id': 'a42439cc-cd28-4b40-9c15-1a45e252eefa', '_node_content': '{"id_": "97abcd5a-3c40-4ab1-a98d-a5105ee35648", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a42439cc-cd28-4b40-9c15-1a45e252eefa", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "hash": "8de2ecfe8060cb832fc6a20f3d9e7e0e927fa0640e1b10cb5bc70def4616756b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3886, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/ug_bulletin_2023-24.pdf', 'vector': '\t-s+\r<$\x1b;\x02:!/5o\x12,<\x12<8;\x0b\x0b\x14\x06{/:x[vf TSqywJU$D/;ZQ6R\x0b=@\x0f=\'ގ\x1c+Bv<;<\x0b\\(:\t|~9ZѼ}:G=jMg:Wz"a\x0b\x14\x02Pr!=紋<\x0c\\=s2\x0e7d<+U\x10=\x1a\x02jռ\x16t<Հ\x12,<\x12Lnq;\x06*Jxs\x13\x1b45C\x13M(;#\x00;\x19js:N\x12})\x0fFh<\'\x1bw\x03ɭ=k\x15v\'Ӟ<\x03)N;_"=QW\'\x06=z;\x16<2U=\x1cй=3ꁼse<$<+}]c(=\x1dYN\x05p\x1df.\x01p\x1c=\x0b\x14=vM:q;ӞT\x18N\x12=;X34\x1b<1=\x1f\'i=\x07;+D6=2o+q`\x15K<˼Actg;;Cx<\x1f<\'\x06$\x1b\x12G˼\x03$\x04T\x16^g<\x15W\'\x01\x0b\x05V8q<\x17\x18dAGCH;>%!һ*)\x14\x08=\x10k\x07ϼゎ<\x07\x1c"Ҟ<\x1eT<+wo\x03nE\x03/\x0c ;ƈ>LL=\x14L=\x1f<\x0em!=\'i=TM<0P\x18B\u05fc\x15\x06ŖR\x1ev<@A#<\x161F\x1d;\x0em<\x01ϐ`J\x0c=(\x1ba!*\x17=\x05t96}$=ඥŘ=\\=\x1d\x1a6CmTbY\x10j翻&ݼ\x07\x1cA\x0c1=F睼<<%<\x17?I=\x1eü~H;\x1e!2mCc\x18=fɷ<-2\x10\x10K1\x02\x173ӼrH<\x7f\x0634=e=4;(tNQ;6WQ}=u\x19(tNk٘\x17\x00=VDž<\x12><1\x10a̴\x1aU<{(1<\x14W<{<*\x7f,\x15=]S<\x11Z,%= ;\x0fiܰA#<$\x03=\x00N<.\x0f(\x16=<< ;=|ռd+=\x00J<"+\x10t;\x14QE;$>H<\\\x07\x04\x01\x0c9R\x1f;[<97=/Y<5A\x11̼s;z<|\x05\x1d\x07b\x03\x1d<<#=\x01\x1a=D{c\\\x17;Ji|\x16afИ{:\x169=\x12\x0cJ=vl<[C93\x0f\x127(=?\x01\x00=\x07\x1bni;\x12\x04d\x0b\x02<@\n<\x00g\x14\x06;\r;FA\x1a\'9Ҽ\x1fk;!=+N+Ua̴Jg\';T=Ứ7ͼU\x08o<[\x16<[;-坻}\x1f<\x00D$;DD=\r^<`弾\u03796T<;o,<\x02Q=d+\'\x11=7@0;(v@P=+U*=ۇ\\wi\x1fҺ97<}ŀ-\x1dr<\x1c?엂<6=?Fh\x1fC5^\x10K(1Z6<\x18;,٤K<\x1e|H)\x1c=\x14.3FCT<^\x02fD\n,=Ϊ<+\'<\x1d\x04uq<\x05?\t\x04=#\\<ؼݼBLIo\n\x16:\x11:=^<~v=67\x16\x0b=X=O\x01f>V\x01V~\x07.C\'=~t獼fk<\x17h<6J\x19=[|O\x11\x13<\x16;\x02?=%4D\x10\x11Ꚓ[3=C=Rr,r ּ|f\x134=\x17ъ<*䭻7;4)\x1b=4\u05fc\x04\x0fp"\x0e\x00<&b\'\x1b;\x12=-y?n\x05I9;ǺE<\x06L\x0e\x15g]ꓻ\x1eQ<\x14黳D=\'=\t\x16B=K\x12Vc+\'<-Do: ʼy9ɺ\x03u;ER\u0558\x0e;\x04t9=w\x1a\x00Xϼz;\x10oW(?n\x08G\x1bL<\x03<\r2=\x7f2\x07;ؼgTn\x15;\\\x0cF!=Y玻9\x15v仿w<\x0b;WcH1\rU\x191vݼm\x07Lk)T`\u07fc.xAt_,G<\x10=\x13\\p\x12a\x11ƿ\x1c\nQ@j<%p\'\x0bӼj\x01=\x0f0<\x031\x02\x0bºu\n1N:ZB\x185pEK(ǁ<%\rtRZb%=RwJB<ѫ<|\x19p<\x12<Ć}\x1e^ۿ\x0e=N;K\x08\x7f<`&<;<\x1c8\x07%nD\x1ac=bU;j\x14=Rc=;Z`Zh:yN3\x13<-MX <\x1d\x18I"\x16u\'J=U(\x01;\x1f=2\r==YغΟ[-:2\r;Cȣf\x02=N9%(<(\x076=I{\x7f%\x1f\x01ƹ<]λVe\x067;\x7fE\x08;\x1e\x08E\x03r\u05fc\x0f\x1c\n\x06=ƙ\x07ƻb\x0fX=3\x03<<\r\x05\t?\t<\x7f\t<5a=%\x17<\u0382;i<\x17\x0f=G.\x19W=x4=\t;\x01˯\x05\\wZ&\r\x00<8|\x08\x06\x02=0$v=(\x15cl\x02=ݻ\x02缫)\x1bR;+\n:B0}ƶ˼) \x10;\x12\x07W2Go;\x0fI<\x08Z<@eB<@1rp<\r:Ļ\\\x02(\x02(ۼ=\x1f&=UռH\x10vaՅGH<\x04hm<\x16<<;=\x00<\n8::\x0cÍr=q>=RwJu\x07!\x05<6\x00<ښL:϶<\n\u05f8\x07<\x04\x11";QE=;x\x07<<`"=\x0c,\x05<ؼ1U]\x00\x0b:Q^"W=|\x16S\r90e1N.ټ\x008<|ڂ<\x00=\n\x1e/p@;\x03zB_{v;\x19;s;Y\x01= Y\x11<\\!b<_\x1f<\x02\x0f1SyW*=!O<\x12ƻ`^FH\x18=U<\x12;q\x12.d="<]=?rM]<1^=Ko\x1e\x1e:\x12A!y?2\nY}<<]l\x0b<{*\x03=!<\x12;\x03\'l\r`d;孧.\x11mSd|]\x1e5\'\x1b=\x11\n<1\x03d=\x025\x01=\x125Ѽ^;mQ^R\x0f\x02\x1a.=]J \x06;"Z;}=^\nx=O]£<{vN).\x08\x11D\x15^;4N<姿]\x00\x05t\x00\x0e\rTƈ\x01\x04={\x1c;=\x12μug\x03,%J=p<}G\x03/n\r<0i!I={)]N?\x1a]<{ϙ=^1Y\\\x02\x03<\x02\x0f\x11\ue5fdǃ/_\n=d[l\x7fԼ\x08{ƽ<\x04<^<䳏<0_I|M|U=1;8{%=Ql\x12;|bxCf>"@u<{&\x13{\x05;D;l:Of\x11|OQ1\x07<{==׆s=/m\x110\x00=@R="<(?Jla\t\rl\x10<5;>\\?Ъ1{=\x024>0:\x12# ]<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l#<\';O_*60dl9]\x18=*\t< !b{-<"=\x16fs\x06<.\x12T<(}e<\x13Pg\x02?p\x12\x07(<\t="<\x06\x17\tӷ\x13_\t\x1ee<<֡\x0b=c\x18ι.\x1c\x10;I\x05y\x0b(Oph\x02$=9:,;qI<60< q*<\x06/;%VJ<^\rbֳ<\x0f=*n\x16Hh+߷M7E\u05fb}l0j\x14\x00y\x10\x06\x08=LW2;F\x16=\ncO_*ȶ;Q9n|^ir9ֻQ\x16n\x0fؼ`Op<\x1e\x02ڻ_yh;p\x06/\x0b.n=\x0f!=IJ;^W=4\x1dS\x1d>\x0cмZ;x6;>#=}l0؆w\x04\'mH<\x1aQ\x16/9Uw\x1b\x0f<|\x0fWa\x1co=8aR\x0c\x1b=TH[<\x04"<\U00056f35\x7f=",;;\x17h?aټ\x0c<\x02\x07=`|\x0f<2`<`L<]I!\x0e8\x13Ұ%*z\u05fcs\x0cɻTڼ{<^\x0f;/~;C\x076^%ǼE;\x16)\x1b\x127\x05e\x08=R\x1b1=\x08\x08\x1f\tD˻q;:|Q<#65\x1d=jb;"IuIi\x04=-\x00=.;\x0b7?;ZJ>Ҽlp\x1c7b(\x11<7O\x19U<\x15<<\x02\x03\x14=M\x17j;\x08\x00ꙃ[;w\x0fo̽o\x08Ӏ<3;\x03\x04<=\n\x15[M\x01NaH:ܛ-j=q\n#~;݉=}\x14\x083\x08<+M=7;B;nS\x07\x15<1\t5<<\x05ê6pT!\x12r2üWh3<"7O|11ȇ\x1e\x01=,=Z;$;y⼦\x16?nм\x17\x01>4\x11}=Q=f2C<\x06o\x191\x07)7}\x14Yi\x1bm<;\x7fԳl3:ӻ\u07bbK]]4+ae\x14^:\x13<\x1c\x1d/=\x01{\x7f;hټ\x14<-_\n=;N=6<\x1e8"-\x199,<\x04=_([ 4+\x05,Q%c=&=S;?Q\x00";=OGP<$\n;N%7\x1e=kG1u1Q\x10\x07=\x05u=\x1f:wgn\x1aY\ro<৵=<ͻ6=\x1d\nX<՞,><\\v+>;ȇ<|B˼Q\x12\x0bV{:!<Ǻdtμ<\x07FP8Ꜳ<<\x0b=o\nBT\t#\x1f{՜\x02)=([х;Q<)\x1ai\x7f;IQD>;-\x18aF/\x0b(\x17=Vc\x19>:=\x0e=\x18\x1bi<0$̭g;(o&B=\x16\x1f\x1f\x0c=\x7fٻ*<}\x00=m5h7r\x12B\x829e9\x06Z`]A<8 =\x0eԼӐ20=2`]<>#9 <)<;\x16)$X<\x1f,\x0bo7UC";A\x1f<\x1d3.~\x04\x18\x0b*;=mJ\t*P\u05fb8g\x05弶9aGtX#\x07Ei8 2)H\x05w=\x11\x0fA8U\x10X\x7f;Gi{\x16=c=(\x17%i\x7f;IQD>;-\x18aF/\x0b(\x17=Vc\x19>:=\x0e=\x18\x1bi<0$̭g;(o&B=\x16\x1f\x1f\x0c=\x7fٻ*<}\x00=m5h7r\x12B\x829e9\x06Z`]A<8 =\x0eԼӐ20=2`]<>#9 <)<;\x16)$X<\x1f,\x0bo7UC";A\x1f<\x1d3.~\x04\x18\x0b*;=mJ\t*P\u05fb8g\x05弶9aGtX#\x07Ei8 2)H\x05w=\x11\x0fA8U\x10X\x7f;Gi{\x16=c=(\x17%< =\x01繐 <\x030T\x15א<7U;\x0eQZ(;\x1b{C;\x18 \x1d/h\x7fo\'4lμ®;6=(\x15ȱ;6ݟA\tz\x007\x00\x15nAI,\x00I,\x06H\t#3.ڵ+\x1a<1ܼ\x08d:\tfp\x14=e\x1d*:\x1bvgV;K;\x19\tn+=e.@\x1e<`9¿j=qRq=J˻OL^T9>u\x1bi|\x00={B=\x0f=B<_3ބL̼\n:#\\=\x15\x1fI\x1d=p=gD<\x1e\roħ?W\x1c<ᠼ\x13!=$мR<=I<\x08p\x1f;qRq=\x10\x06=>L\'\x14=`\x15jC%\x0e`<\x04`+49;\x1e<6Լ\x14>:h\n0$\x15=H&;®Լ\t+_ӝ<\t.ջ+ۼ0<`!8xּ@e9d_P:r:mz(<\x03N?pnΖq\x08Bw\x03:͛f;\x0b\x01\x1c=_l:u,KLb\x154E;\\#=,˼<\x7fR2;pc5\x01t\x01\x19=b\t<ѥ<&ɻ1S9p\x1a\t\x03qz\x05\x011=I<ۜ\t<\x01;c3@<ؤ<\x11*/sk\x7f0pbh<|>\rd?\x00\x16|Ĉ=ԯk<\x17L=;HʔL<5\x177tL<\x16^;\x7f\x13=\x17\x14\x11Q[;\x0c=5<\x02<ÿ{\t\u05fbŒ\x16@B4"S=Wͼ9OVHнQ4;mz="\x12ຼ?1<\x01"x\x0f=\x19h=J\x1e\x15غaϛt\x02\t/\x12=<\x1f)\r(\x0c\x05EȻ2\\x<\x0e\x02\\;<\tO=MQ<.,=}9u\x0bX<\x1ed\x02\n\n\n\n\n\n\n\n\n\nWhat is the general academic calendar?\n\nThe general academic calendar is similar to that of Duke University. The fall semester starts in late August and ends in the middle of December. The spring semester starts in early January and ends around May 15. The spring break week will coincide with the Chinese Spring Festival holiday week. The one-week mini-term will take place between the two seven-week sessions in the spring term.\n\nPlease click\xa0[here](https://dukekunshan.edu.cn/en/registrar-office/academic-calendar)\xa0to see the academic calendars at Duke Kunshan University.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\nWeixin\n\n\n[Weibo](http://www.weibo.com/dkuedu) \n\n\n[Facebook](https://www.facebook.com/DukeKunshanUniversity) \n\n\n[Instagram](https://www.instagram.com/dukekunshan/) \n\n\n[Linkedin](https://www.linkedin.com/school/duke-kunshan-university) \n\n\n[Twitter](https://twitter.com/DukeKunshan) \n\n\n[Youtube](https://www.youtube.com/channel/UCSoBlCyNXxOSek8TD6pld2A) \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Quick links', 'ref_doc_id': 'e316f35e-6b0a-489d-ba81-c66dd305d17a', 'doc_id': 'e316f35e-6b0a-489d-ba81-c66dd305d17a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ dku-arc@dukekunshan.edu.cn/about/academics/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:20bb3d06-b514-4a2c-bfd8-956d767ce382', 'payload': None, 'score': 4.226666291576508, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '282360', 'document_id': '2fd3a517-f468-411b-964b-d0d75f53742e', '_node_content': '{"id_": "20bb3d06-b514-4a2c-bfd8-956d767ce382", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/DKU-graduateprograms@dukekunshan.edu.cn/about/academics/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 282360, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/DKU-graduateprograms@dukekunshan.edu.cn/about/academics/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2fd3a517-f468-411b-964b-d0d75f53742e", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/DKU-graduateprograms@dukekunshan.edu.cn/about/academics/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 282360, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/DKU-graduateprograms@dukekunshan.edu.cn/about/academics/index.html"}, "hash": "04036e6e01b7fb6d8c98a0f8bf0a49a76ea8bfd39bd38e3e67be1b3842ecc4bb", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0633cc17-5f47-41f3-bd22-e664b414a6e3", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/DKU-graduateprograms@dukekunshan.edu.cn/about/academics/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 282360, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/DKU-graduateprograms@dukekunshan.edu.cn/about/academics/index.html"}, "hash": "941354007a6ba9bd8f8d7a1bfde07dc76d44e179d8b4cdc19fae28d0baf96c5b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d92cd9c3-65c7-46b8-aec7-463f42867efd", "node_type": "1", "metadata": {}, "hash": "e587daaeaf68f82cc1ca9c454f1321e93b244d3f92d31e25931af4853cd9f08d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12914, "end_char_idx": 17381, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/DKU-graduateprograms@dukekunshan.edu.cn/about/academics/index.html', 'vector': '\n>ٍ\\ylB\r̩DZV\x05qͼ\x7f\x14~;ƨ<,<ߏ<|]<2\x10=\x10o=r;jϚ\x00i4ڼ\x05p\x1a|=&ڻ)=\x00=P=}[Ꜽ]\'<7\x119,=%A<\x17h+nmQ$&<[=+.=U\u0380z\x1e<4\x10l;U\x0eTT:|\'s\x08=Mo<\x08;W,˼|]\n<<2,\x0e؆4%L;&;E$w$/}ۼ:1R91<%;\tcڇ;Կ:r5:,;\x02=B%;\';\x1d"2P\x01Q=Z5<\x0b<\rKj7<\x12 >;f꼎\x12H\n\n\n\n\n\n\n\n\n\nWhat is the general academic calendar?\n\nThe general academic calendar is similar to that of Duke University. The fall semester starts in late August and ends in the middle of December. The spring semester starts in early January and ends around May 15. The spring break week will coincide with the Chinese Spring Festival holiday week. The one-week mini-term will take place between the two seven-week sessions in the spring term.\n\nPlease click\xa0[here](https://dukekunshan.edu.cn/en/registrar-office/academic-calendar)\xa0to see the academic calendars at Duke Kunshan University.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\nWeixin\n\n\n[Weibo](http://www.weibo.com/dkuedu) \n\n\n[Facebook](https://www.facebook.com/DukeKunshanUniversity) \n\n\n[Instagram](https://www.instagram.com/dukekunshan/) \n\n\n[Linkedin](https://www.linkedin.com/school/duke-kunshan-university) \n\n\n[Twitter](https://twitter.com/DukeKunshan) \n\n\n[Youtube](https://www.youtube.com/channel/UCSoBlCyNXxOSek8TD6pld2A) \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Quick links', 'ref_doc_id': '2fd3a517-f468-411b-964b-d0d75f53742e', 'doc_id': '2fd3a517-f468-411b-964b-d0d75f53742e', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/DKU-graduateprograms@dukekunshan.edu.cn/about/academics/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{25977 total, docs: [Document {'id': 'test_doc:a6ece455-20f9-4162-9aec-283d569af329', 'payload': None, 'score': 49.7592941470933, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '139432', 'document_id': '4c8706bb-92f1-4ced-b4f6-d741f1128e61', '_node_content': '{"id_": "a6ece455-20f9-4162-9aec-283d569af329", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4c8706bb-92f1-4ced-b4f6-d741f1128e61", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "hash": "96e184cc8db1f50e5fb21defc8a365c981504feacb2ffc80a67400445188a0a2", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4b88ee27-1bed-440f-9e41-6d9aa3e31bc7", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "hash": "08aebee95fd0d1021d5a00e43c2572878a17f5b07a5b3f23025ce94a6fbc949e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4cecead8-79c8-4c45-96ae-1fbcb1118484", "node_type": "1", "metadata": {}, "hash": "7072ece6925180f6d5b4b3c3b06eeac11f3620a7d8d71772c67c4e947cc96497", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6505, "end_char_idx": 11291, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html', 'vector': '\x03c\x1d\x10#\x15$27Bw<_\x08__\x0f=s\\KYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 37.28356348561736, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:110a63df-8b02-4822-b4a9-617ebfd42f5a', 'payload': None, 'score': 101.83501063402011, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "110a63df-8b02-4822-b4a9-617ebfd42f5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc1f8a7f-baaa-4dbb-b662-57f13800fc6d", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "42c284bcff1c342571f19d5285c5bdf0c3c2d95e0c64042007d2e2532fa12fcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44f66e02-b2b9-4265-99c9-08ed4732fef3", "node_type": "1", "metadata": {}, "hash": "297fe55bd95dc0e162681bb957aa6d46eb3c30c959b454474a848f22dc63074d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1601297, "end_char_idx": 1605766, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'B\x03sL͜\x13珼|&&a\x11y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/ݳݳ]K_<\x01l<ܵ+<2=5Ǻ\x07\x0b8-\x19hB\x05\x10(\x19Vs<1\x0c<>\u07bcp<\x00g==*\x7f:Ir;$9Vk;\x04?hJ<[pU\x181=2!|>\x10SQ\r异\r\x0e=d`\n\x01p]=\x02<\x1c\x1e>;\x0c\x12=fR<]˻><\x15\x03\x0fR;\x18\t=mGUFѼrI=+H<\x02=i¼B0cD\x11bjjXYZ(=\x0f\x02\\Ԭ:V<\x1f:\x03S\x00=!0\r\x1f溼\x1c;\x07\x12\x14;\x19\x03;7=\x7f\x1eU;ĒR<\x16<<$=\x0b˼A~\x10;ٟ;M>^=C\x19<ؼ+T\x13<=/;q\x18=\t.C6=Ur<~;\x1b\x15=^r[\x12?hʼRWk<`<\x05҄ =\x0eu\r6\t<% 9YZB<\x19}H=\rv;ۆ!\x1a/4< &=\x1cL<<ʐ\x17<\x19V;e,:\x07<&;\x1e4O;9;7t<4M:3=JK\x0c%\x15=T?\x139t\x08+\x11=wQ!}\x1d=+ȼp6\r\x0cmG =<\x071\u07fcJE\r:\\"A0Ycd=?h\x15==X1⻈}V\x06Cs\x7fŻo^|<)<\x05.\x11fP=W\x06^VB<#>?<,_=\x1fA\x16;<?\x15\x08\\<\x10\x10;N <ɘ<ޑ\x02=\x13 ^\x16%]\x14;^4\x1b6\x1bPoћ/P<T;b<ڽ\x1d%="5<\x165\x16\x1d\r/\x0cU<ּ6\x16=j\x19<9`Y=\x17=L\\Q=<<_X<\x08hԼ\x187/\x19T\x1d:`Mh\x17\x18ᦼ\x12 =\x1b`;\x1c=\x1e<\x18M<+\x17\x0bMɄ\x00\x04<:ټgy:E;DR\u07bc2!\x00<˲\\\x0e\x17<\x1cOS=,\x10\x05\x06"\x01TK;:<\x1dջ=Fq\x02PH\x0ew\x0f\x17-<\x11=\x11;\x1bͼ\x1b< =BֻI\'\x0f;$\x01<ഄ\x19U7TK=2ӂ<¦\U00100f0f<*F\x06e\x08H<\x163:M\x1c?뻢Ï\x1e=\x19\'<+ڹÏ\x1e=T\x1b=x;+\x17\x0bn\x12\t\x14=%*<~ج+S\rBV>6ʻ\x11=lU;\x0bl\x1f?\\\x1c1R=\x0c<\x17B\x1eU{m\x1d\x7f4ib\x13<\x02:<\x03~μ\'[\x049&\x18=\x07\x06F\x15\x1d=oLF6$<\x7f4=w>F\'[^\x13=}x\t=;Y\x08!=q\x015;d)#U&U<%B\x10;@\x0f\r\x11D\x16<3zk]WB_9=G<}W1l\x1d;o\x17=N\x0f<ӄY<2Hl]=˵VI?\\Z\x1c\x0f껟1\x06#.F:(:\x08(\x14\x12;S)=_=\x02{f\'[f࠼S\rĈ>I\x07;\x16=\\<WY`\x12\x01\x0c=vb=T\x02\x00\u05f7Ho\n$\x17<6Jܺ<<\x10br\x7f<\x02<<ҼK;H8\x08z=`\x15U\x13\x10;\x1f\x0c \x07=[\x02=\r=\x89=DmeSļv\x05\x02Kp"ؼc.<@h\x16U<@4D<`\r=\tdG̒:\'+.m=k;\x05;1=\x02BDw\uef3c&\x00A\x10\x02"+<^\x10\x02=\x01\x13*༹p=f<\n^2<뼿\x03\x14<ХW5 x\t=\x03;\x13o:\x7fo=\x03<"<;\r,*=缲\x19;L=`\x19\x0f<+x.\x1aP<2;O\x13r>J;H=:\x08;C\x11=0\x10؆;\x0b2\x06@:ہ<\x105z\x1d;=\x15\x16=0=Y\U0003777b1\n;C2z=\x11\t=:@7<6\x06=\x00\x04T\x08\x13<`\rq/A$\x1f=8\x1f;\t#\x13:4\x1f=n\x031!<\r%r<ߍ̼\x0c<"6=o-rF$=y\x7f\x00 \ue73c\x1b\x0foq\x1f3\x061G3&#<)=\r\x1ag\x1dE)\x0e<\x0f<\x05>o9\x1baL\x1c=v<\x08:\x0fZ<< 9\x041<]?\x02ϕ\x15,Z#ݼ՚=e\r=XMq3G<+};\x10(=a\x14=JN=`\x1cP\x05=R\x11aL\x1c<\x15\x15;/\x07Mm\x18<<`\x16<\x05e\x05<\x16hiS<<52i.<\x13=C;ۼ\x13C\x15<(#=\x0cwu˻j?;KZO\u07fc!<\x1f3=\x17\x08ּ6t\x16<8sWG<\u07fc\x1e-={*ߑ\x7f\x17p<غ;-8<6\x03=\x19\x1e\x0c=c:\x1f><ܬ<#\x19v\x04\x1d?<\x03;rK\x0f\'<\x19-*\x1fqt;9<\x06;\x02\x1e\x041;{^\x07^M)\x123a\'asW<՚mμ_\x16;敻՚<ܷÜZ<\x17j<\x13"z\x7fP<;s<;x\x02\x0b\x02+;\x1eۨvl\x0c<\x11.t`<\x17^=\x04/ǼJ\\o1_3aٜ9d@=\x0f(;A\x03t!={;\x18)\x04/=b*Re\x08\x1b\x0f;\x04/Ǽ=\x0e[%z\x0e=\x12:f[;@K;(hg=c_\x00ٓ<7BZG\x0268FV\'\x02(8\x01I;b=ep3;er\x1f6=\x139#]=Stڼ{\x10=3a"=\x13L\x19k;{Đp\x19@=\n<1b r\x08YS={;쳼A"%\x03b<ێ\x14\x0fXD\u05fc\x11;VUl䫼XL7<>^\x05Z{\x0f\x1a2(\x15h4\x05\x04\x05<\x1b\x1aCXT\x17[xl;C\x02\x18<|Ʉ(OEN;f=:\x00:=\x1f<;\x13\x133Q;n%ͼ,;\x1b<\x15<\\ǻ\x1b\x1a;\x11X=);yx;+I*H\'ק6<\x15p\x14\x14sI=+;kJN=?)\x08;\tP=Kbj<><Ҽi\t(ןVɌ\x08CĂ<7\x10H\x19\x12=":a<{\x07:ק6;\x1fmk=\x1e;\x16\x05=\x1a=gyXOD\u07fc\x15t\x04Ut<魨<Ҥ;~^<;\x06\x1b=~;}?;h\x11\x08ϗ;S(2sIR=s;\x7f]Rp\x18\x05 }<\x06D=~=>;xmW䑃=D\x00_G&Sp<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:110a63df-8b02-4822-b4a9-617ebfd42f5a', 'payload': None, 'score': 270.96114458324087, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "110a63df-8b02-4822-b4a9-617ebfd42f5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc1f8a7f-baaa-4dbb-b662-57f13800fc6d", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "42c284bcff1c342571f19d5285c5bdf0c3c2d95e0c64042007d2e2532fa12fcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44f66e02-b2b9-4265-99c9-08ed4732fef3", "node_type": "1", "metadata": {}, "hash": "297fe55bd95dc0e162681bb957aa6d46eb3c30c959b454474a848f22dc63074d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1601297, "end_char_idx": 1605766, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'B\x03sL͜\x13珼|&&a\x11y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/C|\x12~4\x08o>s\x13=d#к=\'*\x0bi\x04Kk<2=%<\t>;|\x16\x1b;xC;\x1cޚ߷\x05\x10=\x08˼\x05O;\x12W y\x16\x1468=I\x17kFo;!=6V9=\x1e<ӔB+½K+=[ɧB2<\x1bͼ\x12\x1a\x10\x04<`x\r<*=\r>d%nݴX\x1b;<\x04\x039d!dS.=u<0\x01n!;J\x13=BV;_<&h*[<\x04G<\u07bfi^-;[V_\x00YW;&\x14<89+\x08Y;1<Ȃs\x1eVb<1=c<\x15_t<Ӭ1=\r]<6}\x07=8:\x04\x039=V2o<%\x08eL\x04;oހ<9d\x06\x1b=*o}Ӭ e.=\x17,=}>\x13%\x12\x02+;\t숼1\x08 xu\x14#3<}.\x10\t\x1e<4<¼:;\u07bfo>=$=4q\x01Vʼn<\x12\x1cGļ|¼6ԊGwmWOn4<ݒ5<ڞ;V(M\x0f<\\=\x13<\x17`;ox\x7fW\x03\x17Y<Ŀ<0;Y\x01\x02K=\x11M03?\x02`ʼ\x0f\x14D54?\x02a<9:=^¼<\x0b=ph+˼9#<\x0b\x1aE7m4;R=c4\x1dj:M=៲<{<&x9ovռc\x0fW=\x19\x12v\x04R%<@\r\x07yig\x18%v<\x17#]!<ۺ=ł\x0b;-N]<\u038d={mI=!AֻM\x10b;<\x03z<]\x03\x00,8ʼJ|\\Y7-\x05N\x17=\u038d;:Ka\'=y\x1d]4;z\u05f7]4\u05fc.h=rb;^A<\x1a\x18V=\x14\x00\x1a:\x1c\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 66.18572448464894, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 65.99484606756367, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 52.19055041357621, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 51.51046808215876, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -[2024-11-21 13:36:06 +0000] [1108994] [ERROR] Error in ASGI Framework -Traceback (most recent call last): - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/task_group.py", line 27, in _handle - await app(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 51, in __call__ - await self.handle_http(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 83, in handle_http - await sync_spawn(self.run_app, environ, partial(call_soon, send)) - File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run - result = self.fn(*self.args, **self.kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 113, in run_app - for output in response_body: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wsgi.py", line 256, in __next__ - return self._next() - ^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wrappers/response.py", line 32, in _iter_encoded - for item in iterable: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/flask/helpers.py", line 113, in generator - yield from gen - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/backend/agent_app_parellel.py", line 47, in generate - for response in responses_gen.response: - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/core/dspy_classes/synthesizer.py", line 149, in __iter__ - for r in self.llm_completion_gen: -ValueError: generator already executing -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{20111 total, docs: [Document {'id': 'test_doc:72addc15-576c-4953-b174-c4d66d9f1153', 'payload': None, 'score': 99.59188518938991, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '77784', 'document_id': '095258e5-1eb2-41fa-ab1d-06ffc4658154', '_node_content': '{"id_": "72addc15-576c-4953-b174-c4d66d9f1153", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 77784, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "095258e5-1eb2-41fa-ab1d-06ffc4658154", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 77784, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html"}, "hash": "db791f74e1edd72dbe6d3dd115b40be5ea3e36999b0e3a137d884453fd373b94", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c62bfc31-2927-470c-92ad-8dbb109a1b49", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 77784, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html"}, "hash": "4bc7d4d27b73dc3f0f94334b0d9a1c93ed29c60ccd856787b0bc9e7af0d7db4e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8325f80d-5922-4314-a2b1-f94db192d96a", "node_type": "1", "metadata": {}, "hash": "a89a3cc36eee7e1436c5fc4bc45234539a2a7ba72b9ec96e7fba0e600d792725", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6091, "end_char_idx": 9318, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html', 'vector': '`\x12D=?\x17\x1datǒ\r8<\x03\x10;4h\x13^<<"=*=9a\x01\x1c5\x1cוgU\x00Q]\x06e\x07=\x0fM<(ZeML8=PՍ)I(PG=K;[}\x0b{s\x1a=T<\x1c\x15͍9Zoȫs[Rny=ˏ\x06c\u07fc: q{\x0et=p9\x1bt<\x7f?=$19\x12q\r|\'\x16\x00\x03=zh<\x16%߃@dRЌ<2\x1c==sDtK<<ݞg<\x07¼Bɒ\x1bQ(n<.>Lu%<[$1ج?\n\x01=\x12=\x15\x00<\x07B<\x0cZ=o=\x00\x1e]q\x11~z=:;(7d=&<ψtV|=xߦ#+6t<=\x159=Eٻ3mл%\x04Õ;&]>A<2MkHqI\x06Q\x07\x0b\x00.x\x0f\x02"N%<+Uq;\x1cwL]u\x15\x17\\K0<Q\x1e[=qXk<\x02\x0ff;ug\\J~.=wU\x1b,hJ=g<*ҼH\x01:\nx<\x13<\x10\x13&堯<:Ʈ׃\x1aL<\x079NӼ\x01\x16U=i=\x1c+;\x1cp<@\x17yai\x1f`<[?<;?\x1b,*\x07׀=\x14\x16ð<\x0b6=`Լދ\x14$ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈>;\x01\t;\x00\'`Z_؇=8}=\x02;.<\n=;\\5\x16:\x01a"KT<$YӼS=[;"=K9+^;\'ƼTWV\x13:},,=S\x1d<\x02>\x12;@2Fs˺:(=sμWǻ+w\x1c\x12=|~mc;,7<\x0b<;<\x00\x08Ҽ fMv=̼RP\x11\x06\x15L<2hh\x14<8<\x12;Z<9\x07;\x00\'Z4\x1b<@2bCÁoe:\x15\x1d\x1e<*\x12\x0bt<5@g<\';pu<<瞻s\x16\x1a\x17g<%KN<2=c>< <;}<\x18E\x121=)=xm=#;O*\x7fF\x05\x15;=~t\x1d\x1b=U\x15O;\x14\x10\x1cSV<', 'text': 'Membership Information\n----------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n\n\n\n\n\n\n Programs and Services \n\n\n\n\n\n\n\n\n* [Open fitness classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#fitclass)\n* [Spinning and rowing classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#spinning)\n* [Personal training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#pt)\n* [Boxing](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#boxing "Boxing")\n* [Stretching and rolling sessions](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#rolling)\n* [Rehabilitation & recovery training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#recovery)\n* [Sport Massage](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#massage)\n* [Free bicycle rentals](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bikerental)\n* [Swimming Lessons](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#swim)\n* [Climbing Wall](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#climb)\n* [Body composition assessment](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bodycom)\n\n \n\n\n\n\n\n\n\n\n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n\n\n\n\n\n\n\n\n\n\nIf you’d like to take control of your health and wellness, you have all the resources you need right here on our campus. As a member of the DKU Sports Complex, you will have access to a range of facilities, motivational programs, activities, and services, with experienced and enthusiastic staff providing personalized attention. Our goal is to provide our members with the tools to learn and enjoy their health and wellness journey.\n\nMembership is currently available to all DKU students, staff, faculty, and family members. We also soon hope to invite alumni and local Kunshan community members to join us.\n\n**For the fall semester, all students, staff, faculty, and their family members can register for a free membership, which includes access to available sports and activities as well as free access to open fitness classes. Starting in the spring semester, staff, faculty, and family members will have several membership options that can be tailored to individual preferences.**\n\nMembers must be 18 years or older to be eligible for membership. DKU students younger than 18 are eligible for a membership with a waiver signed by their parent or legal guardian.\n\nAnnual memberships expire at the end of the academic year, regardless of the date of purchase. Memberships starting later in the academic year will be prorated monthly. The subsidized amount of a membership cannot be refunded. Minimum 30-day advanced notice is required for all membership cancellations.\n\nTo join DKU Sports Complex and enjoy all our amazing resources, simply complete a\xa0[membership application](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/).', 'ref_doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/sport-complex/membership-information/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{12561 total, docs: [Document {'id': 'test_doc:c4f28e62-fdf6-49a7-a88e-0d047e91e051', 'payload': None, 'score': 6.748795506943125, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "c4f28e62-fdf6-49a7-a88e-0d047e91e051", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b7b88d89-7a53-4e71-8678-c062ad1bdd29", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fad8155c-cf3a-4e0e-88bb-bae31a75e089", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '\x14o$;]$Ov!ļ{;M<\x15\x1b>\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG7\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 45.65767402992056, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u6=Eƺ\x08P=aQ0=\x08r<\x07\\;\x07M=\x04ȇ9\x05\x7f<\x08u\x05/(\x06t5Z\x13<\x08q<Բ\x08:ivV\r\x7fD&j]<\x05\x03<-<\x07U;\x06?<\x05\x0fAۼ\x05$>\x08<\x08H\x08\x07c<;P\x05,$:=\x07Ũ\x12\x04S\t&=\x05\t<\x05h<\x06\x06"?=\x05?#<\x07LiD/\x0eu:\x1b;M\x07S;W^i\r\x1c=\x1biQ\x01=\x0b\x10"\x0e=pY9ZN<"@=f]\x14=Q;;IkA\x0fD˻%\x1cɼ\x0cPS\':s\x17\x03\x13:\x17=\x1dJ4=T<\x07H==0\x0b=\x0f\x16;\x12\x05\x06\x1f\x0fJJ",梅;\x16=z<Ú<0LAza6aʅ=D`Hk&: 4#6=\x16`}݄;:?&<\x03;.\tGW=\n3λO^TCۿ<\x02?=\x0f\x1b("\tb*!\x1b\x01\x1a^;b;Xĺ53\x16<Ú;\x04\x04@$;Q!^\x16k =z\x017<)<\x17[cܻH2=\x11U\x06j\nbuP\x1f(]9\x14c\x1d<\x0c;\rּ\x1dM<\x07ż\x08T<\x0b<\r1@\x05=|ƻr\x02=Ik*<&^9Ӂ<ˇ<μM\x7fHp\x08;`h;\x0c=\x15x\x0175ƻc\t;=6T:7\x14{I;B<6=Ȧ}\x1ek&:EU\x06e.\x18;\x12<.7\x16\x0f\x02a۽ϼ\x18\x05=>?=q<#\\<\x03¼\x12obu:R\x1c*;#=^;З2f9><;t \x18\'lp<>ۿ@zԠ|g\x1f\x05=r;sv~= o獜VX\x18H\x08;w#*\x16vLp,=7#\x15NR>=\x08\x02\x16=\x17H<\x08י;\x16Ƿj:2<1;=96Uʼ7;5λ4\x1bڼ(hk\x10]*=\\;Hi6<&hl=r};u\x03M=gM";7<\x18%=4\x1bZ<ȍU_Ӿm\x18=nC5\x1d;y4=sHe<*\x167˜U<\x08\x11y4\x04<\x0eU\x10ȹ֦;9m=V=-;\x16d1Cw:so;,s\x167=Y\x00:}<\r;HR}\x157;\x12WE<\x1aw?=h<( <;A^\x7f#<4b[=uϺ\x19h\x03&(\x10=9\x08\x1d\x1c\x14f\x173VY;\'\x1c#p=r<6f-^\x15֊5<َ):=Ӻ3;8[9\x1aY2;h\x12=碌J\tM\x15\x0cмSb<4\x1a<\x17H4bۻ\x7fd \x1b\x03\x12\x10\x12\x08=Hz<<$K\x0e\n4A#;o\x03=\t\u07fcG)<<\x14z\x06=vƶ뺭X;\x02;\x05GӼ\x0bm\x06\x1dU<{\x15̼\x05t\x0e\x1abK=>2\x08E:/?}@<\x19=\x1d\u07bb\x056=\x043=*6<\x17MQ=\x13+;|Ղ;O缚Tu{=0=tp\x0c=8n<)a\x7fou<\x0e==3Ox|\x08;C\x05=7\x1bڻ?Y?h<\n\'Q;Wg3<5<(|O?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 42.94798667588227, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;=\x1aN\x11O;G|Nd<\x14 <\x12JU:ρ=\x10=`=\x1bv\x16\x7f0X\x01;XG<ۡ\\7=D:9~9*2\x16;Be|\x1b:f=(\x04>J=˺b\x03e3\x1e\r{~\x0b i\x0b=̬6\x17H;\x00GO\x0e#>}D:]\x0e\x05c<^ <\x08Qd\x01[<<{~<[1Q:$ӻMrOȼ6\x03<\x10y\x00%7\x17Ϥ\t=\x7f%\x1cM`b?r\x1d2\x089<$ߕ<_<(OViZѾ;[B4.~ \x015T\r;oR\tf1\u07bc\x1a :<\x08<\x16\x1f<\x0cûƒ\x12=9<', 'text': 'My parents went to medical school after I was a teenager, so we basically changed classes. My mom was a teenager when I was born. My father had just returned from the Vietnam War. They were white working\\-class people trying to figure out some version of social conscience. They both felt like they’d come from problematic backgrounds. My mother is from the racist South, which was unsettling to her. My father felt like he had been on the wrong side of the Vietnam War and was traumatized. We moved over and over again. By the time we ended up in Butte, Montana, the entire city was collapsing. Eventually, I went to the University of Michigan and witnessed \\[the decline] on a grander scale in Detroit. Did American workers just give up? No. They were repressed; they were sabotaged.\n\n\nMy first film \\[*Accelerated Under\\-Development: In the Idiom of Santiago Álvarez*, 1999] was about trying to pay homage to \\[Cuban filmmaker] Santiago Álvarez. I sort of accidentally met him in my twenties. He was quite old, and was feeling that he was being forgotten. I thought that he’d been unfairly written out; I took a course on Latin America cinema in college and he wasn’t even in it. When I finished \\[making the film], I was like, “Oh, I guess I make movies now,” but the biggest thing was raising his profile. I felt like I \\[still] needed to figure out a way to work more with stuff that was really connected to my life. I was studying at CalArts with Thom Andersen, James Benning, and Billy Woodberry then. I spent two years seeing a lot of stuff, but then felt a bit suffocated. I just didn’t know how to find what was mine. I took a year and a half off and got a job as a projectionist. I needed to follow my impulses and find stuff I cared about, on my own terms.\n\n\n**Unlike in your previous films, you chose not to use archival images in this one. Instead, you play with color and even digital effects, for instance in scenes featuring an animated Croatian fascist flag.**\n\n\nI’m always wrestling with the question of what can and cannot be represented. Fascism is deeply overdetermined, in the sense of being associated with a specific set of iconographic imagery. I wanted to figure out a way to disrupt the monochromatic image that’s predominant. So, for the ’90s footage, I pumped up the color saturation. That footage was already colorful, but I amplified it slightly. I was drawn to the idea that normally, older images would be in black\\-and\\-white and newer ones would be in color, and I wanted to invert that. I asked myself what I could do to describe the Croatian fascists. Every time I looked at the Croatian flag, I wondered what would happen if I tried to \\[animate] it somehow. It became a way to make something present now.\n\n\n**Do you feel that those fascist images are more overdetermined than the images of the Ku Klux Klan in your last film? It seems like there’s also a specific iconography at play in*****Did You Wonder Who Fired the Gun?***\n\n\nI would say that there’s an overdetermination in the sense that there’s an absence of honesty about the Ustaše, who are interconnected with a regime that’s identified with the emergence of the nation. For a long period, fascism was largely suppressed, but then it exploded back into life in the ’90s. Honestly, now it seems stronger than ever. It’s not in the film, but I was in Croatia during the last World Cup. Members of Croatia’s team had the Ustaše symbols on their uniforms. And everybody would say, “It’s not because they’re Nazis. It’s because they’re patriots.”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0', '_node_type': 'TextNode'}, Document {'id': 'test_doc:2b3002e3-38b7-4d3e-bc07-db364e768c5a', 'payload': None, 'score': 58.47167001086161, '_node_content': '{"id_": "2b3002e3-38b7-4d3e-bc07-db364e768c5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155059/imep_yearbook_2020_final_spread.pdf", "file_name": "imep_yearbook_2020_final_spread.pdf", "file_type": "application/pdf", "file_size": 5625215, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155059/imep_yearbook_2020_final_spread.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8b644a05-3e51-49cc-8b84-699d90b37e99", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155059/imep_yearbook_2020_final_spread.pdf", "file_name": "imep_yearbook_2020_final_spread.pdf", "file_type": "application/pdf", "file_size": 5625215, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155059/imep_yearbook_2020_final_spread.pdf"}, "hash": "3a5462ff4e1a0b5b2a70f0327e901a8635cb12106d5b1ddde9f865d59f3113f3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9fa72b0a-824d-482c-a5c6-c590dae85345", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155059/imep_yearbook_2020_final_spread.pdf", "file_name": "imep_yearbook_2020_final_spread.pdf", "file_type": "application/pdf", "file_size": 5625215, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155059/imep_yearbook_2020_final_spread.pdf"}, "hash": "eac14545cf0c06cfb92d2fa3f711cde2148617424ec845196b9422f8ebe5b6fb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a0db315e-4191-4db9-aaa1-6fb2fe2d1b31", "node_type": "1", "metadata": {}, "hash": "7ac7d0e53a8e0734469a32566b9c49fdd074a938fccf11395b80240705b07feb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 63010, "end_char_idx": 67256, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'document_id': '8b644a05-3e51-49cc-8b84-699d90b37e99', 'vector': '\x0b͖\x14,N}\x12演ƼWG\t+ ld<\x18\x13(<\x1d+ƻ5{G=rgv=Ð<2-\x0b-kd;:<@\x00<ښk\x1f;ސ+8=;9sхy<)\x1e=4;\x16\x0b:L<\x02<\x05@q\x1d\x7f|dg\x05\x1f3%岘=q<$qK=\x1c\x14;o\x0eB\x1b\x10%8<{Y\x14;<\x1eJ\'\rLּ[}I\x073=q\x037`B\x1d챼a,I;\x0f&eѼ\x00;\x1a=5\x0fw4x\\[=\x08\x7f\x1d>s;/K=uA<:\x0fhjgd<>d;=#\x07\x0eaQ\x13l`=a,ɻ|\x01\x00$r\r3<\x19fV?N;\x17sCG<2@8\x14j\x0b\x106aO<8<;p^\x1f+=\x05\x06n=E\x06\x1a=\x01ڼ\x17i\x19\x0b;(yƷ\x1a\x02=eѼboA|;jz3\x16s;`\x18=z\x0fѽ^f\x103<\x11=2 \x1ed;\x18\x07Y=\x14<\'\x19;\x06\x10>=n\x1d;d#1Yh8p=H\x06\x02\x04ER:xͦ\x06B<\x05+<О_)e=\x19<\x19<\x085]vDɰǻ\x1a\x02\x0c=/.\x05=;;*k\x02=Ɔ\x13<\x03,C7\x05y<%37L\x12\x03&F^N=\x16ĺ=b\x0f=h;\\ߡ;4\x11NI;\x03,2;,$;`;pltvd=5\x15F=\'dSlO*;\x06=W<\x0c\u0381\x1eiWX=<-\x0cR;\n\x0bƻXV\x19F\x03d>\n{\x14>\x0f㼒z^=Nz{=\x16<\x0eKjG_<谼\x15~q2<\x1eAF<&\x08l;"0X;s,=\x00ebȻ\x10=/\x03v*=Ժ<\x13Hf\n/\x03=&f;%=T@;;W<\\;\x7f>\'b_i;+]3E<\x06\x00\x0e>l=9ܻMJ=\x0e\x15\r>f\x1e;-\x1e\t;=t0he\'=\x17xż\x0b$ͼۧ\r,OdƘ<^\x1e~;\x14؏=0 **All courses** link.\n\nIf an instructor would like to continue making changes to a site, allow late submissions or other changes in their site, they can switch the site to be dictated by course participation dates instead of the default term dates. This is done within each site’s course settings. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354) on this process.\n\nIn addition, instructors may set within the course’s settings to ‘restrict students from viewing course after term/course end date’. By doing so, the instructor would retain access to the site but students would no longer be able to access the course at all. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269) on this process.\n\nNote: Sandbox & Collaboration sites are not dictated by the same controls by default as they are not associated with a specific term.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSetting up course site and content\n----------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nHow can I enable/disable a tool in the Course Navigation?\n\nOn your Canvas course site, there are some links (Home, Announcement, Modules, Grades, and DKU Library) enabled by default in the Course Navigation. But if you want to customize your Course Navigation by adding or removing links, you can\n\n1. Go to Settings in Course Navigation\n2. Select “Navigation”\n3. Drag and move the tool(s) you want to add or remove\n4. Click “Save”\n\n\xa0\n\nFor more details, please see [How do I manage Course Navigation links?](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-manage-Course-Navigation-links/ta-p/1020)\n\n\n\n\n\n\n\n\n\nShould I adjust the time zone in Canvas just like in Sakai?\n\nYes. All DKU users are recommended to change their **personal time zone preference** to China Time. See [this documentation](https://community.canvaslms.com/t5/Student-Guide/How-do-I-set-a-time-zone-in-my-user-account-as-a-student/ta-p/414) for detailed steps. All DKU courses use the China Time as the default time zone.\n\n\n\n\n\n\n\n\n\nHow can I copy over existing content in my previous Canvas sites to a new site?\n\nInstructors can copy content from an existing Canvas site to another including course settings, syllabus, assignments, modules, files, pages, discussions, quizzes, and question banks. You can also copy or adjust events and due dates. Student work cannot be copied over to the new course. Find out detailed instructions [here](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-copy-a-Canvas-course-into-a-new-course-shell/ta-p/712).', 'ref_doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'filename': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '112550', 'file_path': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:edb37f9e-1edb-440f-90e2-a004aa8db083', 'payload': None, 'score': 47.975755447473034, '_node_content': '{"id_": "edb37f9e-1edb-440f-90e2-a004aa8db083", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Admin-Guide/How-do-I-add-a-rubric-in-an-account/ta-p/172/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 313996, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Admin-Guide/How-do-I-add-a-rubric-in-an-account/ta-p/172/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2659dde5-8fed-4df3-a5ae-0155065cab96", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Admin-Guide/How-do-I-add-a-rubric-in-an-account/ta-p/172/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 313996, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Admin-Guide/How-do-I-add-a-rubric-in-an-account/ta-p/172/index.html"}, "hash": "e6869a35fbce04f0662e364861e4c03a303fa4b12a71ee2cc2277d474b7fd071", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "193ee472-a754-49f1-bf30-5306ee0bc5d4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Admin-Guide/How-do-I-add-a-rubric-in-an-account/ta-p/172/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 313996, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Admin-Guide/How-do-I-add-a-rubric-in-an-account/ta-p/172/index.html"}, "hash": "8c7c13b6c19d1a47594c91737775d2b68aaa965b4b83973c367d0951bfeb46d4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2da41124-f179-46eb-99e7-209a718f7b7e", "node_type": "1", "metadata": {}, "hash": "25ea2b93e2d9fc2eaf48892c6607b7179fdc6dfa23fb4d95ffc0335475a43f97", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 38207, "end_char_idx": 41487, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'document_id': '2659dde5-8fed-4df3-a5ae-0155065cab96', 'vector': 'OBC5;K=s;\x12)dg(q9c\x01;\x1f\x02\n=6"e=LG\x1b=߬;\x1a|m2(/.kP\x1b\x00墧|<)G=\x01!>O;\x19&]fњp\x05=;,;`<&V=nj\x08=h;=\x1d=b>rj\x11~Ƽ\\.<|͏<ҹQ<(G\ufafc3\x12)<\n݅<\x1e<㻇*\x08\x0f=郘;d<\x01<\x03\x1bp^\x1b=%;^d\n;M<\x1b!óٯ_<\x07<戏Þ\x0bh.z̻\t$}GՓ<\x15\x17r;\x13,<<\x13HZ=Mռ\x03\x07@;^q<\x02il:b\nBA֧\x1f< <<2;Mռgnxs;^<7~h>:Uv:m\x08>\x1a6;l\x1e=j\x0b<\x1b!f&\x1f*=%ִ<\r=i#=-;Ӻ<|%\x1b=4\x06m0S)%:\t;ɡ)<=\x0b\x1d=<Ӆ83j\x0b=ó;lP=\x1e6=\r<@\x132;N<\x14<-e<*4T:A`<\x05Wi{=G\tD;Q\nCO\x0b?3\x06ϼ\u2d2a;7/#=RJ9\x18&;A߁;(<;o=\x03j=\x08s\x0bc=0mA={\x03<\x1cw/Fs\x03\x1b<ºY\x1d9k;*P=Z\x1b=EA=x;J\x11ټ\x03\x136J\x11Y=2ʧ', 'text': 'SIS Imports\n\n* [What student information system (SIS) integrations are available in Canvas?](/t5/Admin-Guide/What-student-information-system-SIS-integrations-are-available/ta-p/197)\n* [How do I import SIS data to a Canvas account?](/t5/Admin-Guide/How-do-I-import-SIS-data-to-a-Canvas-account/ta-p/98)\n* [How do I format CSV text files for uploading SIS data into a Canvas account?](/t5/Admin-Guide/How-do-I-format-CSV-text-files-for-uploading-SIS-data-into-a/ta-p/216)\n* [How do I create an automated data integration for an account with Canvas and my SIS?](/t5/Admin-Guide/How-do-I-create-an-automated-data-integration-for-an-account/ta-p/255)\n* [How do I practice using the API to import SIS data to a Canvas account?](/t5/Admin-Guide/How-do-I-practice-using-the-API-to-import-SIS-data-to-a-Canvas/ta-p/100)\n* [What do I need to know about creating a script to automatically import SIS data to a Canvas account?](/t5/Admin-Guide/What-do-I-need-to-know-about-creating-a-script-to-automatically/ta-p/268)\n\n\n\n\n\n\n Support Information\n\n* [How will I know if there is a Canvas outage?](/t5/Admin-Guide/How-will-I-know-if-there-is-a-Canvas-outage/ta-p/238)\n* [How can I manage support tickets for my institution?](/t5/Admin-Guide/How-can-I-manage-support-tickets-for-my-institution/ta-p/155)\n\n\n\n\n\n\n Terms\n\n* [How do I use the Terms page in an account?](/t5/Admin-Guide/How-do-I-use-the-Terms-page-in-an-account/ta-p/159)\n* [How do I add a new term in an account?](/t5/Admin-Guide/How-do-I-add-a-new-term-in-an-account/ta-p/222)\n* [What should I do at the beginning and end of each term as an admin?](/t5/Admin-Guide/What-should-I-do-at-the-beginning-and-end-of-each-term-as-an/ta-p/124)\n* [What should I encourage instructors to do at the beginning and end of each term?](/t5/Admin-Guide/What-should-I-encourage-instructors-to-do-at-the-beginning-and/ta-p/123)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow do I add a rubric in an account?\n------------------------------------\n\n\n\n\n\n\n\n\n\n\n\nYou can create rubrics for instructors to use across your institution. Instructors can add account-level rubrics to their assignments, graded discussions, and quizzes. Instructors can also create their own rubrics in their courses.\n\n\nRubric criteria can include a point range or an individual point value. Rubrics can also be set as non-scoring rubrics, which allows for the use of rubrics without point values.\n\n\n**Note:** Currently criterion cannot be reordered after they are added to a rubric.\n\n\n\n\n\nOpen Account\n------------\n\n\n\n![Open Account](https://media.screensteps.com/image_assets/assets/007/949/740/original/167b4d34-2e3f-4046-9aed-39673e67bdab.png)\n\n\nIn Global Navigation, click the **Admin** link [1], then click the name of the account [2].\n\n\n\n\n\n\nOpen Rubrics\n------------\n\n\n\n![Open Rubrics](https://media.screensteps.com/image_assets/assets/005/797/315/original/59cbb0db-08ca-45ab-ba5b-7b9d0b0f5fe8.png)\n\n\nIn Account Navigation, click the **Rubrics** link.\n\n\n\n\n\n\nAdd Rubric\n----------\n\n\n\n![Add Rubric](https://media.screensteps.com/image_assets/assets/000/790/501/original/3493730b-3073-4cf8-b2fc-0922c606dbb6.png)\n\n\nClick the **Add Rubric** button.\n\n\n\n\n\n\nAdd Title\n---------\n\n\n\n![Create Title](https://media.screensteps.com/image_assets/assets/001/621/039/original/95399b34-e3c8-4f74-afbd-d20d8099fa64.png)', 'ref_doc_id': '2659dde5-8fed-4df3-a5ae-0155065cab96', 'doc_id': '2659dde5-8fed-4df3-a5ae-0155065cab96', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Admin-Guide/How-do-I-add-a-rubric-in-an-account/ta-p/172/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '313996', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Admin-Guide/How-do-I-add-a-rubric-in-an-account/ta-p/172/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{25977 total, docs: [Document {'id': 'test_doc:a6ece455-20f9-4162-9aec-283d569af329', 'payload': None, 'score': 99.5185882941866, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '139432', 'document_id': '4c8706bb-92f1-4ced-b4f6-d741f1128e61', '_node_content': '{"id_": "a6ece455-20f9-4162-9aec-283d569af329", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4c8706bb-92f1-4ced-b4f6-d741f1128e61", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "hash": "96e184cc8db1f50e5fb21defc8a365c981504feacb2ffc80a67400445188a0a2", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4b88ee27-1bed-440f-9e41-6d9aa3e31bc7", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "hash": "08aebee95fd0d1021d5a00e43c2572878a17f5b07a5b3f23025ce94a6fbc949e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4cecead8-79c8-4c45-96ae-1fbcb1118484", "node_type": "1", "metadata": {}, "hash": "7072ece6925180f6d5b4b3c3b06eeac11f3620a7d8d71772c67c4e947cc96497", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6505, "end_char_idx": 11291, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html', 'vector': '\x03c\x1d\x10#\x15$27Bw<_\x08__\x0f=s\\KYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 74.56712697123471, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19KYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 74.56712697123471, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:110a63df-8b02-4822-b4a9-617ebfd42f5a', 'payload': None, 'score': 677.4028614581022, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "110a63df-8b02-4822-b4a9-617ebfd42f5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc1f8a7f-baaa-4dbb-b662-57f13800fc6d", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "42c284bcff1c342571f19d5285c5bdf0c3c2d95e0c64042007d2e2532fa12fcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44f66e02-b2b9-4265-99c9-08ed4732fef3", "node_type": "1", "metadata": {}, "hash": "297fe55bd95dc0e162681bb957aa6d46eb3c30c959b454474a848f22dc63074d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1601297, "end_char_idx": 1605766, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'B\x03sL͜\x13珼|&&a\x11y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/C|\x12~4\x08o>s\x13=d#к=\'*\x0bi\x04Kk<2=%<\t>;|\x16\x1b;xC;\x1cޚ߷\x05\x10=\x08˼\x05O;\x12W y\x16\x1468=I\x17kFo;!=6V9=\x1e<ӔB+½K+=[ɧB2<\x1bͼ\x12\x1a\x10\x04<`x\r<*=\r>d%nݴX\x1b;<\x04\x039d!dS.=u<0\x01n!;J\x13=BV;_<&h*[<\x04G<\u07bfi^-;[V_\x00YW;&\x14<89+\x08Y;1<Ȃs\x1eVb<1=c<\x15_t<Ӭ1=\r]<6}\x07=8:\x04\x039=V2o<%\x08eL\x04;oހ<9d\x06\x1b=*o}Ӭ e.=\x17,=}>\x13%\x12\x02+;\t숼1\x08 xu\x14#3<}.\x10\t\x1e<4<¼:;\u07bfo>=$=4q\x01Vʼn<\x12\x1cGļ|¼6ԊGwmWOn4<ݒ5<ڞ;V(M\x0f<\\=\x13<\x17`;ox\x7fW\x03\x17Y<Ŀ<0;Y\x01\x02K=\x11M03?\x02`ʼ\x0f\x14D54?\x02a<9:=^¼<\x0b=ph+˼9#<\x0b\x1aE7m4;R=c4\x1dj:M=៲<{<&x9ovռc\x0fW=\x19\x12v\x04R%<@\r\x07yig\x18%v<\x17#]!<ۺ=ł\x0b;-N]<\u038d={mI=!AֻM\x10b;<\x03z<]\x03\x00,8ʼJ|\\Y7-\x05N\x17=\u038d;:Ka\'=y\x1d]4;z\u05f7]4\u05fc.h=rb;^A<\x1a\x18V=\x14\x00\x1a:\x1c\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0f=(\x1a\x1f5n`Y\x1f<\x1a\x08\x0f\x0bչ=2;V<\x14Bo\r<9\n̼r\x15\x02<+<%A<8;\x08><6\x03=:<{\nt=#[=\x7f\x05R\x00=(V\x1a;jB;6\x14\x1epм2¬o\x03=<\x0f;z=`K[<}~;_1<\x07]\x00.=:\x1b#={})<\\pƻC<]:;y;7\x0cG=\x18\u07bc\x06$2*o\x02ȼ\x1e\x1a\x01=w<^F`=o\x172$=\\\r9=pec<¼4\';jt:=W*ڼ<Ɗ8y\x04= *\x10;0/\x03=<)U|˼\x06\x06=\x1aluFO\x01f:z8Ӽj\x15;\x079JN\rq\x13*:5<@z<\x15)=<;\x0eP"Q9\x1d*[\x7f%;y)\x18<3<.\x15Db\x10<\x0f&=o^\x0eмL\'l2w\'Ѽq\x16=¾zLV;\x00W\x15|<<\x1c<@%3o;s\x1666;igmm|r<üi+1=<\x7fc99@\x1b=fЍ<\x0fi!\x17=H\x14G&\x1d\x1dOTP!\x17>5=ǐ<\x17\x04<_;t(ɼW<\x0b<\x0fm<\rؼR^=т9f1#1\'=\x1bG4<ƍ&=:D<\x01D}\u07b5\x08<,\x04kM,r\x1dECl\tj=\x06\x0b\x07=I\x125=\x07g\x15}r\x1e]<\x1a[j;5f;s<ɏ:T =L\x08<^\x1ew)Mx\x19h\x07__\rW:\x10Ż\x7f<0-=\x11\x1b=kP;\n\t<_Ό5gלּ\x06x<\x15Z\x18\x0eZP\x18HjG=×4ڼĒ\x16MƼ8=ir!=\x0c=ГG: ;5*>;a\x03I\x07;g\x0cf<Մ;ߊS\x04pp\x02E5fr=NWa\x1b\x01:U\x13\x00L6D<ļ\x00\x18q=N\x05v~<\x0f,=[<;\x10\tջ*=I1<\x18"`9!DgL;/\x01=cF:R\x1d<\';<+\x04Bɭr\x1exW<,2ռZ\x18 #%>a;B?Gd\t\x11=0\x02\x03ckJ獜VX\x18H\x08;w#*\x16vLp,=7#\x15NR>=\x08\x02\x16=\x17H<\x08י;\x16Ƿj:2<1;=96Uʼ7;5λ4\x1bڼ(hk\x10]*=\\;Hi6<&hl=r};u\x03M=gM";7<\x18%=4\x1bZ<ȍU_Ӿm\x18=nC5\x1d;y4=sHe<*\x167˜U<\x08\x11y4\x04<\x0eU\x10ȹ֦;9m=V=-;\x16d1Cw:so;,s\x167=Y\x00:}<\r;HR}\x157;\x12WE<\x1aw?=h<( <;A^\x7f#<4b[=uϺ\x19h\x03&(\x10=9\x08\x1d\x1c\x14f\x173VY;\'\x1c#p=r<6f-^\x15֊5<َ):=Ӻ3;8[9\x1aY2;h\x12=碌J\tM\x15\x0cмSb<4\x1a<\x17H4bۻ\x7fd \x1b\x03\x12\x10\x12\x08=Hz<<$K\x0e\n4A#;o\x03=\t\u07fcG)<<\x14z\x06=vƶ뺭X;\x02;\x05GӼ\x0bm\x06\x1dU<{\x15̼\x05t\x0e\x1abK=>2\x08E:/?}@<\x19=\x1d\u07bb\x056=\x043=*6<\x17MQ=\x13+;|Ղ;O缚Tu{=0=tp\x0c=8n<)a\x7fou<\x0e==3Ox|\x08;C\x05=7\x1bڻ?Y?h<\n\'Q;Wg3<5<(|O?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 42.94798667588227, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b;\x0b\x0b\x14\x06{/:x[vf TSqywJU$D/;ZQ6R\x0b=@\x0f=\'ގ\x1c+Bv<;<\x0b\\(:\t|~9ZѼ}:G=jMg:Wz"a\x0b\x14\x02Pr!=紋<\x0c\\=s2\x0e7d<+U\x10=\x1a\x02jռ\x16t<Հ\x12,<\x12Lnq;\x06*Jxs\x13\x1b45C\x13M(;#\x00;\x19js:N\x12})\x0fFh<\'\x1bw\x03ɭ=k\x15v\'Ӟ<\x03)N;_"=QW\'\x06=z;\x16<2U=\x1cй=3ꁼse<$<+}]c(=\x1dYN\x05p\x1df.\x01p\x1c=\x0b\x14=vM:q;ӞT\x18N\x12=;X34\x1b<1=\x1f\'i=\x07;+D6=2o+q`\x15K<˼Actg;;Cx<\x1f<\'\x06$\x1b\x12G˼\x03$\x04T\x16^g<\x15W\'\x01\x0b\x05V8q<\x17\x18dAGCH;>%!һ*)\x14\x08=\x10k\x07ϼゎ<\x07\x1c"Ҟ<\x1eT<+wo\x03nE\x03/\x0c ;ƈ>LL=\x14L=\x1f<\x0em!=\'i=TM<0P\x18B\u05fc\x15\x06ŖR\x1ev<@A#<\x161F\x1d;\x0em<\x01ϐ`J\x0c=(\x1ba!*\x17=\x05t96}$=ඥŘ=\\=\x1d\x1a6CmTbY\x10j翻&ݼ\x07\x1cA\x0c1=F睼<<%<\x17?I=\x1eü~H;\x1e!2mCc\x18=fɷ<-2\x10\x10K1\x02\x173ӼrH<\x7f\x0634=e=4;(tNQ;6WQ}=u\x19(tNk٘\x17\x00=VDž<\x12><1\x10a̴\x1aU<{(1<\x14W<{<*\x7f,\x15=]S<\x11Z,%= ;\x0fiܰA#<$\x03=\x00N<.\x0f(\x16=<< ;=|ռd+=\x00J<"+\x10t;\x14QE;$>H<\\\x07\x04\x01\x0c9R\x1f;[<97=/Y<5A\x11̼s;z<|\x05\x1d\x07b\x03\x1d<<#=\x01\x1a=D{c\\\x17;Ji|\x16afИ{:\x169=\x12\x0cJ=vl<[C93\x0f\x127(=?\x01\x00=\x07\x1bni;\x12\x04d\x0b\x02<@\n<\x00g\x14\x06;\r;FA\x1a\'9Ҽ\x1fk;!=+N+Ua̴Jg\';T=Ứ7ͼU\x08o<[\x16<[;-坻}\x1f<\x00D$;DD=\r^<`弾\u03796T<;o,<\x02Q=d+\'\x11=7@0;(v@P=+U*=ۇ\\wi\x1fҺ97<}ŀ-\x1dr<\x1c?엂\x00K<\x19\x15\x0b\tOg<>a=q&o韼9M\r;^ \x14;Ow9\x02\x17Ӽb\x06`_\x16L:`}8<\x07?^}1<\x12=Ulμ\x167=.J;-*=JZ0\x0e\x17}U<56\n=;h}T̼_YO(<|\x10[3{!ҥO|<-*O(}"q}\x0fr`fd=`\'<ռVv\x06{3<+D=>v>"(Ґ\x0bM;SlG=f)\x00<=Rv!9J<=tff)};<6\x1fo(μֻc\x05=N\x11ʼ`Ѽ=T6<;Ժ`\x13<9\x00===Uf<$/<1\x19=n\x1ażЙ4\x0b\x00=\x02\x17S=N\x11J\x1cJ\x18s\x19=廈v4<;`\x00=J\x00\x16\x01<\x19\x07Ol9\x1d+f=༸<\x05\x03\x14=-˻[3\x02=h}\x17O\x0b\x00\x01<#<\x07\x06f\r;\x05<\x0b]<\x04=-[Й4;`f<)シ\x01*V0<-bM\x00\x0f\x10[qC<-\x02=Ml\x05\x05b\r=:)ә<\x1c$<6=?Fh\x1fC5^\x10K(1Z6<\x18;,٤K<\x1e|H)\x1c=\x14.3FCT<^\x02fD\n,=Ϊ<+\'<\x1d\x04uq<\x05?\t\x04=#\\<ؼݼBLIo\n\x16:\x11:=^<~v=67\x16\x0b=X=O\x01f>V\x01V~\x07.C\'=~t獼fk<\x17h<6J\x19=[|O\x11\x13<\x16;\x02?=%4D\x10\x11Ꚓ[3=C=Rr,r ּ|f\x134=\x17ъ<*䭻7;4)\x1b=4\u05fc\x04\x0fp"\x0e\x00<&b\'\x1b;\x12=-y?n\x05I9;ǺE<\x06L\x0e\x15g]ꓻ\x1eQ<\x14黳D=\'=\t\x16B=K\x12Vc+\'<-Do: ʼy9ɺ\x03u;ER\u0558\x0e;\x04t9=w\x1a\x00Xϼz;\x10oW(?n\x08G\x1bL<\x03<\r2=\x7f2\x07;ؼgTn\x15;\\\x0cF!=Y玻9\x15v仿w<\x0b;WcH1\rU\x191vݼm\x07Lk)T`\u07fc.xAt_,G<\x10=\x13\\p\x12a\x11ƿ\x1c\nQ@j<%p\'\x0bӼj\x01=\x0f0<\x031\x14w=\x04\x15]<\x12\x04\x19\x05~=<<~\x04I;Ǽ\x01\x16<}\x0e9G2<2R~<~;].<(T=i\x12;\x05yWK\x1c=}\tAq=˝;Na<-=t;\t:\x19l\x0b\x12q;u\x0f\x03<\x0ba\x0b\x08<\' KQɽI^<1]=L*;\n=S\x08Z\x1dڷ=\x14"ia/\x1d?=u\x0e|3ٚ8;;i;\x12=L*=o\x07L;kV;s͝R\x1c:p\x03\r#=({6\x19\t1kּ\'m=+Ҽ<9!\n\x17i\x00=<\x0b";\x1c\'\x04/=+Ҽtm7<<+$\x1b8q@\x17A\x1e=jss\rt]\n\x1cἠt:\x17@\x17o\x164=q\x0e=\r<%C\x13R0=?\x1b=\x1c!1=\x12=.ZH=n\x00!kh<\x07ʙ6"DiKb켶|=\x01\x19\\4;=\x1e;#{R=8\x16=zګ\'=F\x14QV;(Q>=\x0f=M\r;\rJ<;;_+;_2=FX_2O!<\x0c=Zr)Y輹g\x10헼r\x19\x1a0%\'v;Xd\x18=(o=\x02;漬\x12(}=)\x1bC\x1f\x14P,m\x19C\x1f^y\x0c\x17\x1d9<:;\x0b\x04&noX\x0c=\x06\x08F\x17,XB\x0c\x1foj;jd=\x17Mvl<#\x088\u07bb5;w̼\x11\x0b^HJ\x02=Xx<4n<<\x1e\x07uic;}<5r3=!U\rQ?e<.^;\x0c\x14w>\x11\x02\'c!p\x1a$\x1b=f<]\x1e=Wxg=;6\x179-<\x1aV\x18=4:<\x04\x1dD\x0fz=ce<_\x13U46Pm\x00\'s<\x1d\x14Us=g\x12=\x02\x0c\x0fԼǑ3\x05w\x06=U\x08=\n<<\\;=^y\U000df47b<ԛ \x0c\x0f\x7fi\x04<\x1b\x19G<-v\x1auk\x13\x07)6b=\x0f~\x18B\\|\x1d=h\x0fa=r(O9Z=`+=J%i%=e7?=:\x16=ծ\x15D-7\x05<,+<\\Ļ;"f;G<\x0b\x1f:O9\x1b\nc\x06=K/N;a\x02<\x04;<ջ@Ȼ<+$<{jU%?\x12)6;rCYںmY)\x03"\nw\x0fkF4\x01\'&K\x1903z8\x0bݼ\x0bPF*B<:`;T,-\r=ocU3\x0bT=Z<\x12üg3-\x1a\x0b=<\x07V\x1a;LDռ.\x16<:۴\x1c9;((¼\x16!<<ł"~<ewo.;[w=c;\x03(\x06=5~1Ѻ\x11#<\'*Փ:qN\x01\x05=i$cI^p!<\t\x1f`=\x14QོNh/\x1964_Z<~;;F+ugh<\x08F;ӎ\r\x05W\x0cXy kq\u07b2]\x025\x19ݿ;\x1a2Jwł"=0A\x174=CI\x1a\u07bb<ŝAi=\x10\x03}\x1fx\x157)9TH<#\x08=d\x1b\x13\x0c=:V:ȺG\x1bҽ|<\x0b<\x11vļט\x1f<\x0c^x=\x10;c\x12w\r;:0p\x103Z\x19|<&\x04<ѳjC;?=\x12\x10Q<\x15=}5g<Ⱥ|?&n)\x1dV\x0f\uedbcȺGr2\x1e=5]#L<\x1fT~6J=3\'<;\x15>|<_cCI5_\x1aq|;K\x03]\x00\x18I ;=]K\x1bq\x05,e"He<\x0b\x021\r=,\x04F<9\nr=۽\x17,\x1c驞;MZ=H/k<)\x07\x16\x15=F|\n:˒jC\x1bx\x1eq\n\x0blF;92IC<_m\x08ne\x1b8fZ\x02<7J==G\r=U\x1e=,\u07bc\x06=o\u07bcrnL\x00<\x157<]x\n:V4\x08=c\x1e\x0b:NBĢӽem(\x15=Pze=\x0bQʼCnVO\nZ\x12w\x1a7.;ܤ*ᑢݻ\x13\x02<Ѳ\x14\'8<\x12\x05",:8q\rD\x12셻x<{\x08Ԍ:Jq\tԔ G$~\u07bb\x0c\u070f<﹉w=Z.<\x05:C\x01\x06`P<+Q\x07<\x107:\x0eG_WC\x1e<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4356d92e-c0b5-4632-ad41-fa4d34e96f0a', 'payload': None, 'score': 4065.987470717121, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "4356d92e-c0b5-4632-ad41-fa4d34e96f0a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6116d398-4d88-46a1-8cfb-3757ffb90a5a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "dfae79e8c3f95df4ec311c6484e7c44104aa52245f7eafb1bacfaf74d27a6b68", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fe2c23cc-891b-41d1-ab8e-d2ec30608f08", "node_type": "1", "metadata": {}, "hash": "ae3829913dc82a90d2e33c8ab47df5b0dbc8928aeef5ccd1161128cf821aa49b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 80464, "end_char_idx": 85161, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': 'ꋽ\x07)\u05fb\x0e\x16Gs\x05\x13_t\x13c=w;"\x12=(n9I&\x0c=Bü#<]\x03q\x10;\x15Rn\x03X=\x1d=y\x04ΥY@v;<;B\x01|;sKρQ6;\x13<\n<\x0ecb\x1fr<9W\x08!<ǥ4=\x7f7mW}4=3\x10f2;qg:V8\x0e<|\x13W->iHy;7%\x136!;\x16HI>=\x07)W\t\r<\x0b[>:\x07=\x08\x01=d\r=y+A<\x18:m/\x08=1s\x0b;=p\nT[;[_@v>Oщ\x07)WK"#=Ua\x16\x16|\x13\x14q\x06m:\x07=黤Uc\x0b\x02=4\x0fF=SQ#\x10\x1e.kYD\x08°}<\x7f7\x0b\x0e9\x13t<:,Bp\x1b\x00\x1e\x077;\x03b\x01~Y=_\x17:\x0f<\t\r/\x1f=j\x120&\'d=\\=V$\x11Tgȼ1z\x15E\x01~=\x11=0](:/=좹nj\x0c<\x16\ry\x0f:\x1f։V<7\x05=W\x1a<`4;&<\\u"=q\x04B;;Xt摼4<\x0bF.@<\x08=X\x03$=\x10<\x0f=dg3y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/C|\x12~4\x08o>s\x13=d#к=\'*\x0bi\x04Kk<2=%<\t>;|\x16\x1b;xC;\x1cޚ߷\x05\x10=\x08˼\x05O;\x12W y\x16\x1468=I\x17kFo;!=6V9=\x1e<ӔB+½K+=[ɧB2<\x1bͼ\x12\x1a\x10\x04<`x\r<*=\r>d%nݴX\x1b;<\x04\x039d!dS.=u<0\x01n!;J\x13=BV;_<&h*[<\x04G<\u07bfi^-;[V_\x00YW;&\x14<89+\x08Y;1<Ȃs\x1eVb<1=c<\x15_t<Ӭ1=\r]<6}\x07=8:\x04\x039=V2o<%\x08eL\x04;oހ<9d\x06\x1b=*o}Ӭ e.=\x17,=}>\x13%\x12\x02+;\t숼1\x08 xu\x14#3<}.\x10\t\x1e<4<¼:;\u07bfo>=$=4q\x01Vʼn<\x12\x1cGļ|¼6ԊGwmWOn4<ݒ5<ڞ;V(M\x0f<\\=\x13<\x17`;ox\x7fW\x03?#G=Ji~\x16Z%\x17%\x00";X4\x04><~\x11x\x14$(=\x0f\x02=p\r< ã;\x06߹<[\x17\x17jb=\'<0=$~;v<\x18=i\x17=֍\x1aX<χB=~;c<\n6r<\x13v\x1fd=1;%\x1a\'JZ<͌\x0c\x15,z\x14=4j\x07\x01\x0eˆ;qɌ<,Z;\x06"\x14VB\x04<\x19Ѯ=\x03|λ;500@eJ-\x18<\x1f.\x1b\x16H;l5;\x04P$ѻs;=ѼTWѷ;$hudtǼ\t;)tJ=\x1c^\x17=dt=I_=\'-\x18<\x100<\x02Y=\x07/\x02=6//K\x19\x01\x0c\x0b=Yҹ\x1a\x13;[;J^:\x0c=\x1dY̻z4<7?=\x07Q\t;\x14*\x1c=\';Լ\x14]m;5P=\x01\u05ce\x06k\n=b,<<㺥\x1e=ɼ7O\x13<\x11p h^^ݩ==dsr<ם\x08\x14\x18s\tۼm?=\x17=?fW\'\x03:ZgU]\x05:@;B=x\x0c^=-=\x13\x0f9\r<:ۼ\x1c=r L;$eȼ2fB<\n;;V\r=Aƻͻ\x13*5\x0bK5h=_K=g伢qO\x1dEV߳:Sּ\r\x03P;?cd;p==?I\x08":\x0f=\x02="tA0:\x7f:\x19s:,9-ʀ.kP\x12=CtDQK\x13<\x0fKO=(;M;=L<=\x0c\x0bw/I<~3\x01L=\x034\x03ȼA<|\x14=;\x0eڻ=\x1f;\t\x01G/< =nC\x02?\nAc:=r<+Ʒjq<2\x0cüa^9:--(<>\x16%9<=]&<\x10G\x1a=Խ;"#ʸ\x15=a^<86<<㔭O;B>\x07S\x12;\'\x1f\x7f=\u05f6\x13=5#<;\x0c>|(w;\x1da=l<%]ti)<[b6<{Ϙ=J/g<\x03!\u0383O7=2\x0c;\x05nPV=K썻H\x14=\nW-\\=b<\x01pĻ@y<):\x06O_^0}}=HI\x08o<$Ȼ\x8b<\x05ZV<龇{мVSs\x10\x06O\u07fc.\x18<\x1dU=ev"\x04><(Vt\x0c=\u07bcPY<\x05̽O7<\x12!\x010Ĺ\x16\nQ\x00E\x19Y=Z(=ڼ\\7ȼs;f=grX\x13f\x068\u07bch\x0b/y<[j:^\x04c\x1c;A\x00=wE\x17y=<_C<;PĎ2%=>\x1e\x7f;g\x08\x08(uM=ڜ \x06\x19=P\x1dDM\x17<;6qB=w$7z8^\x18;b0\nuV=\x08m;J"9\x028un\x1dͲ\x18g#=l;\x08;-wX<<=L;&\x13ɣf=I<>I< #_P\x17;ݔs_7=B<\x03c"=\x97\x10=s(#WC\x01*=\x14<\x0c9K<\x0c2H\x1d=Fu[\x0b@/\x00>_\x18<9\x1d~\x01A==I\\z=9=Rp\x10=\x08)ڼ;<\u05fcp\x05E\x00!\'OH\x1d=`ѻ.n<{\x0f䉻-\x7fjF=\x01[~<\x18\x11\x03(_\x19\x02r;"識/\x02j\x16=!\t9c"v-:\n\x10\x1f\x0bZJ\x14c;x\\< ";P%T<\x0f=\x08<$μiJ\x7f=\n\x0bP\x17*PGBnɻül=#Ֆ$jJp;o;<ʒZV\x1f;aʺ5<\x18;Aü\\3ޘ);R6GͻW$_W>$=]\rs\x13\':\x197v>HŽ\x18<\x1e~;\x1e\u07fc\x0cAiT\x00\n\r\x1cJ=`>߬\x1b\x04\x03;=j\x1e\x0c\x05=^8"=z\x10"\x06̸[<&;\t\x14:I}.)Z<\x7f=P;<.\x061=K\x14=1c*<3{\x12ym&h\x7fhHE~\x02¼z0;5B:xGi\n=u\x18;\x18;\x11%;żt\x04\x08={\x00=Q;IR<\n/9k%3̸<\x129<1\x02=y;ۻw\x17]o黔\x1f|a5ü$D/\x0fv;<\x03\x12ĺ}_F;\x11=\x07;A-;}JR6;\x0b\x0b\x14\x06{/:x[vf TSqywJU$D/;ZQ6R\x0b=@\x0f=\'ގ\x1c+Bv<;<\x0b\\(:\t|~9ZѼ}:G=jMg:Wz"a\x0b\x14\x02Pr!=紋<\x0c\\=s2\x0e7d<+U\x10=\x1a\x02jռ\x16t<Հ\x12,<\x12Lnq;\x06*Jxs\x13\x1b45C\x13M(;#\x00;\x19js:N\x12})\x0fFh<\'\x1bw\x03ɭ=k\x15v\'Ӟ<\x03)N;_"=QW\'\x06=z;\x16<2U=\x1cй=3ꁼse<$<+}]c(=\x1dYN\x05p\x1df.\x01p\x1c=\x0b\x14=vM:q;ӞT\x18N\x12=;X34\x1b<1=\x1f\'i=\x07;+D6=2o+q`\x15K<˼Actg;;Cx<\x1f<\'\x06$\x1b\x12G˼\x03$\x04T\x16^g<\x15W\'\x01\x0b\x05V8q<\x17\x18dAGCH;>%!һ*)\x14\x08=\x10k\x07ϼゎ<\x07\x1c"Ҟ<\x1eT<+wo\x03nE\x03/\x0c ;ƈ>LL=\x14L=\x1f<\x0em!=\'i=TM<0P\x18B\u05fc\x15\x06ŖR\x1ev<@A#<\x161F\x1d;\x0em<\x01ϐ`J\x0c=(\x1ba!*\x17=\x05t96}$=ඥŘ=\\=\x1d\x1a6CmTbY\x10j翻&ݼ\x07\x1cA\x0c1=F睼<<%<\x17?I=\x1eü~H;\x1e!2mCc\x18=fɷ<-2\x10\x10K1\x02\x173ӼrH<\x7f\x0634=e=4;(tNQ;6WQ}=u\x19(tNk٘\x17\x00=VDž<\x12><1\x10a̴\x1aU<{(1<\x14W<{<*\x7f,\x15=]S<\x11Z,%= ;\x0fiܰA#<$\x03=\x00N<.\x0f(\x16=<< ;=|ռd+=\x00J<"+\x10t;\x14QE;$>H<\\\x07\x04\x01\x0c9R\x1f;[<97=/Y<5A\x11̼s;z<|\x05\x1d\x07b\x03\x1d<<#=\x01\x1a=D{c\\\x17;Ji|\x16afИ{:\x169=\x12\x0cJ=vl<[C93\x0f\x127(=?\x01\x00=\x07\x1bni;\x12\x04d\x0b\x02<@\n<\x00g\x14\x06;\r;FA\x1a\'9Ҽ\x1fk;!=+N+Ua̴Jg\';T=Ứ7ͼU\x08o<[\x16<[;-坻}\x1f<\x00D$;DD=\r^<`弾\u03796T<;o,<\x02Q=d+\'\x11=7@0;(v@P=+U*=ۇ\\wi\x1fҺ97<}ŀ-\x1dr<\x1c?엂\x00K<\x19\x15\x0b\tOg<>a=q&o韼9M\r;^ \x14;Ow9\x02\x17Ӽb\x06`_\x16L:`}8<\x07?^}1<\x12=Ulμ\x167=.J;-*=JZ0\x0e\x17}U<56\n=;h}T̼_YO(<|\x10[3{!ҥO|<-*O(}"q}\x0fr`fd=`\'<ռVv\x06{3<+D=>v>"(Ґ\x0bM;SlG=f)\x00<=Rv!9J<=tff)};<6\x1fo(μֻc\x05=N\x11ʼ`Ѽ=T6<;Ժ`\x13<9\x00===Uf<$/<1\x19=n\x1ażЙ4\x0b\x00=\x02\x17S=N\x11J\x1cJ\x18s\x19=廈v4<;`\x00=J\x00\x16\x01<\x19\x07Ol9\x1d+f=༸<\x05\x03\x14=-˻[3\x02=h}\x17O\x0b\x00\x01<#<\x07\x06f\r;\x05<\x0b]<\x04=-[Й4;`f<)シ\x01*V0<-bM\x00\x0f\x10[qC<-\x02=Ml\x05\x05b\r=:)ә<\x1c$<6=?Fh\x1fC5^\x10K(1Z6<\x18;,٤K<\x1e|H)\x1c=\x14.3FCT<^\x02fD\n,=Ϊ<+\'<\x1d\x04uq<\x05?\t\x04=#\\<ؼݼBLIo\n\x16:\x11:=^<~v=67\x16\x0b=X=O\x01f>V\x01V~\x07.C\'=~t獼fk<\x17h<6J\x19=[|O\x11\x13<\x16;\x02?=%4D\x10\x11Ꚓ[3=C=Rr,r ּ|f\x134=\x17ъ<*䭻7;4)\x1b=4\u05fc\x04\x0fp"\x0e\x00<&b\'\x1b;\x12=-y?n\x05I9;ǺE<\x06L\x0e\x15g]ꓻ\x1eQ<\x14黳D=\'=\t\x16B=K\x12Vc+\'<-Do: ʼy9ɺ\x03u;ER\u0558\x0e;\x04t9=w\x1a\x00Xϼz;\x10oW(?n\x08G\x1bL<\x03<\r2=\x7f2\x07;ؼgTn\x15;\\\x0cF!=Y玻9\x15v仿w<\x0b;WcH1\rU\x191vݼm\x07Lk)T`\u07fc.xAt_,G<\x10=\x13\\p\x12a\x11ƿ\x1c\nQ@j<%p\'\x0bӼj\x01=\x0f0<\x031\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:a0a9c333-5aa6-4690-8ced-acbdb70ffdd7', 'payload': None, 'score': 418.7958440957953, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '445782', 'document_id': 'ed9f2c0e-969c-4d65-91f3-8f0ac09ed537', '_node_content': '{"id_": "a0a9c333-5aa6-4690-8ced-acbdb70ffdd7", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf", "file_name": "GuidetoCourseDesignAug05.pdf", "file_type": "application/pdf", "file_size": 445782, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ed9f2c0e-969c-4d65-91f3-8f0ac09ed537", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf", "file_name": "GuidetoCourseDesignAug05.pdf", "file_type": "application/pdf", "file_size": 445782, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf"}, "hash": "dbfc1a91db8f1fa3cd720d4556918216f17c2457bb6631327ae069f1cdc375cd", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a06466d3-dd84-4899-b826-11a30c3b3b18", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf", "file_name": "GuidetoCourseDesignAug05.pdf", "file_type": "application/pdf", "file_size": 445782, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf"}, "hash": "3f4680f0a8fad8bcf92b4085dc07a3fd25ba3658f06b87d935975537e90170a9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8c3e5d76-efb1-47cb-ab45-79db81b84231", "node_type": "1", "metadata": {}, "hash": "3745167136951cbad943d342e277f5467af1f4ba9019dab75d9c10bb6487a78f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3937, "end_char_idx": 8375, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf', 'vector': '7h\x13RS\x13;;\x15V$< 9P\x0e\x1c6=\x1c\x0e`\x1b\x7f5=\\\x16<^<2\x0f<\r@\r*;;=%=c0+>PP蕻`\t=Zv=V:\x10);\x03=2<\x0e`&\x7f<\x15\x00b\x01QO\x00;<|\x16=*Mz<"%Y\x04q]=N>˼\x1c++jk<\x19r٘\'\x10UH۸_\x1cMm>U*ΝkGQ3\x05ԗ<-9=;r\t\x0ctz}\x18;o½V\t\x00ڱ}C\x06rIh+=j&\x03g*[,R\x17!\U000fb31aZ\x0e"<+\x18\t\x1bz\x01=6=Gؼe=nkS=\r<\\\x01PQ˧\x0b=Q3\x05Ĕ҂:\x0b喼\x1b!L#/#u=\x11<\x1bEk\x06^0\x12\x02;ƂV=\x19\x7f.\x12<\x18\x00f=S\x17=q)\x17<>\x1aV<&,<\x1bD^L<移γ{\x03<25<\n=O>=PG\x10(\x11wb\x05\x06NUbC=XsL߫=m\x15KTY<\u07bb;4\n=\x19\x10Ú<@~;ć=MJq$=D2<\x00\x1c=<\x04\x1a\x14H\x0c\x00\x1f<1<+;@&\x05WTx킼_K=r;O#<\x05\u07bc\x04ҋ<\x1b=\x14:<\x08_=\x17<\x1b1<\x03\x19\x7f\x10=)\x14$v6*;/\x1a;\x19vv=\x12=h\x14=b\n=m"=\x05T=; ;\x1bӼB\x1a\x01l\x19\x16\x03=>\x1aF;$#\x1as\x10=Լa"ջA\x1a=\x13;L\x01\r\x7fT<9g;Oǣ9T\u07bf<\x0eH>ɼ\r\x07=\x1b=O>\x06IZ\t>J=c\nMz8\x00y:(B\x10=tȻ풚9`P:CUh:<\x1a=\x1f!\x18W~R6=\x1eF<\x1eF\x17\x19m=5;<;$#<\x08{5\x1dܼ0|_\x15=A?=})]!\x16=\r\x04;\r=2ټϼFȏ=\x11?(<<\x04N<8wv,}_N\x14C!ٛ5\x02;=\x19I\x0e;2;Fh<`\x13:3oȼRԼͼ1Wc6\x1e\x1f\x0fCs=L=ˠT\x19:?`g\x0f=K:KM\x12\nb<#-\tz;=\x1e?\x1c\x00=6<#ϼ^`~\\D_\x0c^i:;\x10\r=gh"z\x1f\x1dZɜ=<˻gCv\x1cC;#&żi\x183eR<؋\x1eA=Za=>V\x04=̞N<|\x11\x15;1\x08̻Ż\x17G8,0L<|=t<<\x05\x1eA:nj9#\x15\x03"0AS;װE="\x10<#WoټW{=ļI<\x04N\x03<=ż\x01\x03Z\x17;1ԕ<\x16e\x02\x10\\9N<6;X~\x08lj\x0eG\x01\x03\'\x1d1=q&=0\x10\x1bcG\x1f=2<@C=7d<4m\x07\n\x18<3<\x19Cy+\x1dϰ;ٛeQ\x03D=n aG":7)<2\x16A\x03\x04N=c\x17̻519Pؼ]83\x0f=i\x19=t$6=y+=c<\tR2\x0eP=w\x07f#<^`<\x05会üF\x19Kϼ@Nn;\x11?9&z\x12\U000bbaf2\x1eA<\x13=\x12\x024;\x0ey<\x10\x18,}S\x06\'==<؋\t\x10M2ɼGɢKDED;1=pCʼDC\x05i\x183=sfn a=<\x1d\x11W<[,=;E<\n\x18u\x1bc;:-\x0brio4.BPbLͼiʝ<}u"x<\x07u_\x0cm)aJx::=\x1e}ֽK=;\x03\u07fb:;<\x1cm\x1f<\x04C<\x0f(=\t]=ȩ=9!+\x12\x17\'Nޒ=\x0cji\x1b;v^\x1aP=NBм\x1e#:Â=\x08\x03\x1d{bj|u#)ֻo9Ǽz§;\x0cZ2UI<\x07B=\x0e\tQ<\x03\x10S=3F>Ur6=\x14/=\x1fo:ꐋQy[$\x07<;:\x03:;=^\r~ʺ\x0bIe;)[=\x0c#<\x1cR<,Y\x1f/H/|=Z\x11;SH\x07ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 11.008880660696656, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 8.454732360868446, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{20111 total, docs: [Document {'id': 'test_doc:72addc15-576c-4953-b174-c4d66d9f1153', 'payload': None, 'score': 61.28731396270148, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '77784', 'document_id': '095258e5-1eb2-41fa-ab1d-06ffc4658154', '_node_content': '{"id_": "72addc15-576c-4953-b174-c4d66d9f1153", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 77784, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "095258e5-1eb2-41fa-ab1d-06ffc4658154", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 77784, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html"}, "hash": "db791f74e1edd72dbe6d3dd115b40be5ea3e36999b0e3a137d884453fd373b94", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c62bfc31-2927-470c-92ad-8dbb109a1b49", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 77784, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html"}, "hash": "4bc7d4d27b73dc3f0f94334b0d9a1c93ed29c60ccd856787b0bc9e7af0d7db4e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8325f80d-5922-4314-a2b1-f94db192d96a", "node_type": "1", "metadata": {}, "hash": "a89a3cc36eee7e1436c5fc4bc45234539a2a7ba72b9ec96e7fba0e600d792725", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6091, "end_char_idx": 9318, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/latest-in-athletics/duke-kunshan-hosts-truly-global-sports-tournament/index.html', 'vector': '`\x12D=?\x17\x1datǒ\r8<\x03\x10;4h\x13^<<"=*=9a\x01\x1c5\x1cוgU\x00Q]\x06e\x07=\x0fM<(ZeML8=PՍ)I(PG=K;[}\x0b{s\x1a=T<\x1c\x15͍9Zoȫs[Rny=ˏ\x06c\u07fc: q{\x0et=p9\x1bt<\x7f?=$19\x12q\r|\'\x16\x00\x03=zh<\x16%߃@dRЌ<2\x1c==sDtK<<ݞg<\x07¼Bɒ\x1bQ(n<.>Lu%<[$1ج?\n\x01=\x12=\x15\x00<\x07B<\x0cZ=o=\x00\x1e]q\x11~z=:;(7d=&<ψtV|=xߦ#+6t<=\x159=Eٻ3mл%\x04Õ;&]>A<2MkHqI\x06Q\x07\x0b\x00.x\x0f\x02"N%<+Uq;\x1cwL]u\x15\x17\\K0<Q\x1e[=qXk<\x02\x0ff;ug\\J~.=wU\x1b,hJ=g<*ҼH\x01:\nx<\x13<\x10\x13&堯<:Ʈ׃\x1aL<\x079NӼ\x01\x16U=i=\x1c+;\x1cp<@\x17yai\x1f`<[?<;?\x1b,*\x07׀=\x14\x16ð<\x0b6=`Լދ\x14$ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈>;\x01\t;\x00\'`Z_؇=8}=\x02;.<\n=;\\5\x16:\x01a"KT<$YӼS=[;"=K9+^;\'ƼTWV\x13:},,=S\x1d<\x02>\x12;@2Fs˺:(=sμWǻ+w\x1c\x12=|~mc;,7<\x0b<;<\x00\x08Ҽ fMv=̼RP\x11\x06\x15L<2hh\x14<8<\x12;Z<9\x07;\x00\'Z4\x1b<@2bCÁoe:\x15\x1d\x1e<*\x12\x0bt<5@g<\';pu<<瞻s\x16\x1a\x17g<%KN<2=c>< <;}<\x18E\x121=)=xm=#;O*\x7fF\x05\x15;=~t\x1d\x1b=U\x15O;\x14\x10\x1cSV<', 'text': 'Membership Information\n----------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n\n\n\n\n\n\n Programs and Services \n\n\n\n\n\n\n\n\n* [Open fitness classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#fitclass)\n* [Spinning and rowing classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#spinning)\n* [Personal training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#pt)\n* [Boxing](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#boxing "Boxing")\n* [Stretching and rolling sessions](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#rolling)\n* [Rehabilitation & recovery training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#recovery)\n* [Sport Massage](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#massage)\n* [Free bicycle rentals](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bikerental)\n* [Swimming Lessons](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#swim)\n* [Climbing Wall](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#climb)\n* [Body composition assessment](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bodycom)\n\n \n\n\n\n\n\n\n\n\n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n\n\n\n\n\n\n\n\n\n\nIf you’d like to take control of your health and wellness, you have all the resources you need right here on our campus. As a member of the DKU Sports Complex, you will have access to a range of facilities, motivational programs, activities, and services, with experienced and enthusiastic staff providing personalized attention. Our goal is to provide our members with the tools to learn and enjoy their health and wellness journey.\n\nMembership is currently available to all DKU students, staff, faculty, and family members. We also soon hope to invite alumni and local Kunshan community members to join us.\n\n**For the fall semester, all students, staff, faculty, and their family members can register for a free membership, which includes access to available sports and activities as well as free access to open fitness classes. Starting in the spring semester, staff, faculty, and family members will have several membership options that can be tailored to individual preferences.**\n\nMembers must be 18 years or older to be eligible for membership. DKU students younger than 18 are eligible for a membership with a waiver signed by their parent or legal guardian.\n\nAnnual memberships expire at the end of the academic year, regardless of the date of purchase. Memberships starting later in the academic year will be prorated monthly. The subsidized amount of a membership cannot be refunded. Minimum 30-day advanced notice is required for all membership cancellations.\n\nTo join DKU Sports Complex and enjoy all our amazing resources, simply complete a\xa0[membership application](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/).', 'ref_doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/sport-complex/membership-information/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{14848 total, docs: [Document {'id': 'test_doc:123262da-91e8-4a23-84b3-5ce951a92851', 'payload': None, 'score': 16.07330450011937, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '120360', 'document_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', '_node_content': '{"id_": "123262da-91e8-4a23-84b3-5ce951a92851", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 120360, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "14801b0a-322e-4a4d-b8d2-706cf94df741", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 120360, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html"}, "hash": "b18a3c0df05d860e4e25f4549e6ffa57a521b8b2ab0a75a3f9ff954fa8cb7d5f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b6b10a0d-76bb-4e42-829b-17c491c858dd", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 120360, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html"}, "hash": "1f01425bde46232b8fbd8ac9d21b0decfa8bb44f89fd7650ceaf0505fba2f7b5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dffa87bb-a993-46f5-a1e8-2e3bd403c5c0", "node_type": "1", "metadata": {}, "hash": "0a499af5e19734317cc4e2572d38b7e1453f600aea72984fccd3835a24c6d761", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9210, "end_char_idx": 12341, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', 'vector': ':^I&\x15g\x19룼NI>\r<آ\t\x16<{zS㼠\x05i\x0b*\n=[G="\x1ew\x18=\x12ps+ĻZy \nSP\t)\x022=;RM(\x11<\t\x15t<\x1b_=;vY<1BFi\x1b=\x1f<\r5<6mW\x1bE=*=8<آ\x13\x01\'ޠ:;JD&=jX{Wܶ<<ƨ\x07Rϼ\x11!=\x01\x13\x1f;\x02=9n+&\n<<0{\x11мkh.=!L\x10<\x19\x0e nFQ=\x1dީ=\u0557;H\x1e\x7f\x04ּ\x0f==<\x113Swo{<,=%\t=sa\x19TH\x0e~<.B<\x7f=~z;FtkK:\x05,`\x0e꽼;\u0ad5u\x08w];ȼ\x0co:q<;m>\x1e+N}\x18<:2"=\x01!ϼ\x16<\r=\\ʊ<Ȑ\x0f\x10\x1f<\x7f.\x0bR<\x19-4z\n=\x06o\x15;B;=.\r<ڊ\x1bB;>k\x14̎ڼ\x05r{\x11<<آ\x13&竻OegF9%;<\x7f\'L\x1e0BFNI;<\x0c\x08<2;\x01QvY6üw<\x1a_˼NZS&<\x00?\x11y?\rwS<\x15a;WK\x022={W<=h\x08==Ҥ\x0f=\x1d\x19=\x12k$=t={):6*NY,7\u07fb\x7fm\x1bk=x\x17:BA=p<L\x19!ki=.ͷ:<<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nLibrary Spaces\n--------------\n\n \n\n\n\n\n\n\n\n\n\n General Rules \n\n\n\n\n\n Study Rooms & Team Rooms \n\n\n\n\n\n Functional Rooms \n\n\n\n\n\n Wind Finance Lab \n\n\n\n\n\n Multi-Media Booths \n\n\n\n\n\n\n Please follow the general guidelines below to use the Library spaces/rooms:\n\n1. **Open space seats and study rooms are on a first-come, first-served basis**. Please take your personal belongings with you when you need to leave for more than 30 minutes.\n2. Do not use personal belongings to occupy seats. The left items will be cleaned up by library staff and we will not be responsible for any loss.\n3. When using **functional rooms** or places with equipment, please send an email to [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn) to make a reservation, then go to the 1st floor service desk to exchange your ID card for a temporary key card after the reservation is approved. Each reservation is limited to 3 hours with additional 3 hours renewable. Course reservations will be given priority.\n4. Please **keep quiet** in open space, use team/seminar rooms for group discussions.\n5. **Telephone booths** on the 3rd and 4th floors are available for phone calls.\n6. If you need to move around furniture in a particular space, please return it to its original position when you leave.\n7. Please keep the environment clean and don’t litter.\n8. **No eating** **on the 3rd floor and 4th floors.**\n9. You can [check for space availability here](https://dukekunshan.emscloudservice.com/Web/BrowseForSpace.aspx#), but please note you cannot reserve rooms on this site.\n10. Contact to reserve classrooms.\n11. Follow any additional guidelines for other special spaces listed on this page.\n\n\xa0\xa0\xa0\xa0 \n\n\n\n\n\nStudy rooms are on a first-come, first-served basis, and we don’t make reservations. Reservation is required for events and classes in the team rooms.\n\n \n\n\n\n\n\n| **Study Rooms** | | |\n| --- | --- | --- |\n| **Floor** | **Room Number** | **How many people can fit in?** |\n| **2F** | 2103 | 2-3P |\n| 2109 | 2-3P |\n| 2111 | 2-3P |\n| 2117 | 2-3P |\n| 2119 | 2-3P |\n| **3F** | 3101 | 2-3P |\n| 3102 | 2-3P |\n| 3105 | 4-6P |\n| 3106 | 2-3P |\n| 3107 | 2-3P |\n| 3002 | 2-3P |\n| 3003 | 2-3P |\n| 3004 | 2-3P |\n| 3007 | 2-3P |\n| 3111 | 4-6P |\n| 3112 | 4-6P |\n| **4F** | 4101 | 2-3P |\n| 4112 | 4-6P |\n| 4113 | 2-3P |', 'ref_doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d6d27406-84ee-4f2e-8fe9-40d837477efc', 'payload': None, 'score': 11.477572802230965, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '156358', 'document_id': 'b921af15-be3d-4648-a832-9eff128b796a', '_node_content': '{"id_": "d6d27406-84ee-4f2e-8fe9-40d837477efc", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b921af15-be3d-4648-a832-9eff128b796a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "944bdda3371daca1284fd390ca0a29a9d73fc0764ea88d2c55fcc8bb495cf062", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f14b732-8c96-4cc7-aab4-34c23342640b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "b811c1fef340a9b0e4ac9860aaf0bcb4eafbaec57628f2ce4f38eb3f1faa6f9a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36aec92c-b4af-4794-9536-0cf40ffc99bb", "node_type": "1", "metadata": {}, "hash": "9f61e90e3cf6222cad0453557dba29fa4656b2d87ad996c0b95a8bf1221add9a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 38850, "end_char_idx": 43900, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', 'vector': 'ꁽ\x18;ًL;;\n\x0bBXb\x07<\x10.\x1e=FB<1;Ҽ?\x17=\u197bwI|Q;\x12;{eRWŜLüY\x05=،<\x062ҴbEnYg\x17l$\x17\x13=ND1=\r!5"G<\x15\x0eD(!\nh\x1ab\x1d=\x0eV<\x07=h`\u07bc&=\n\x1bd=3u<\x1d;k[:\x04PО퐟\x1an(|<_:=7v<\x15aR\x00Ǒ\x0b<<<X=ԼbL=Bx<\x00f=jZr=\x0258r=<;fK?7)Q\x02\x7f<ܔo,:,\x19C;<;\x03\u05fc@To3\ru\x03=Vt\x02):s\x16=6\x06\x13V eRWVP;@?ޛ;+0;(\n?k%ڍ=*\x13<~ąw\r N\x07=;;ll\x14\x0b7)Q<;lI+"~\x15j\x06\x1e3=&+<@<¼v\x08̢BXg=\x0f=. P\x0c=^9=J<֡ٻ\x06\x172Ҵ:<8"9=!\n*9\x11oŻbLp8\x00\x01v=6b<;ll;RZ\x1e\x11\x00(=m?k%=Pp<', 'text': '* ***Time:*** *10:10-10:30 & 15:00-15:20*\n* ***Location:*** *LIB 3015 Tea House*\n\n \n\n\n\n#### A Brand-New Learning Resource Centre – Your Gateway to Learning\n\n*Xiaojia WU, Assistant College Librarian (System & Facilities), Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nIn this Poster, we invite you to step into the enchanting realm of the Learning Resource Centre, where the pursuit of knowledge has no bounds. Building a brand-new library is to build a knowledge palace for readers, thinkers, and dreamers alike. This poster provides a glimpse into the myriad treasures and opportunities that await you within these hallowed walls.\n\n1. Exploration: To embark on a journey through the vast expanse of literature. To discover books spanning genres, from timeless classics to cutting-edge research.\n2. Innovation: At the Learning Resource Centre, we embrace technology’s transformative power. You can dive into our digital resources, e-books, and interactive learning platforms.\n3. Community: A library is more than just books; it’s a vibrant community. You can attend workshops, book clubs, book fairs and lectures that foster intellectual growth and social connection.\n4. Empowerment: Knowledge is the key to empowerment. Highlights the various educational programs, information literacy instruction services, and career resources that are available at the Learning Resource Centre.\n\n \n\n\n\n#### Learning Support through LibGuides\n\n*Jane ZHANG, Reference Librarian, Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nAs a common practice among libraries, LRC makes program guides to help students of different programs to learn about library resources and services related to their study and research. The program guides enable us to further consolidate our collection to the requirements of program syllabi. Previously we stored program guides as PDF files on UIC’s Moodle – iSpace. With information from course-related books to databases to library services, a guide can be more than 10 pages long, and not very user-friendly. This summer, we officially move the guides to LibGuides. The platform provides us with more flexibility and possibility to present library resources. First, with the “page” function, the sections of the guide are more visible and the organization of the guide is straightforward to the users. Second, LibGuides allows us to add more functionalities for better user experience, including direct linking to the resources, the support of multimedia contents, adding notes or contents without disrupting the flow of reading. Furthermore, the guides are cross-referable, allowing the library to build a complete information literacy program to facilitate self-learning.\n\n \n\n\n\n#### Practices and Challenges in Academic Library Space Projects\n\n*Pin WANG, Team Leader of Library Operation Team in XEC, Xi’an Jiaotong-Liverpool University Library*\n\nThe poster looks at the practices and challenges in academic library space projects. It consists of 5 parts. The first part identifies the user activities in the library, such as collaborative learning, individual study, library classroom learning, socializing, events and exhibitions. The second part shows the functional spaces in the library, including learning commons, group study room, training room, reading pavilion, research commons, outdoor area, exhibition area, etc. The third part summarizes the most recommended practices of library space projects, including communication between librarians and users, frequent meetings with related departments, visits to other libraries to find out good designs, etc. The fourth part tells us the challenges and solutions, such as noise reduction, seat occupation and power outlets. The last part shows the future opportunities of academic library spaces. With the development of artificial intelligence and education reform, academic libraries are facing their challenges. In the future, the library should merge into the innovation ecosystem. Space innovation such as demand-driven and technology-supported labs to enhance user experience may be a very good start.\n\n \n\n\n\n#### Professional Excellence: A Library Assistant’s Growth Path\n\n*Cai YAN, Library Assistant, Duke Kunshan University Library*\n\nThis poster will share what professional qualities a library assistant should possess and how a new library assistant grows in the workplace.\n\n1. Learning by doing: This part will share some examples of how a library assistant learns from doing everyday work.\n2. New library, new challenge: Moving to the new library also brings about new challenges. This part will share the case of the DKU Faculty Works Project about how this display project turns from proposal to reality and the constant process of occurring and solving problems.\n3. The nurturing of leadership: This part will share some experiences in training and organizing student workers, thus shifting from the role of a follower to a leader.', 'ref_doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:75b0644f-1aa4-48e9-8944-0ad15f0edc50', 'payload': None, 'score': 6.389037709579455, 'document_id': 'index.html', '_node_content': '{"id_": "75b0644f-1aa4-48e9-8944-0ad15f0edc50", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "152dfeb0-eda7-4982-885e-b8bd274fd1aa", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c646a76d-1b42-402a-a04b-29eeefc6ee86", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x03c\x05?nTG\x13\x0f;1yӼR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 6.389037709579454, 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 6.389037709579454, 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -[2024-11-21 13:37:35 +0000] [1108995] [ERROR] Error in ASGI Framework -Traceback (most recent call last): - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/task_group.py", line 27, in _handle - await app(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 51, in __call__ - await self.handle_http(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 83, in handle_http - await sync_spawn(self.run_app, environ, partial(call_soon, send)) - File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run - result = self.fn(*self.args, **self.kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 113, in run_app - for output in response_body: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wsgi.py", line 256, in __next__ - return self._next() - ^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wrappers/response.py", line 32, in _iter_encoded - for item in iterable: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/flask/helpers.py", line 113, in generator - yield from gen - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/backend/agent_app_parellel.py", line 47, in generate - for response in responses_gen.response: - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/core/dspy_classes/synthesizer.py", line 149, in __iter__ - for r in self.llm_completion_gen: -ValueError: generator already executing -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{26337 total, docs: [Document {'id': 'test_doc:029cbb7e-f1a5-4110-986a-a3e034b12219', 'payload': None, 'score': 64.9707281433182, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '125074', 'document_id': 'd4a4e28f-068d-4cab-987f-3777c925b71c', '_node_content': '{"id_": "029cbb7e-f1a5-4110-986a-a3e034b12219", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 125074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d4a4e28f-068d-4cab-987f-3777c925b71c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 125074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html"}, "hash": "87d903172cab5e63e588acccbf6904d54b12405998aab4878b57214177366ebf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "04107d69-ed36-45fc-b320-a17a94d6f00f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 125074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html"}, "hash": "b1be4810da2427265981ed1fb15fc5a09284ae8b041afe0af7d51b79d0a8bdc3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2db43102-f6a0-457c-b556-6ca9758d60f2", "node_type": "1", "metadata": {}, "hash": "ba835fc2cf10554f68e9b2336d3d76a01ef0d226a728caece880f882f6e702f7", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9861, "end_char_idx": 13788, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html', 'vector': 'L}13`Γ\x12l\u07bcݺ`2\uef0d>\x1d@\x19A=\x11\x15;#\x13Z+\x19.E$7;\x1cS\x0f=8\x0f3np\x143+\x1c\nx=Rs\x08=:\\05i2=MRźDi=\x1e<`հƲ\x18\n<\x01C_^:e;|h<\x0c\x0e=<\x7f&@\x1aa<50\x01\\0FR n=$;I\x12[p\x13\x1e+\x05:L@=/`i<Ӏ=}G`μ|!\x17<\x19 <ݽd[/<\x0f#\x02\x00t=\x18}ټ\x0e=F2tS\x14OB,:ۆ<\x04\ueffb\x16.\x04=;uM<\x11<&8<Լ\x16J<<鎎B/g\x17Ȥ6<)\x12W<%+E;\x03\x04;5V=Bz;\x11plM*\r\x06]3okۼU\t\x1e=\x18<`\x08Z+;&BKF5Ț;G_0\x14=HdtTټ\r&< ;\x1alC=?=~\x11\x1f5ֻ\x13\x0f<&#I=Z`\tխ<$3e\x7f<&B;b\x1a[M|=";N=/`<$\x064p;;U<\x0bq9{x\x14M-;\x0c<ǀ9\x14\x05=\x0b\x18;\tH<1_܀;\x1be;\x02=ϼ\x1fH\x020=)9]ZŻ<\x15\x1dN<\x1dIX&;rZ=&%|!\x01^\x1b#=\x02wF\x15o:8ȼɽ=\x03V<\x03[=u&\x0cA^*fV\x1b5=ʻw-%="=:8*f\n\t<(dUN|;O\x19=\x18;"AR\x12"=m\x1a\x14V%5\x08=G\x05\x7f%<\x1a?˼\x0b=SvlǼ<;\x04YXw<;&<|&9\tr\x1f1;ۻ<\x16\'=o˼)Kq<|A;<;lM=}D\x08z&9Z$*x̶]r/T\u05fb\x06hPT=d%=h\x1c{R\t ƺya(\x11:=~䇻V\x06;VgOn9=(d:Ԓ(+9\x06k\x00Q?a=ju\x1c\x1f=*\x15\x10\x16\x15<\nzw\x0ef==49Az/-Tҭ< M[<\x01<]0r<\'o\x07&\x13\x0c)Aub=?aȺ)A\x07ΫSoPpM[=8xJ<\x10<7\x1a<^;t쏼sk<ݼ\x13DO=I\x11=L\x0c<\x12=x=\n-<<<*\x1bb|=(8\x0f<6<\\;f?=\x04=\x05i\x15Ol;\nz8P^^0*\t4E;,\x140VB\n>= ۻ;\x15=?\x19;+qX=ą%T=\x02:Ģ<\x14SQ;]<}\x05\x0fW47|\'=gAE*:ϘO p="<_\x0f=\x1d\x07=n<8g\x1d:\x13\x18<\x00\x05Ik\nv\x05=ż\x1f\x0c<~\u07bbBkHD;ta:L4\x14\t\x1cO<\x17\x003\x1a\x1d7\x01>.\neY*=N=I\x05\u05fa+\tV9m\\<<[<Сn\x1d<\x03\x06%\x13<@=\x03<\r\x0eNq}\'\x1bw^N=>aP=鄒`US\x1dSL\x1eh\x14;\\<\x02LXJUV?8ɥ<~ϟ<\x17=Xb;0\t\x15i\x1b= u!;\x10<%|\x1b\x1d\x00;\x14=\'^jA <8!1鄒Y\x1cdu}<% \x126p#&S=" \x12=\x14\x109; ;W(Ӽ̢;;Z0<>9KY\x15v\x0ci7ۆμ\x11\x0c=12?)7dVerjռ/6A7\x19<"R6;<=z\x1dS;\x15t9s<;ּlihizL\t\x0e\x01x<͝Ҽ\x11\x7f:\\|Fϭ\x1e漵J=eY*=<\uef04_;\x14\x17=i7 u<|s\x1d=̢<_\x0f=\x141\x11=:\x14":8Rfo;\x15}sg\x0e$<\nm\x00\x10=m!;B\x11<\x17\x06=0GJ;bb9Vh\x06"\x1d=\x1fA;\x03⼹(=6ż7F<-\x1b<:9Xٜ,d):-\x120T\x05Q?z\x18;\x02=\x05TbJ\x00<9a<<\'%\x03K8\r\x08<\x0eh2<4gR=\x04\u05fbM\x02@Cⱼ&м${$RI= 4;Ҙ<\x1f\x1a\x1f=X/K_\x0ehߏ\r=ٶ<5+;,X=\x10<&\x069=\x01$,0\x0f=PkUm@\x0bx\x07=(."ʺ$<.:缅q=<4o;C1|<*a<6;)\x0ed<\x17_L\x0b<\x1dL=R]+<>7R]+<<>=xrϼ7\r<\x1eX&=<\x01ʟ.\x04\x1c=\x1fr<\'F{:\rk1aB\\(-0B4\x10<|\x16;\x17F{\\&|\x16=`X=hJ<)j6b\x02=(껲{[/eJ/g\x14S\x18aa:1~\x0cP64kn¬<\x0b\x10;,n!\x00;9 H<\x10g\x14<\x1b;Ƽ?=i\u07b8;r#uu{ci<\x14<[v;\x13?=\x12\x13=#h\r"C=;Ԯ\x1bi;B\x19t=w<{\x1bXAi\x1e=E\ry<\x039*\x1d`<\x12[<Ͷ;{\x1b|9<\x1b9k\x1e7\x03{=$G\x04<\x01F\x12=Y\x06\r=yD:\x10l\x11<\x12<黼e3P~\x10r2Ы<\'#<@\x02;AºɁ<\x04<$\x16<\x154-\r=Kq!<0l< W* =&=\x19=~<(\r=VLц\x18I=ޛ<\x11Z\x13(;;;P6\x15;eO\x18\x102o\x13\x7fdˮ-H\x1c\x04iB=\\y<=c\x1cv:\x05۹-b$;im\n\x07=<\x15yUt;ױ;$\x12=~D<:^e(I\x04y\x19\x03YL:-5;\\Cq;\x05;\x1b\x10;ȼ&U\x1cVpG\x15ȿ)=z#:\x0c\rC<֬ hlM3R<\x1d\x1d8747<<䓽C\r\x15<_+炽U\x11;\x1fqY9<\x0e;;\x0ed]L<\x01P;\x0f\x04;|d\x1d=\x7f\x1aDZ<$<>nG}{|Ȼm\x1f\x00yl<\x10w!9T<\x1a;<#=:\x1bt5<\x7f9-\x07=d<){ƶGd 9=7R\r\x00_;\x0c(=B6C;X_,\ueef6/;;/\x00;9=\x1bH\x06<\\<\t=\x19(I)=\x0b<\x0bl\x11<-\x0e_uU<\x1f\x04<#;\x0bsy<5:즤;r+!=Q<+\x0cʼ\x072,?p\x02U\nRl=tzּw$<5;\x0e*\x07\x1dWǝ\x0c[N<~_4\x7f\x11<0\'\x07\x05\x18=BF;<&,=$\x12\x05H_z6<\x13M\x06\x10:Fy\x12\x12;\x11\x02a\x10,=\'aԻ֬<;O9%\x1f\x07ʼ\x10\x0c\x14\x16Ee\x0b=19=\x0285<\x13v<#h\x14\x1f=R:f:eK\x18|ռ<4\x04qѻ5P9\x7f0=\x119G\x15~"[q\t<\x0f=>X\x0b:A<\x0b\x19<|CP-<ؼ"=]L:2Fy<\x0c[N<\x15]P9<]*,n\x0fJ=\x1b\x14;1\x05;:]+F\x13=M j"ؼ\n;c$=\t)\x03=X}\x04=&\x0c!<\x14p\x04\x05\'\x1a@<8;fʼ%\x7f\x02F:O?\x01=^;;-O&\rx\u07fcdŻ\n\x00<7\\<;\x17r\'?¼w.F\x00gpg%ι\x1b;=&\x11$:i\x06)<\x1eļ-OE<\x1c\x04:\x0f\x10̈́< ]:O\n\x19(\t\\\x14)d\x16=*(\x08\x18tv(\x13=ھ<\x12\x0eƾ1/|kL<@<\x13O=\uf05b\x17;2\x03X#=7\x17\x16|T;r\x0cCػUf:K̈́;\x03pxKE=\x1a\x0e=1\x10<@<\x12\\<9\x1a;Լ\x1ew\x16:#<\x08=\x16hѧ<9V)<\x03b˽Mh`ѐ\t*<\x0b\x0b=!=Pd9-r^\x1d<\x1a;\x16=S\x07069I!n<\t=5<\'ɻ$<+=[ƍs\x1cJ<\x0e:\x16<\x0b{Ra;]ͼkl;VȽec#<|~K\x01Z<\x060;ߛӼL<\x01e9%9;\u058c=\x009i&\x0c!\x0ft4<\x11=QY\x18\x0e\x1eʫ\x1d\x1c4<\x114$=\x07\x03=Y\x02\x06<=b]=1<[+=3d:\x7f\x16ÕQ\x18cE\x07ϻlD9@=?-)Ҽ\'EӼ\x01P%]^=C4\x05\x02x=\x19\x12P=<\x14<\x15\x0c \x19M\x0e<\x7f=Rڼr=\t<\x02#=G;\x1f&:0<;o(00<[#\x06=.\x1f;^b\x06\x02<@EƤ<\x07n\x06=\x1bn\x07=\x1e="!<8\x0cۍU\x01W<2:x:9\x15l̟;{\x1dV皑l:NQ\x14\x0b?:\x1f<\t^\x7f\u07fc\x16\x1a&=\x0f>=7Ƽ\x1c<\x13\x14^\x1a\x0e0=g;<=R*|=ܷl\n[V\x0b\x01\x14-<<\x11n!;Ng܁<\x14-\x12=O<\x0c3;|\x1a\x06\x0b\x03\x01:\x15\x03;ߗl\x06\x1d x#=\x11\x0b 9<<5c#\x13{<\x16\x18һ(<\x1e<\x1dV119]\x02d\x1f=\x7f_=\x05!=\x7fBz?u\x04=\x13\x1c\x19;4\x055<мml5t\x01=\x1a\x12伢?Ԏ\tѺ\x7f=Qw\x0c>\x07\x0b7=\x02e\x03ȼ)Bռ4<7<\x14-<$<\x08\x00(M\x11ѢۍU9==%ۻ\x08TMm\x17&<~\x0b\'\x7fNU̼\x02=<\x05#惻\\y\x05\x17*ػ!=\x022<ӊ\x08<\x1f+0\x7f\n=\x1e<\x1bKQ<&F\'L\x05\x1f\x0cO#\nE%>\x04@l~\x1f<\x08oK`Y<\x07ͽ=f\x1c<09`=h<*$\x1f<\x07\x08\x17\x1fM4<<\x1290<-\\s<><\x02?r5;Hh<,\x13*<=\\,=-UU<Кfo<=f;\':<\x03s)=zU\x18\u07fc\x00<\x05Ɓ<1»\x10\x18\x00=<\tmQ<\x1e<\x1fw\x18%<Ƽ2B\x0e\x10i]=]<\x02\x15rȝ\x08;\t;gܻO;̼d=\t\x1e#=*T(l~\x1f=\x0fD\x1a8\x1a\x1ej6\x17Ο\x00[<6_D=/Dּx:<\x0b*=Ğ4\x1dt:#\x07=+\x1f\x1aK\x07b\x0f"mw̅n_[=3G=T\'\x1bY۶2<]ιZ <7Ż|<|1\x06Q\x03=\t=\x1cG\x03=7)%=\r(_\x0f\r0ͼʥy=3=f\x152C}>2qQԃ\t<{Y=a<_ۻ̠;\x05)8\x14\x17I=Sp\x1d4\r=6xB<=x[=G;\x11r:{-¹<\x02g\x18\x066GM<\x1e,(\x18;S\x05=:j<\x0b=U\x15*<<[=~4*R;\x0b*l=ŹJd\x0b<2q7<\r\x1b<\x7f\x1d=C\x16i<\x7fԼ\x1a\x19<\x02܁;jщ[ﺌ;8\x0e;\ue13dp.6=6ðԐ,:v˿8<1\x13=ܤ\x17\x12<\x06z=d5F\x7f\x0crr!<ۼļgC_=\x13\x07<\x19M%\x11`g(=\x06 ;<ׂ9Լhd{\x0e%\x15I~Vu< x#$kc;.\x07<\t=$k\\\x17\x0e<[*\x10=2|<\x11ݹ\x11\x15\x1c\x0c<\x0e;\x17\x7ff\U000859bcn\x0cܻ|\'=\x7f=\\\x1a\t\x02<\x1e<\x13X\x01g:B<:K<~\x01@\x1a=\x12\x01/1ՒƼ<+;m?=Z껹43\\\x08`\x06w\x11i|=\x06=<|a<\x1f<:,f\x1fZ\x1bW{}8\'\n"[:k<6={hm/1a;`te\ra\x0e]2D=\'>\x0c=ܪ:\r_<|*$c\x10\x08=~Εe\x19\x15=}83\x08s=kĺ$\x1b=(hd=c˾<__\rn<\x02;Q:!g<;59.\x10E=J;g<|o\x1b\x00\x1e;\x7fǺm<\n\x1d-\x05"R*ݼɼ\x01\x15\x0c=\x19M\x0f\x19X\x15=I<ۆ;|\x1e2y\x01bp=\x1cغd\x0c\x11=a"LƗ<\t=C7;=ʇ;wt̼0^=0r<-o<є\x08=qϛ;d\x00L;Uj\x10<\x1c;\x1e9-=|RJ\x14ЛnѼ;\x07mMJ\x11p\x03<ûVL:\x1aH<4-&\x11\x13\x12:\x0cùpֲ\x1aC=\x13\x07N=ݞF;y\x01{wB\x15J\x12\x05`\x06\x1c:%=\x1aü<\\<\x02<;zk|\x18\x0e伧\r5XX!b0?J;"o<\x1a\x10#<:IVq\x1c<(̼\x16\tE<$=w\x16=Ƽ [gDG\x01\x01eʖ߫\x10Q<\x1dn<(78l>+=8&׆Ɋ;=i_<*I\x11<3@\u070f8<\r뜼J6<9;=,#Y=*;\x0c<<\x033Ҭڽ(Dch\x14A-o:\x04G$\x15\x1d|=r;5\x07`=?J@<+}ڿ<»qz<\x0ed<*w;ص;!@\rH>=\x08ȝ+\x1c:#,<\x1b켗b\x0f\t.hs=\x19Kz\x18=kd<~&t̻;\x13\x1d=g\x0ek<\x1b4?w\x07=X12G\x19;W=A+\x18=\\6f+;j\x05k\\D\x03<1N\x86\x04=\x11j`<\x12T\t\x1f<0\\<\x10ѻ7Sϼ&\u07fbL\r˼j$;v<\x1bc=-=LTZ=(̼<\x19\x03>E~垼Ք2=b\x13?;tC6C\x089Լ^\\2Z<*\x171;<3^h^a\x0ezP%;%=CN9O!{H˻oke\rPUˣDTXS`G/=o˻\x116=G/<ؼ\\\n=H<\x00=.)nUW<3C_;\x1fϻ:QV\x1f=CNՂ.O<3\x18<\x0c;\x17<3<|=0G\x10Y-; \x12F;YR}O<<~ڼ\n<\x18\x06b<:k\x1dc\x04(p=ޤ<лDPp;Ļ\x04Qi"<\x0eMB͝=\x18eP< Mw<5=O=f^D\x05Bظ;bp\x0c==<\x01\x1faB823*9<\t\x01=ڧ\x17`BR=p\x0c\x11&B ۩μ6\x085ȼpGԆ\x0fk\u05fcûiG:=*̼\x19|bY-%\x16\x04+.=(\x1a\x1f5n`Y\x1f<\x1a\x08\x0f\x0bչ=2;V<\x14Bo\r<9\n̼r\x15\x02<+<%A<8;\x08><6\x03=:<{\nt=#[=\x7f\x05R\x00=(V\x1a;jB;6\x14\x1epм2¬o\x03=<\x0f;z=`K[<}~;_1<\x07]\x00.=:\x1b#={})<\\pƻC<]:;y;7\x0cG=\x18\u07bc\x06$2*o\x02ȼ\x1e\x1a\x01=w<^F`=o\x172$=\\\r9=pec<¼4\';jt:=W*ڼ<Ɗ8y\x04= *\x10;0/\x03=<)U|˼\x06\x06=\x1aluFO\x01f:z8Ӽj\x15;\x079JN\rq\x13*:5<@z<\x15)=<;\x0eP"Q9\x1d*[\x7f%;y)\x18<3<.\x15Db\x10<\x0f&=o^\x0eмL\'l2w\'Ѽq\x16=¾zLV;\x00W\x15|<<\x1c<@%3o;s\x1666;igmm|r<üi+1=<\x7fc99@\x1b=fЍ<\x0fi!\x17=H\x14G&\x1d\x1dOTP!\x17>5=ǐ<\x17\x04<_;t(ɼW<\x0b<\x0fm<\rؼR^=т9f1#1\'=\x1bG4<ƍ&=:D<\x01D}\u07b5\x08<,\x04kM,r\x1dECl\tj=\x06\x0b\x07=I\x125=\x07g\x15}r\x1e]<\x1a[j;5f;s<ɏ:T =L\x08<^\x1ew)Mx\x19h\x07__\rW:\x10Ż\x7f<0-=\x11\x1b=kP;\n\t<_Ό5gלּ\x06x<\x15Z\x18\x0eZP\x18HjG=×4ڼĒ\x16MƼ8=ir!=\x0c=ГG: ;5*>;a\x03I\x07;g\x0cf<Մ;ߊS\x04pp\x02E5fr=NWa\x1b\x01:U\x13\x00L6D<ļ\x00\x18q=N\x05v~<\x0f,=[<;\x10\tջ*=I1<\x18"`9!DgL;/\x01=cF:R\x1d<\';<+\x04Bɭr\x1exW<,2ռZ\x18 #%>a;B?Gd\t\x11=0\x02\x03ckJ\'`i<T\x0c\x0f"<[9\x03;MO\x06K=N;;vd;\r)w\x15=}S<\x18\x0f:v\x14>ٺv]<#<}#<[\x158\x03!J\x12<Ľ;C<ɡN\x13L;\x16u=(XT\x11;,\x17;\x1d"Nъe<(X\x19<˯VV=y\x14=\x07B\x1f\x15=qX<\x1d<@n༢U;xk6\x07QN\\`Jk\x7fT(D\x1b=y\x0c^Z\x07=\x12W);#\x10<\x06=\x07\x00;V;N\x11\x01;\t\'#\x1a;Լ {r<\x7fT<\x06KU<)@=zݚ=\\e:/3u=>(D\x03u<\x0c\\(<%\x11nw89x3\x11<F;A:W\t]<\x01\x16R?j=aC<\x10+;۱;\x00!;[=h<\x08\x0c=\x0e\x1f<\x01g<\x04;Ƽ5eO,g\tbZp8=<\x1e\x040y<\x0b<%G\x19<2<:i\x1b\'t\x06\x003-w\\Pϻ6\x07=(\x14<9\x03;\n=듻?:~Bf;:J\x7f)k;b=);\x1e@<(k=xSM\x0et\x07|9\x0f\x18F+q<8;\x04\x0e\x0c3[\x06=-=\\M<\x10O;V*\x0b|AtIeHR<4;ſA6ט\x06\x08=ȜI;\x07\x1d \n3 <\x1f\u07fb,\x17}\x16<\x10(==٢\x123\x08>_=õ5M:K\x93WLd\x0c; /<\x00\'\x05N<2V\x00=L&S6<\x0192]\x0eήʼv=;Т0_=<]\x1f=r\x1b=ي:O)\x14<\x0cZ\x13<+\n\n=s==N1Qs|\uff00^\x072W=U];|HT9\x17{\x17=F뻐\x0bQ;#1;\x0c)0-AD\rI;o*;ct\x040:X=+<\r;\tCxBlBd<&=(ԙ:CB<+<<\x0c<15\x149νw^<8R<9EȊJ=V\x17<<\x7f>ZyS9 +`:)=ĽJ{K<+`]@;-\x08G\x17=k1<\x04۞pj9<\tC;rPd[\x0fV\x12\x1a\x07,i%F.;wQ=v#<{=Q;w^Q;s,<\x0c;nY̺Rȷ\x1c<[=\x18\x0e\x1bm\x05=A5e?;ּ6;.R;N<6ھy\x08\x02XǴ;|e>EN;3CB<:nI\x1b|+;\x01ם\x04=f\x00}ힼV:\x03=\x19>=,\x07r&S:/IFd~ؼ\rͼD73\r=J%\x02ꖻ\x17{\x17u\x01<\x1d==-\x0c\x18XX\\%1\x1c=S ,\x1fC7Kzu<\':\x03\x0b{!\x04pp!\x04<.w;92F\x08ƼI\x1b=b3;\x18\x0e\x0e%abl6<\x01\x16HL%<\x13;P5\x03=\x0e^+<^\x13]?w81=t;l\x16\x1eqD\x1e\n=Wx;6<ޔ\x12;\x00<\x04";\x15<[D=}jp;bl6\r~v=U<4\x17#\x08F=\x14ļ;i:<\x08-\x01T7\x06%4=<\x16Q(T8\x1d\x16s!@=t)<+;_^=\x07Z?\x08\x12H\x0f;G\\G^!\x06.\x7f3=W,;_,@=]G;Z5`<]\x1b\x150*=!WȼZ<._\x1b;\x06\'U=Wj\x0c\x16/a<\rE<\x06I5=\x00oD<%7e<+=<7g\x05<\rD=qݼd<\x03T-<\x0f=:+\\W\x0f<8尼⅞\x18X=o4V2<1/;\x0f\x02:\rG<%t:%c\x05[\x0e=n[湟V\x176/hـ5=ح\x0e=B\u05ce<\x149<\\<.ʣ\x17P7\x1b;T[PS\\=U.w&hkp=w<(j%=\n\rG\x1c.;92\x7f=9:\x10<+_`=~\x04\x1f2\'X<\x04ʓ;N\u05fc<(\x12\x0e;\x07\x1fB=TL]<\x1d};%=;>%\\ȱ<; .˻\x04V=H.\\!\x10e\x04\x04\x0f#\x1a<\x03_?\x17:ɗ\x7f:⳼z<\x1d\x18v9W=0X5\x08\x0f=\x02T^Āq;n\x01\x1aJ\x13\';?N<67\x17o\x05/9\x18=K\x05=\x13.@=ü\x19Y\x067D<-\t=9|lN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 14.485480856092394, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{10899 total, docs: [Document {'id': 'test_doc:97abcd5a-3c40-4ab1-a98d-a5105ee35648', 'payload': None, 'score': 399.81140087234496, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3957701', 'document_id': 'a42439cc-cd28-4b40-9c15-1a45e252eefa', '_node_content': '{"id_": "97abcd5a-3c40-4ab1-a98d-a5105ee35648", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a42439cc-cd28-4b40-9c15-1a45e252eefa", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "hash": "8de2ecfe8060cb832fc6a20f3d9e7e0e927fa0640e1b10cb5bc70def4616756b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3886, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/ug_bulletin_2023-24.pdf', 'vector': '\t-s+\r<$\x1b;\x02:!/5o\x12,<\x12<8;\x0b\x0b\x14\x06{/:x[vf TSqywJU$D/;ZQ6R\x0b=@\x0f=\'ގ\x1c+Bv<;<\x0b\\(:\t|~9ZѼ}:G=jMg:Wz"a\x0b\x14\x02Pr!=紋<\x0c\\=s2\x0e7d<+U\x10=\x1a\x02jռ\x16t<Հ\x12,<\x12Lnq;\x06*Jxs\x13\x1b45C\x13M(;#\x00;\x19js:N\x12})\x0fFh<\'\x1bw\x03ɭ=k\x15v\'Ӟ<\x03)N;_"=QW\'\x06=z;\x16<2U=\x1cй=3ꁼse<$<+}]c(=\x1dYN\x05p\x1df.\x01p\x1c=\x0b\x14=vM:q;ӞT\x18N\x12=;X34\x1b<1=\x1f\'i=\x07;+D6=2o+q`\x15K<˼Actg;;Cx<\x1f<\'\x06$\x1b\x12G˼\x03$\x04T\x16^g<\x15W\'\x01\x0b\x05V8q<\x17\x18dAGCH;>%!һ*)\x14\x08=\x10k\x07ϼゎ<\x07\x1c"Ҟ<\x1eT<+wo\x03nE\x03/\x0c ;ƈ>LL=\x14L=\x1f<\x0em!=\'i=TM<0P\x18B\u05fc\x15\x06ŖR\x1ev<@A#<\x161F\x1d;\x0em<\x01ϐ`J\x0c=(\x1ba!*\x17=\x05t96}$=ඥŘ=\\=\x1d\x1a6CmTbY\x10j翻&ݼ\x07\x1cA\x0c1=F睼<<%<\x17?I=\x1eü~H;\x1e!2mCc\x18=fɷ<-2\x10\x10K1\x02\x173ӼrH<\x7f\x0634=e=4;(tNQ;6WQ}=u\x19(tNk٘\x17\x00=VDž<\x12><1\x10a̴\x1aU<{(1<\x14W<{<*\x7f,\x15=]S<\x11Z,%= ;\x0fiܰA#<$\x03=\x00N<.\x0f(\x16=<< ;=|ռd+=\x00J<"+\x10t;\x14QE;$>H<\\\x07\x04\x01\x0c9R\x1f;[<97=/Y<5A\x11̼s;z<|\x05\x1d\x07b\x03\x1d<<#=\x01\x1a=D{c\\\x17;Ji|\x16afИ{:\x169=\x12\x0cJ=vl<[C93\x0f\x127(=?\x01\x00=\x07\x1bni;\x12\x04d\x0b\x02<@\n<\x00g\x14\x06;\r;FA\x1a\'9Ҽ\x1fk;!=+N+Ua̴Jg\';T=Ứ7ͼU\x08o<[\x16<[;-坻}\x1f<\x00D$;DD=\r^<`弾\u03796T<;o,<\x02Q=d+\'\x11=7@0;(v@P=+U*=ۇ\\wi\x1fҺ97<}ŀ-\x1dr<\x1c?엂<6=?Fh\x1fC5^\x10K(1Z6<\x18;,٤K<\x1e|H)\x1c=\x14.3FCT<^\x02fD\n,=Ϊ<+\'<\x1d\x04uq<\x05?\t\x04=#\\<ؼݼBLIo\n\x16:\x11:=^<~v=67\x16\x0b=X=O\x01f>V\x01V~\x07.C\'=~t獼fk<\x17h<6J\x19=[|O\x11\x13<\x16;\x02?=%4D\x10\x11Ꚓ[3=C=Rr,r ּ|f\x134=\x17ъ<*䭻7;4)\x1b=4\u05fc\x04\x0fp"\x0e\x00<&b\'\x1b;\x12=-y?n\x05I9;ǺE<\x06L\x0e\x15g]ꓻ\x1eQ<\x14黳D=\'=\t\x16B=K\x12Vc+\'<-Do: ʼy9ɺ\x03u;ER\u0558\x0e;\x04t9=w\x1a\x00Xϼz;\x10oW(?n\x08G\x1bL<\x03<\r2=\x7f2\x07;ؼgTn\x15;\\\x0cF!=Y玻9\x15v仿w<\x0b;WcH1\rU\x191vݼm\x07Lk)T`\u07fc.xAt_,G<\x10=\x13\\p\x12a\x11ƿ\x1c\nQ@j<%p\'\x0bӼj\x01=\x0f0<\x031\x02\x0bºu\n1N:ZB\x185pEK(ǁ<%\rtRZb%=RwJB<ѫ<|\x19p<\x12<Ć}\x1e^ۿ\x0e=N;K\x08\x7f<`&<;<\x1c8\x07%nD\x1ac=bU;j\x14=Rc=;Z`Zh:yN3\x13<-MX <\x1d\x18I"\x16u\'J=U(\x01;\x1f=2\r==YغΟ[-:2\r;Cȣf\x02=N9%(<(\x076=I{\x7f%\x1f\x01ƹ<]λVe\x067;\x7fE\x08;\x1e\x08E\x03r\u05fc\x0f\x1c\n\x06=ƙ\x07ƻb\x0fX=3\x03<<\r\x05\t?\t<\x7f\t<5a=%\x17<\u0382;i<\x17\x0f=G.\x19W=x4=\t;\x01˯\x05\\wZ&\r\x00<8|\x08\x06\x02=0$v=(\x15cl\x02=ݻ\x02缫)\x1bR;+\n:B0}ƶ˼) \x10;\x12\x07W2Go;\x0fI<\x08Z<@eB<@1rp<\r:Ļ\\\x02(\x02(ۼ=\x1f&=UռH\x10vaՅGH<\x04hm<\x16<<;=\x00<\n8::\x0cÍr=q>=RwJu\x07!\x05<6\x00<ښL:϶<\n\u05f8\x07<\x04\x11";QE=;x\x07<<`"=\x0c,\x05\n-֞@C\x0fqI<ҠNL\x07=\x7f%:nмAcM6<7Յ\x01Qʧx)ެ\x1b=\':\x11\x1f=Y[k\x06{.v;:%Э;$t\x07\x1c=F*z\x0e\t8\x1d\x18\x19<~><\x1e\n;{\x1dڼ|M0+<=R<-7<\x03=.\x05\r=R\x0e\rR<=\x03\x01߿\x16R=A<\t$P:_=\x15\x16=l\x1dY-<\x01Q)+%=šrٻߦ+G\x08=J\r\x1c;dZ;\x008̡<[\x7fy;X\x1dF\x0cFq\x04\x15\x07;0)\x1b|\x19\x13;V4=\t\x029z<;"; <ސ<6l\x1dKOO.\u05fcT\x06\x0e\u07fc\x01Q\\ؠ<\x16i=\x1eu=\x17FE=၀Msr5<\x08u\x1f=\x04\x01U<\x1b*<Ɏ\x0f=fT\'=<[\x0b\x17ӂƼZgԼq\x0e=";P:=ǺxR?:N3\x01=Ӽ&V@\x03Q:Düt<~ӂƼE\x16=J.i;<(\x00<\x16\x14<< 0<۹<:È;ӱ.;\x00ms\n=~g\x04<;N!s<ĉ|;Y\x16j`\x1e;^<\x111=7\x05M\'<.<,\x10DO<', 'text': 'Professor Kisha N. Daniels (Dr. D) was the instructor of both EDUC 101 Foundations of Education and EDUC 204 Educational Psychology, the two courses I took in the 2020 fall and 2021 spring semesters. She adopted a strategy called flipped classrooms (Nechkina, 1984), which is a type of blended learning (Friesen, 2012) requiring students to complete the readings and learn contents before class, and have discussions instead of listening to lectures during class time. Before each class, students needed to watch Dr. D’s pre-recorded lecture videos and read materials to have an overview of the class content. Then we filled in a note-taking guide to reflect on what we had learned. Finally, we attended the class to have in-class discussions, group activities, etc.\n\n\nAs a math major student, I was used to listening to lectures without speaking a single word for a whole semester. I had even thought about dropping this class after I read the syllabus! However, Dr. D’s class opened a whole new world for me. Since then, in every class, I would excitedly click the “raise my hand” button in Zoom—I could not wait to share my ideas in the heated conversation.\n\n\n**Optional Attendance to Synchronous Classes**\n----------------------------------------------\n\n\n2020 was a year of chaos. Coronavirus and the international travel ban are distributed to students all around the world. It brought many uncertainties to our lives: unreliable internet access, different time zones, infectious outbreaks, etc. The school year taking place at the same time was obviously not easy at all. To ensure class quality, some instructors took mandatory attendance for those who were able to join the synchronous sessions. However, Dr. D was an exception: she made her synchronous classes optional, even though it was discussion- and activity-based. I was wondering why she did not make it mandatory, how she provided a relatively equivalent learning experience for those who couldn’t join lively, and why almost all the students still came to the synchronous classes.\n\n\nDr. D believes having a certain level of flexibility as a professor is always difficult, but educators should still manage to do so since it is not the reality to control everything in education. Students are adult learners and should be treated as individuals. They might have different learning preferences and face different situations. Giving them flexibility can be a form of warm support through hard times. For each assignment, Dr. D prepared two versions (synchronous and asynchronous) with detailed instructions: if you can come to the class, then you can work in a group to do the assignment; if you cannot, then finish these sections of the assignment as equivalency. By doing this, every student was fully supported.\n\n\nAlthough Dr. D’s synchronous class was optional, it achieved a relatively high attendance rate. To tackle the low attendance rate problem, Dr. D invited students to relate their own background knowledge to the course concepts. If some students did not come to class, they may not have a chance to realize how educational psychology relates to their everyday life, and what their peers’ educational experiences are like. Once students agree that class is the place where they can learn more, it will become their motivation to attend class. “Students are adults, even my freshman students. They are starting to figure out who they are in the adult world.” She, therefore, lets the students decide what is the best study strategy for them.\n\n\n\n> This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9aefe5bf-1e1f-4b31-ae11-5874c5393dbd', 'payload': None, 'score': 7.513825049525535, 'document_id': 'index.html', '_node_content': '{"id_": "9aefe5bf-1e1f-4b31-ae11-5874c5393dbd", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/lile.duke.edu/blog/2021/12/flexibility-adult-learners", "filename": "index.html", "filetype": "text/html"}, "hash": "c12bb19afe9091cf6fafa09e70f8b388092e96d62da508203161dace2cb3af57", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a427db5-ac02-4ad5-96b7-8dae766073a9", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "da61cf9bbb421fc985a175359a38bfee69742fb1d22c5e91ab9fc51a580553c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28a6432f-f95e-4e16-97a2-bc96b30e43f2", "node_type": "1", "metadata": {}, "hash": "734cbde4b860d7eb88633b64f3ce5635c61c46f1eee2dd8fb3ea547d481396b2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '@..\x1a!>\x02L)=<¼LR9"-=f2\n\x1f8;I\x13\x06̼\x19E;ǁB=^\\"Ⱥ)=)@缚RV\x1bJ܋g\x1f\x18e\\s=|\x0e<\x12\x19k 0h;o\x06\x08=^`:62<\x0eM\'=<\x0b\x1b_=59?/\x05\x1f[=I\x04\x7f<\x0b\x0e[;\r Qp=\x1e_+DySz\x14:D4;e:<\x15uN=={;\x1eF!8<{\x15\x03J\x19\x0b\x1c;\x12=!<+DP̥,\x10.\u07bc+-<1\x15=\x00k<\x01=\u05ce6-\x11֚ȼ0\r`;nB;\x1e\x19<Ѝ;]<*\t;\x1d*|$;^\x14SGJB)_\x05\'\x14\x03X8\x1c%=eX=\x13<{z=%W39L\'߷{:IC2=E(<\x1cAVR\x7f\x01KR\x02\'\x12<\x0cI>\x00\x19R<<^<@Pg#=C \x08=ߟ<.<һ`d#\x16<\r<-s\x0fϼ =\x14fڙ;\tB4<\x08 This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000\\).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:8164a0d1-1226-4de6-8d7a-39699df9bbb1', 'payload': None, 'score': 4.613388014540567, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2826244', 'document_id': 'bfe60902-d299-44d5-af13-f68c06604fef', '_node_content': '{"id_": "8164a0d1-1226-4de6-8d7a-39699df9bbb1", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfe60902-d299-44d5-af13-f68c06604fef", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "4423c15f0262081da99b5983d0c0d4888dd19d09a77408a79310122494d98daf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1101e903-21fb-4f1a-a913-cd4d0db09034", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "a0ce698216bb12351e6c53c1f0a2e4b69df29c33d5af55c6ee316510f7e616c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc4f1340-3c4f-489a-ad6f-ff61fc6ae5bb", "node_type": "1", "metadata": {}, "hash": "f086c88c19abfef10f0e7100cf75308dc71e1c1a8b0f65ac1fe88aa3b3693b3a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3197, "end_char_idx": 6819, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf', 'vector': '\x10\x1br\t\u07bc\n}\x19\x02JG<;JT}\'j\x16q<\x0c\x0f\x03!:ʊ\x0f\rnQD;?#M;O,<ⶊ<\x16q1<\x1e\r軛ٲ8-}Իg\x0e=\x080?#M\x17M4\x0c:Z{\x13<\x1e+!5(r>*x~=J<姻J:SVkB\x0c:=\x1d\t;\x00<\x04\x12s\tB1j=s\x195f=ӻ-<1GŒ:[.\x0cb =$k\x0bJ<\r=姼\x1b\x08<\x04)\x05\x06=IWD\x00=˼\x17o\x06+=Ą=\x0e/\x0bl,<_\x0b<\x07<{\x0f;Ym?l:=dp@<{<\tZ̼\x12\x0c\x03=\x1a\x01"=]\x0c:;\x05=ޓ\tf/y\'=\x1aָ݅\x17\'<\x1be<\u0602;A\x0b*a<ɳ<>\n\x15\x7f줼~+\x0c:R]=\x14\u07fc\x0b\\<ʽ\x07;k\x111G\x1f\x104jOn;ej0A=F];\x00\x1e;\x080"6V\rr4\x1ad\x05u/<+8;\\\n6=r q<ȝ\x12=\x15\x0e\'#=A\x1dⶊtlлS!m=\x1bU<2\x14=`\x1b8»\x1c⻨ӌ],\x13,&r>*"L<\t\x10d|\x0c:$:\x07<8T\x00\x05=\nL=lv;ќ\x12\x0c&)\x01oxE\x10g\x01D\x18\n:4Q컼c;\u0bfcч&ثF<⠼ּ\x0eO=ܯ;FV=\\<\x03I㼋7\'ٕ};\x7f 7=\x1b=\x02<\t༜뻘NmB\n\x13㣼fһ;TW5=\x02;0\x1fD;뼮<$;\x1d =>"=/"==\x7f\x19\x1fʼݎ廬C꼈\x1fLoU/:#t\x1f{=(#=-<܋;+E>;\\G\'x\x17\x13kΊ\x027s5T=\x1eV\x0e@\x7f 7IϼxI/ͼ;\x0f=[<-<\x06\\+<\'g;k6<3\ue63b\x13=u=\x18)b\U000bb508B>"=\t=\x1cwC=#\n;nop\x05;%=I\x1e=8Ƹ~vw\\Uȼb@z6Ja\x0fq1:țJ=,~\x7fȼ3㊻\uf7bb\x15;=`\x04\x06<\x02\x00E< “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom \\[when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs \\-animals – photosynthesize, so it is eye\\-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step\\-by\\-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:3813364d-5d0b-43b2-8b98-89f90953c7b8', 'payload': None, 'score': 4.544221536254323, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67846', 'document_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', '_node_content': '{"id_": "3813364d-5d0b-43b2-8b98-89f90953c7b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c67a53bb-8127-4a54-8b71-e1b38caa9ff1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "19d045065fa9deb404ca09df5d278e17246849ecf0ad229013a4f1b8ebdf6baa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44dee6a0-7eb8-4a9f-96db-c955c8a4af03", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "d32b9c44375b348bc666ef0aec15d9716110288a771b9adacf9715e299e14eb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "db799e37-46c6-4470-b828-20f113c1c7e1", "node_type": "1", "metadata": {}, "hash": "95ca862141792c058376d879a3bf777f6a55c3680aed266ff9ed2bdabe4d79eb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3981, "end_char_idx": 8579, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', 'vector': 't4-N\x19\x16\x04\x06%3\x0b;)R;Xv\x12@:\x1aXv4!&m\x08<(0j=\x0cr뺚\x00 \r9:\x03R=y௺\x00F\x1e<\x1a;;\x16\x02:->=ۜ<6\x11=VI,aK)Aнx<;)<;<\x1a,=\x08|WA<~y/=DI9\x04+L\\}=W\x1b<]üt\rxtR<\x1c\x17+< \x10\x1bP=<\x17\x12z\x0e<(0j:L\x03EZFe\x10h;WTb=Y<\x1e\x0c=\x17,;\x16%<<\x11\x1e8\n\x0c+\x12;\x16%<\x0e\x1d<^Y\x04<<]\x1aj<<;twϻ`?\x07p=JӍ;&\\"y;IwF7"\tgIw<\x1bw@\x1dP\x15E\x08! “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom [when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs -animals – photosynthesize, so it is eye-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step-by-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -2024-11-21T13:38:11.251556Z [error ] AssertionError: The number of tool calls in your plan must be no more than 2. [dspy.primitives.assertions] filename=assertions.py lineno=88 -Failed to export batch code: 401, reason: Invalid token - -Result{25414 total, docs: [Document {'id': 'test_doc:8745d118-8855-4f70-a6dd-53086aa330e2', 'payload': None, 'score': 30.95479015885819, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '606481', 'document_id': '4fb1f210-5642-42d1-831a-53f92e667688', '_node_content': '{"id_": "8745d118-8855-4f70-a6dd-53086aa330e2", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4fb1f210-5642-42d1-831a-53f92e667688", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "87ac1d3c110cace183e1cde6bb7c69f8a22d7dd10684f927b5763e29f618e239", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7e92b642-2a2c-4bbc-91ce-5fb57144c37c", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "2c5d8b42b665ac980937af682c9a50e745710c98c93af11165c2a7304281672b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "daf670dd-f0fa-4846-b35e-fc0bbda325d9", "node_type": "1", "metadata": {}, "hash": "caf9549fe9321dc41aaa420a5d387f812a6746fc750f6ec1772317c663d980a5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3815, "end_char_idx": 8704, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', 'vector': '"<;0K(K\x11̻ H4;.ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 22.017761321393312, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 16.909464721736892, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{43507 total, docs: [Document {'id': 'test_doc:2c4c81ee-bde8-49b1-8d01-2b0033ef4b75', 'payload': None, 'score': 114.60981431431884, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "2c4c81ee-bde8-49b1-8d01-2b0033ef4b75", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:26", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ine.dukekunshan.edu.cn/project/your-g/irl-rayray-cross-national-media-content-creation-i/n-cultures-through-the-lens-of-university-students", "filename": "index.html", "filetype": "text/html"}, "hash": "bc47c1f264d861136a121cdf3db84b9a96a9978021ec6b2a6b73b4bc30ad7a3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ae5a82fc-09f5-4ebd-916e-5e983441cb2e", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "c5a0b0aeb9b1d0b8e5a16916bc7ecc855065f27a81457ee096c8d326d3aa7f43", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b69bb5af-6195-49ac-ba00-e0d15f55fe3c", "node_type": "1", "metadata": {}, "hash": "55882c9c41472a69c8dc473d9af35114fdfc02a816745d3d00772647f92731f4", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'c*C\t$ݼ*\x16ݼ4;,l\x06\x1c\x07=jVW\x1cHƻqh:\x07\x15\x1f=WCb;\x17D;=\x0c\x0e\x01\x02&ϻyN=R/;Ż\x1c=e\x07\x1c=T\x196<_O;R=n1e;<\x06_\x0c=T\x08뼻:Ǽtm|Y:ԝ\x11\x00<߅<\x071=DV?b\x04<_~`ݼ\x0em;hW};r\x1f=j"\x17D;=5x=\x16c;&ռh`4=\x17D;$\x08%l\x03=OߛZ=e.O»7`мV;r=k\x1c\x0c\u07b4Si\x11S<ɼ\x1cR7\x0c;O`*=Mf<3\x07\x05:\x00\x15\x1c(=\x07T=T<)W(<:\U0007a4bc\x1ae\x08%9N\x03=c\\F=O~J.m^\x08WY:1\x08}%:\x0c\u05cbbFû\x070=a\x00\x08V(*~{<:<=4<=A<\x15-u\x101-x\x7faޗ<\x12\x19\x13V[\x10cR(qfKZ:\x0b\x06;)W:;\x1f\x0bEt<;,<:_}\x1f\x0b<\x07`]\u07bcv:t\x1e`C6ѼO#;5r=XH\x1cg:<%L<2fm3==X\x10"A;VjؼJ\x16=G\x07ir&\x04)=~\x12d綼^Y¼\x10\x1aqX<\x1d8(t\n紼*<:=~m\x17<{o8\x0e<3I<^9XA\x11g8y\x17\x1260d#\x17v=\x0c=kn\x17=6Ċ0\x04\x01=k W={<=\x0b\x18\x06\x03=\x0e0=\x0e<\x1e*$%,\x1c\r:JĻ+=L J\x10\x12\x01= g08Z=[\tm:\x16\x10\n<˼1\x12X<̌<\x0b< g2;\x10<\x168=͞\x19{<#<]\x1e\x17\x06<(<\x01;\t_=\x02W\x04\x02=$\x13;e\x15\x07<뺮\\H?8<,VI8B5ż\x03=о\x0b7<ܮ4=܇\x1c\x11\x13δ;3<ؼ,\x08ح(=UVù\x1a =:}P\x0fA~ü*=i\x16\x13{M+Hz\x11;N<\x1e=n%\x00\x19c<;ҭ<6e=3"=R\x0c<[TW2J\x04T]*\x13=v\x19@: wPi<\x01Y=\x1e\'\x1e\x04@=9\x7f<<\x02\x07PЏ\x19d<`Yg<#@ukջ=\x13;%>;2n\'\r$+y\x07\x01f\u07fbb5\uef3a\x12;(<\x02=\\<\x114\x111\x04=\x0ev<,\u05fb(\x1b"<[k{\x08&.G=;\x04H;\x05]\t>iY.=k;c<<\x7f<÷gE7;\x00R:vV:<\t\x00=\x11;\x7f:<̘<4;\x16hZ=zʻ᩼e;&b_\'=\x1f4L-2?=Z*\x10<\x116ٺ\x08|&=n3;\'\x17<\x116Y\x0e\n?,\x1dC&<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3禖\x0b\x0b=.D<=q;:;Ϣ;\x1e\x12\x15uW~/w;ﺽ0:Vs{|<ļ\x08b\x00a\x07U\x04e\x00\x0b=t=Z\x00\x08g=7\x0e==þCjq\x1dM<_k\x00e<<\x1ds<-<\x08;\x0f=S;eW;\x1b\x08X^:!Gfr=@܆\x05<.=N.<\\tw\x1ds&<\x10JA:K\x1ebr>{7d*=\r1;:0mݰ<#\x08\x0e<6;oa\x06UmC;ߒ\x1b=/\x1b\x01=4W\x11\x19\n,z\x1fK=\x1c\x19y⩻ #\x05̼=3ּ\tvp\x1c\x1c\x02<\x1d\r;$0\x1d;z5z00$= \x1b\x00\x19C>\x08\x0e%W\x103份C\x15oP\t5\x02+\t8!iɁfQ܀8=?\x1fG;{;\x15=¥:\x029G[=G;m=;⯼=Y<&,̼-;GP:,]\x00\x08<\\S<,<\x0ef\x1e<ȥ:[p2\x1bFg)O<\x14\n=\x1f<\r=j;\x040\x1cah9#\x13=7]\x17䴻Q\u07fc\x10~^MƼ=!\x10\'<݅BW/\x07Z\x12;F\n=\ue23cu?\x03ek<:<)e;ywx:.\x0b\x05S\x06\x0e=\x00ϼ\x1e<\x03\x1fi=g:<<#9pU<3`;n\t=l\x04\x07\x13\x1c\'PvӠ7><=?(\n=y_/Tn;ߴ\x07\r=Ӽ\x1a~`\x06(e\x1e\'\x0b$=n\t$Ah.Jꮼ?f^g\x02;]\x0eA\x16=\x16+=9Q.\x16\x1a=;u.<\x04Ǽ$A\x1b=\nQ*;{\x176];\x125I4i:l0-4=\x1ec\t=)\x18/<ֿNPo-\x1b"`_=T\x1fA 3 W-;\t:ټ,V:z=r<恽vr<\x0c<ޚ<<)Y5=gl3 g;S\x0eM\x18\x14[k;qe\x7f<_\x1b\x7f\x0eKDM漳\x03=u<`&jz9\x03=5<5MVt>\r=Q\x10Y=Q\x18\x14=\x05pH=\x17\rx\x05;%<\x1dU7pL\x18L=-U\x1dA ;,\t=GHF\x0b=\x0eg\x05pH=\x18{j\x15\x01=)|D\'><\x18\x16=s*SQ;?~\'W+\x1a?\x16"`\u07fc\x11\x19\x17;C\x16;E*L\x14P\x11<\n<ߧ;EƱ<5]Ϭ/TGE@=3=_\x01=֎;\x10\x1b\x0c2<.⼙i6\x0e<\x10\x11=̱f;\x0c;\x1a\x12ֻh\x04<\x10\x11Yu;\x1d=2\x17˺ʎ=\x7f\x00*\x06=\x1c"żE\x1e0<\x105YW=hr<=<\x15C\x03qMb2\x01\x06X<`;=\x07\x1cXS0T<\x15.|\x0b\x15;ÿ<=A%\r=\\M\x1ea;ݼs\x13>gk:V\x17*4i\x0302(\x01=;b-:Ȳż_<ԥ/`\x19\x1f<\x07\x1c;"_\x19#v稼_)=ʌ.<\x18)"<\x05<},)Ӭ<\x1b[`;i+;\x1aU;\x1enQ":V\x7f3kF0\x047=\x19<\x08<@a\x11\x13\tļ\x1cȼe\x01\x1a\x11\u07bc\x05dZ9f=8\t=\x19<\r\x12*<5Q\x1cKYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 74.56712697123471, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19"L<\x08!5=N:\x03=Ǎ;}\x133=seuR<\x17&\x03<\x12:_Ż\x13h\x0bļo;k<<Ϣt\x19\x102<\x7fƼs#}ț=;crD? =(\x07<<-\x18\nV)K&U\x16=V©jN\x07;ٻ\x1b\x0b\x05>;3\x02=FK<\x02=Bfl~\x1c=&;RA\x01:X=\x02;;iL.=\x06|e<+="LD9ϫm<`J\x13-;\x058м\x02=ئ\x19}\x1eqs;H\x12\x0f[=\x1atwc<\x160:\x18\r>6X[<~<\x04\x10%wV3<\x1eI\\\x07ۼw.;.]A\x19\x16*\x089)\x1at<ǻ\x02@Bfl<\x0c\x064<}/Z\x07\x02ݼ-<\x0eТD\x16\x0e;dư(f;\x04=.*1\x13\u05fcRE<>\\h)K=W/< ?\x1eI\x1f%;[\x7f\x1bux\x11U=3M@<.l&rR/ڼ`=9<24_<%9<\x13\x12\'<Ɣ#=\x0c\'*\x0e0\x1e<\x1bux=\t\x0cڌz<\x0c/\x0c754T\x1bN??=]\x0cǻ!-\r\x0b\rт7up=g\tMouwCx)u=^;y\x16=;d\x06<\x18<\x11\x16\x1c<>;\rCnFu=E6=B^9=Z/1<>\x17\t=m\x11D=_X\x12;1z:Q\x15i<-<\x1buxaL<ӼW%P\x04[I\x0f=kμ;\x13*/Z\x0f:E~&ϷYɼ^cC7<\x008R=L\x14=3C|\x0f";y5a2\x0c\'y5N<;\x06=>>)3\x01"\n=i1=k2k<\u07fcR5<\x02\x065\\><6\x1b\x02=Lvo-\x0f\r=\x1d㼢\x19F\x03¼S\x01>s2\x02Eb;a8=\x14}=c:<\x07\x02=a4<\x7fq.=h<ڼSٞ<\x0f\x1c|=\x12<\x11<^<0>=Eڅ\x15i&;_\x08#]G)=ԛ,\r;5F\x03B[3[3` =Z<\x08&*;\x1b\x0e=.;c\\T\x11s<+SrA<̫O<;\x06 0=\x19=cS<ނλ՟¼+=\x11<><\'\x11!= k^=\\j%+AU=8$<#=\x1c>\x06XF=ڑ~(ڪ\x04\t&\x06vE\x1dK=sHN{<\x00\x1c\x05{^\x18=˗\x04/g,\x05Mdo\'=\x18=\\zTEH`=\'\x00\x16siEU=/eY;0\x7f|]<\n\x02B%\x1eSD=[h)t\x1dG7=M:c\x13u\x19=U2\x06=\x0e\x1fZd,<&2tK<\x05ҿlw\\l.;\x1a:i5PM\x06XF=\x11\x0b<]C\u07bbV+\\I\x19\x0c|=d,=!=D=?Or\x1a6\x10ѷ\x1c\x04/J\\uX;\x14ݹ<<))<\x0eȫ<ȶ<\x13\x03T:;\x1c>\x18CN;Q=\x12~<\x13)\x1f_Q\x15jfD<\x1b^:ozļ=\x00\x12:\x7fx\x1b=\x0b=8 &<\x18%\x0f=\x1d<\x02\x1aR=b={;\x06=)R=aUee%r\x13<\x07-;\x1e\x1e\x02\x13<:_\x062\x05<͑=!\x06l>\x13`;ryP;=Q\x14<"B;\x0e#=U\x1a&\'"}{\x03 \x1e\\_َ?=!{\x11=\x08<\\z<\x0f\x00*~G\x0b;ބ<¼\x0b<\x0c\r<[Ż\x1e\x1e/J\x10=+V\n;\x14= \x16\x18J;\x18\x7fټ9\x15=8:pтu\x7f\x02A\x104?\x14\x00)NU=Hie<=N<\x06X\x15\x0cXx\x1b\x03v,\x06l`쟽;;\n8\x17\x13\x00F=%U|e\\l0;4\x0f1<\x100]y;8\x1d\x1c:<"6|c<%\x12$Z;A\x00<\x16<\x1fx=(\x1a\x1f5n`Y\x1f<\x1a\x08\x0f\x0bչ=2;V<\x14Bo\r<9\n̼r\x15\x02<+<%A<8;\x08><6\x03=:<{\nt=#[=\x7f\x05R\x00=(V\x1a;jB;6\x14\x1epм2¬o\x03=<\x0f;z=`K[<}~;_1<\x07]\x00.=:\x1b#={})<\\pƻC<]:;y;7\x0cG=\x18\u07bc\x06$2*o\x02ȼ\x1e\x1a\x01=w<^F`=o\x172$=\\\r9=pec<¼4\';jt:=W*ڼ<Ɗ8y\x04= *\x10;0/\x03=<)U|˼\x06\x06=\x1aluFO\x01f:z8Ӽj\x15;\x079JN\rq\x13*:5<@z<\x15)=<;\x0eP"Q9\x1d*[\x7f%;y)\x18<3<.\x15Db\x10<\x0f&=o^\x0eмL\'l2w\'Ѽq\x16=¾zLV;\x00W\x15|<<\x1c<@%3o;s\x1666;igmm|r<üi+1=<\x7fc99@\x1b=fЍ<\x0fi!\x17=H\x14G&\x1d\x1dOTP!\x17>5=ǐ<\x17\x04<_;t(ɼW<\x0b<\x0fm<\rؼR^=т9f1#1\'=\x1bG4<ƍ&=:D<\x01D}\u07b5\x08<,\x04kM,r\x1dECl\tj=\x06\x0b\x07=I\x125=\x07g\x15}r\x1e]<\x1a[j;5f;s<ɏ:T =L\x08<^\x1ew)Mx\x19h\x07__\rW:\x10Ż\x7f<0-=\x11\x1b=kP;\n\t<_Ό5gלּ\x06x<\x15Z\x18\x0eZP\x18HjG=×4ڼĒ\x16MƼ8=ir!=\x0c=ГG: ;5*>;a\x03I\x07;g\x0cf<Մ;ߊS\x04pp\x02E5fr=NWa\x1b\x01:U\x13\x00L6D<ļ\x00\x18q=N\x05v~<\x0f,=[<;\x10\tջ*=I1<\x18"`9!DgL;/\x01=cF:R\x1d<\';<+\x04Bɭr\x1exW<,2ռZ\x18 #%>a;B?Gd\t\x11=0\x02\x03ckJ\n-֞@C\x0fqI<ҠNL\x07=\x7f%:nмAcM6<7Յ\x01Qʧx)ެ\x1b=\':\x11\x1f=Y[k\x06{.v;:%Э;$t\x07\x1c=F*z\x0e\t8\x1d\x18\x19<~><\x1e\n;{\x1dڼ|M0+<=R<-7<\x03=.\x05\r=R\x0e\rR<=\x03\x01߿\x16R=A<\t$P:_=\x15\x16=l\x1dY-<\x01Q)+%=šrٻߦ+G\x08=J\r\x1c;dZ;\x008̡<[\x7fy;X\x1dF\x0cFq\x04\x15\x07;0)\x1b|\x19\x13;V4=\t\x029z<;"; <ސ<6l\x1dKOO.\u05fcT\x06\x0e\u07fc\x01Q\\ؠ<\x16i=\x1eu=\x17FE=၀Msr5<\x08u\x1f=\x04\x01U<\x1b*<Ɏ\x0f=fT\'=<[\x0b\x17ӂƼZgԼq\x0e=";P:=ǺxR?:N3\x01=Ӽ&V@\x03Q:Düt<~ӂƼE\x16=J.i;<(\x00<\x16\x14<< 0<۹<:È;ӱ.;\x00ms\n=~g\x04<;N!s<ĉ|;Y\x16j`\x1e;^<\x111=7\x05M\'<.<,\x10DO<', 'text': 'Professor Kisha N. Daniels (Dr. D) was the instructor of both EDUC 101 Foundations of Education and EDUC 204 Educational Psychology, the two courses I took in the 2020 fall and 2021 spring semesters. She adopted a strategy called flipped classrooms (Nechkina, 1984), which is a type of blended learning (Friesen, 2012) requiring students to complete the readings and learn contents before class, and have discussions instead of listening to lectures during class time. Before each class, students needed to watch Dr. D’s pre-recorded lecture videos and read materials to have an overview of the class content. Then we filled in a note-taking guide to reflect on what we had learned. Finally, we attended the class to have in-class discussions, group activities, etc.\n\n\nAs a math major student, I was used to listening to lectures without speaking a single word for a whole semester. I had even thought about dropping this class after I read the syllabus! However, Dr. D’s class opened a whole new world for me. Since then, in every class, I would excitedly click the “raise my hand” button in Zoom—I could not wait to share my ideas in the heated conversation.\n\n\n**Optional Attendance to Synchronous Classes**\n----------------------------------------------\n\n\n2020 was a year of chaos. Coronavirus and the international travel ban are distributed to students all around the world. It brought many uncertainties to our lives: unreliable internet access, different time zones, infectious outbreaks, etc. The school year taking place at the same time was obviously not easy at all. To ensure class quality, some instructors took mandatory attendance for those who were able to join the synchronous sessions. However, Dr. D was an exception: she made her synchronous classes optional, even though it was discussion- and activity-based. I was wondering why she did not make it mandatory, how she provided a relatively equivalent learning experience for those who couldn’t join lively, and why almost all the students still came to the synchronous classes.\n\n\nDr. D believes having a certain level of flexibility as a professor is always difficult, but educators should still manage to do so since it is not the reality to control everything in education. Students are adult learners and should be treated as individuals. They might have different learning preferences and face different situations. Giving them flexibility can be a form of warm support through hard times. For each assignment, Dr. D prepared two versions (synchronous and asynchronous) with detailed instructions: if you can come to the class, then you can work in a group to do the assignment; if you cannot, then finish these sections of the assignment as equivalency. By doing this, every student was fully supported.\n\n\nAlthough Dr. D’s synchronous class was optional, it achieved a relatively high attendance rate. To tackle the low attendance rate problem, Dr. D invited students to relate their own background knowledge to the course concepts. If some students did not come to class, they may not have a chance to realize how educational psychology relates to their everyday life, and what their peers’ educational experiences are like. Once students agree that class is the place where they can learn more, it will become their motivation to attend class. “Students are adults, even my freshman students. They are starting to figure out who they are in the adult world.” She, therefore, lets the students decide what is the best study strategy for them.\n\n\n\n> This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9aefe5bf-1e1f-4b31-ae11-5874c5393dbd', 'payload': None, 'score': 11.807439363540126, 'document_id': 'index.html', '_node_content': '{"id_": "9aefe5bf-1e1f-4b31-ae11-5874c5393dbd", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/lile.duke.edu/blog/2021/12/flexibility-adult-learners", "filename": "index.html", "filetype": "text/html"}, "hash": "c12bb19afe9091cf6fafa09e70f8b388092e96d62da508203161dace2cb3af57", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a427db5-ac02-4ad5-96b7-8dae766073a9", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "da61cf9bbb421fc985a175359a38bfee69742fb1d22c5e91ab9fc51a580553c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28a6432f-f95e-4e16-97a2-bc96b30e43f2", "node_type": "1", "metadata": {}, "hash": "734cbde4b860d7eb88633b64f3ce5635c61c46f1eee2dd8fb3ea547d481396b2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '@..\x1a!>\x02L)=<¼LR9"-=f2\n\x1f8;I\x13\x06̼\x19E;ǁB=^\\"Ⱥ)=)@缚RV\x1bJ܋g\x1f\x18e\\s=|\x0e<\x12\x19k 0h;o\x06\x08=^`:62<\x0eM\'=<\x0b\x1b_=59?/\x05\x1f[=I\x04\x7f<\x0b\x0e[;\r Qp=\x1e_+DySz\x14:D4;e:<\x15uN=={;\x1eF!8<{\x15\x03J\x19\x0b\x1c;\x12=!<+DP̥,\x10.\u07bc+-<1\x15=\x00k<\x01=\u05ce6-\x11֚ȼ0\r`;nB;\x1e\x19<Ѝ;]<*\t;\x1d*|$;^\x14SGJB)_\x05\'\x14\x03X8\x1c%=eX=\x13<{z=%W39L\'߷{:IC2=E(<\x1cAVR\x7f\x01KR\x02\'\x12<\x0cI>\x00\x19R<<^<@Pg#=C \x08=ߟ<.<һ`d#\x16<\r<-s\x0fϼ =\x14fڙ;\tB4<\x08 This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000\\).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:8164a0d1-1226-4de6-8d7a-39699df9bbb1', 'payload': None, 'score': 7.2496097371351755, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2826244', 'document_id': 'bfe60902-d299-44d5-af13-f68c06604fef', '_node_content': '{"id_": "8164a0d1-1226-4de6-8d7a-39699df9bbb1", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfe60902-d299-44d5-af13-f68c06604fef", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "4423c15f0262081da99b5983d0c0d4888dd19d09a77408a79310122494d98daf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1101e903-21fb-4f1a-a913-cd4d0db09034", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "a0ce698216bb12351e6c53c1f0a2e4b69df29c33d5af55c6ee316510f7e616c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc4f1340-3c4f-489a-ad6f-ff61fc6ae5bb", "node_type": "1", "metadata": {}, "hash": "f086c88c19abfef10f0e7100cf75308dc71e1c1a8b0f65ac1fe88aa3b3693b3a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3197, "end_char_idx": 6819, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf', 'vector': '\x10\x1br\t\u07bc\n}\x19\x02JG<;JT}\'j\x16q<\x0c\x0f\x03!:ʊ\x0f\rnQD;?#M;O,<ⶊ<\x16q1<\x1e\r軛ٲ8-}Իg\x0e=\x080?#M\x17M4\x0c:Z{\x13<\x1e+!5(r>*x~=J<姻J:SVkB\x0c:=\x1d\t;\x00<\x04\x12s\tB1j=s\x195f=ӻ-<1GŒ:[.\x0cb =$k\x0bJ<\r=姼\x1b\x08<\x04)\x05\x06=IWD\x00=˼\x17o\x06+=Ą=\x0e/\x0bl,<_\x0b<\x07<{\x0f;Ym?l:=dp@<{<\tZ̼\x12\x0c\x03=\x1a\x01"=]\x0c:;\x05=ޓ\tf/y\'=\x1aָ݅\x17\'<\x1be<\u0602;A\x0b*a<ɳ<>\n\x15\x7f줼~+\x0c:R]=\x14\u07fc\x0b\\<ʽ\x07;k\x111G\x1f\x104jOn;ej0A=F];\x00\x1e;\x080"6V\rr4\x1ad\x05u/<+8;\\\n6=r q<ȝ\x12=\x15\x0e\'#=A\x1dⶊtlлS!m=\x1bU<2\x14=`\x1b8»\x1c⻨ӌ],\x13,&r>*"L<\t\x10d|\x0c:$:\x07<8T\x00\x05=\nL=lv;ќ\x12\x0c&)\x01oxE\x10g\x01D\x18\n:4Q컼c;\u0bfcч&ثF<⠼ּ\x0eO=ܯ;FV=\\<\x03I㼋7\'ٕ};\x7f 7=\x1b=\x02<\t༜뻘NmB\n\x13㣼fһ;TW5=\x02;0\x1fD;뼮<$;\x1d =>"=/"==\x7f\x19\x1fʼݎ廬C꼈\x1fLoU/:#t\x1f{=(#=-<܋;+E>;\\G\'x\x17\x13kΊ\x027s5T=\x1eV\x0e@\x7f 7IϼxI/ͼ;\x0f=[<-<\x06\\+<\'g;k6<3\ue63b\x13=u=\x18)b\U000bb508B>"=\t=\x1cwC=#\n;nop\x05;%=I\x1e=8Ƹ~vw\\Uȼb@z6Ja\x0fq1:țJ=,~\x7fȼ3㊻\uf7bb\x15;=`\x04\x06<\x02\x00E< “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom \\[when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs \\-animals – photosynthesize, so it is eye\\-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step\\-by\\-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:3813364d-5d0b-43b2-8b98-89f90953c7b8', 'payload': None, 'score': 7.140919556971079, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67846', 'document_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', '_node_content': '{"id_": "3813364d-5d0b-43b2-8b98-89f90953c7b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c67a53bb-8127-4a54-8b71-e1b38caa9ff1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "19d045065fa9deb404ca09df5d278e17246849ecf0ad229013a4f1b8ebdf6baa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44dee6a0-7eb8-4a9f-96db-c955c8a4af03", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "d32b9c44375b348bc666ef0aec15d9716110288a771b9adacf9715e299e14eb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "db799e37-46c6-4470-b828-20f113c1c7e1", "node_type": "1", "metadata": {}, "hash": "95ca862141792c058376d879a3bf777f6a55c3680aed266ff9ed2bdabe4d79eb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3981, "end_char_idx": 8579, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', 'vector': 't4-N\x19\x16\x04\x06%3\x0b;)R;Xv\x12@:\x1aXv4!&m\x08<(0j=\x0cr뺚\x00 \r9:\x03R=y௺\x00F\x1e<\x1a;;\x16\x02:->=ۜ<6\x11=VI,aK)Aнx<;)<;<\x1a,=\x08|WA<~y/=DI9\x04+L\\}=W\x1b<]üt\rxtR<\x1c\x17+< \x10\x1bP=<\x17\x12z\x0e<(0j:L\x03EZFe\x10h;WTb=Y<\x1e\x0c=\x17,;\x16%<<\x11\x1e8\n\x0c+\x12;\x16%<\x0e\x1d<^Y\x04<<]\x1aj<<;twϻ`?\x07p=JӍ;&\\"y;IwF7"\tgIw<\x1bw@\x1dP\x15E\x08! “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom [when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs -animals – photosynthesize, so it is eye-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step-by-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{30342 total, docs: [Document {'id': 'test_doc:fa62489b-2462-49f9-96c5-5404417877ee', 'payload': None, 'score': 28.61677933836303, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2986689', 'document_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', '_node_content': '{"id_": "fa62489b-2462-49f9-96c5-5404417877ee", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7aba813d-dab9-41dc-a97a-993ec69ba196", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "hash": "11ecc01f303036fe2851e08fc6521f4a230e023753a73908adc39b8ec3c08e8d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9cc8255b-8a6c-49fb-8d96-5ab36f5a39b8", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "hash": "ae1c730cc5416c292eeea3ea0a7c81f3ed41deb7cf2e28eb9104e8368c706246", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cd815fce-1e01-41df-a2b3-47a05f87ffcd", "node_type": "1", "metadata": {}, "hash": "6d9769deeb55ab522cbd1d21eae4cc2583a11988510b56cd93d022914b0450ee", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 83223, "end_char_idx": 87531, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf', 'vector': '-d:!MƏGЙ=펼\x10l0Tk\x00w~JO\x06\x07xn<\x1bu=\ue9fcgr<=g\x13<\x03ٍ<~\x13\x7f#\x11i<\x1e_\tb\x15<\x19Ev2Yyú;\x04j8\x14DG\x0cRX<\x1c\x18=/\t=ۨ\\\rF\x7f\tW8"=\x1e=1\x01\x16;/+p;߹\u05fb\x14m<1<\x7f\\<;kaw\x0f=B\x01>Tw:&\x0fs\x1c=և"*=}) \x1d&=6<%#I ˔Rq=M\x02<\x07=\x11R\x11l`;%\t\x07<45j=-:H\x1b=N}-=\x11㼻\x01\'=d\x10E¡N=N\x15n#=\x0co;\x7f\x01`a\nx\t~]0 Ev<\x19,+qi\\<\n<\x0fa< i\x14<Ѥ-\tr.t&F<`H<\nӵ<2Y<\x03\x1a><*!\\\x1d:Y\x1a=\x1dT<[e(=\x1eIjo0={;8؞U:', 'text': 'It is conceivable that the individual might even be offered a new contract, as in the case where failure to reappoint is due to the loss of an instructional component in the position, but the individual still performs a valuable service.\n---\n# Guidelines for Adjunct Faculty Appointment at Duke Kunshan University\n\nGeneral Criteria for Adjunct Faculty\n\nIndividuals who are interested in engagement in the DKU community may be considered candidates for an adjunct faculty appointment if they are committed to one of the following four activities at DKU:\n\n1. Teaching a course or guest lecturing on a regular basis at DKU.\n2. Advising DKU students or serving on graduate committees on a continuous basis.\n3. Collaborating on research with DKU faculty, ideally on projects involving DKU students.\n4. Providing strategic advice to DKU at the university level or at the program level, helping raise the visibility of DKU within and outside China.\n\nAll adjunct faculty positions are approved in advance by the Vice Chancellor for Academic Affairs (VCAA), and adjunct faculty can be hired with or without a search. Initial appointment can be made any time.\n\nAppointments may be offered at any of the established ranks or titles for which the person is qualified. The “adjunct” designation precedes the specific rank in the title. The particular rank offered shall be commensurate with the candidate’s current rank in their primary academic appointment elsewhere. If the individual does not have a current primary academic appointment elsewhere, the rank offered will be commensurate with education, experience, and professional distinction.\n\nInitial Appointment Procedure with No Search:\n\n1. In the no search scenario, a unit head (including division chair) in the relevant hiring unit submits a nomination letter to all regular rank faculty in the hiring unit. The hiring unit can be any of the five academic divisions at DKU (UG SS, UG NS, UG AH, LCC, Graduate Program), or an interdisciplinary research center. The letter should state why the candidate merits consideration for adjunct status and should propose the adjunct faculty rank or title (e.g., adjunct assistant professor, adjunct associate professor, adjunct professor, etc.). The nomination letter must be accompanied by the candidate’s CV.\n2. Regular rank faculty in the relevant hiring unit vote on the candidate. If approved by a majority vote of regular rank faculty in the hiring unit, the hiring unit’s recommendation for appointment is submitted in writing by the unit head to the VCAA along with the candidate’s CV.\n\nApproved by the DKU faculty March 22, 2017\n\nVoting should be done anonymously and a quorum of two-thirds of faculty in the hiring unit is required. All faculty eligible to vote at meetings of the Faculty Assembly are regular rank faculty.\n---\n# Initial Appointment Procedure with Search:\n\n|Step|Procedure|\n|---|---|\n|1.|When the hiring unit, in consultation with the VCAA, determines that a search is required, a search committee is nominated by the hiring unit head to initiate and conduct the search. The search committee consists of at least three faculty members in the hiring unit. If any one of the hiring units cannot provide three such members to serve on the committee, the unit head must nominate an expert(s) in the candidate’s field from Duke University or Wuhan University, who will be invited by the VCAA.|\n|2.|The search committee may also choose to nominate additional experts in the candidate’s field from Duke University or Wuhan University to serve on the committee, to provide further quality assurance, but this is not required. The search committee keeps the relevant hiring unit(s) informed as to the progress of the search and draws up a shortlist for their approval.|\n|3.|Following interviews with the short-listed candidates, a selection is made by a majority vote from all regular rank faculty in the hiring unit(s) and the committee presents the recommendation of the hiring unit in writing to the VCAA, along with the candidate’s CV.|\n|4.|The VCAA will forward the hiring unit’s recommendation and candidate’s CV to the Adjunct Appointment Committee (AAC), who will make a final recommendation to the VCAA with a majority vote of 3/5 members.|\n|5.|The VCAA will make a decision on the appointment.', 'ref_doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'file_name': 'FACULTY-HANDBOOK-_2021_V7.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1c87e679-887f-4a0b-b35a-c188f0bcaed8', 'payload': None, 'score': 16.2685588476638, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '193207', 'document_id': 'd5a239be-05cf-45e0-9828-34393051404c', '_node_content': '{"id_": "1c87e679-887f-4a0b-b35a-c188f0bcaed8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d5a239be-05cf-45e0-9828-34393051404c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "hash": "8069a53c337274902b62806d298e9279bc96e16473bbe77769fe70f130122797", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6caff452-949e-40d1-9746-c66f5be65cad", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "hash": "58495177c60795f324bd77fb361e896b2432564f79796a595bdb92dbb9e8ef49", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "047b0129-8c66-445f-8058-67bcf739a63d", "node_type": "1", "metadata": {}, "hash": "768d0d40af3f683dbd2807beb595e2b7e8dddfcb44178481a33e76165e973cba", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2569, "end_char_idx": 7099, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html', 'vector': ']0$ȝ5@tx;\x1c_\x192@+`!<]@\t<<λ떼mT\x0b=\x1d\\T*\ue1bcQl<\\\x16=}E"= \x06<ɼSv<\x0ef\x04\x1d;yvm%<͑;iIz\x1a\x0bH\x12=\x06:<ļ=\x18\x06O!";.0t^\x0e(J<~#\x00\x1b;#=T{yv-;+ȼ0oQ\x11\x11n\\<<\x08d;K\x04;p\u05fcl*=թ,\x02\x0b=,;Tȭ\x02ol\x1a]<;\x1eE\x13Oؼ0Z<&\'\x08Q\x19=\x15Sb\u07bc\x0b;\x15\x11!<\x1d<\x12!Y$<\x1b<\x15ɥ@}<=<}(\x08\x17<|F=ޝ\x02=*O;ȝ5#=,8;\t\x1a!\x00;l\x0cP\x05\x1bCߌ<=;<\x1c\x19p\x13:?k<<:\x1cü-\x00=Z=\x0c8Xd7cR̼4\x0bs\x05\'\x12<5\x06=*\r:1\x14o;u\ta;."<;T,<[:TY<%;~=\x1bc\x00=|\x18;\x05M=\x184~;|\x0eJD;\x16P\x04G\x02d qQ\rD<;+@\U0010be49D=\x14N5ge=<*;*=U<<Լ\x0f;;=8\x7f<ڈP=b< \x10,\x04<_Z\x021t=lܴ꼚\x141<}I+@\x04<|u\x1f.J]\x11\x07,\x12^cX\x1c\x01<Š/\n=\'\x174<\x00j㻚f;\n?}l$ɘ(Ly<\x17=>\x19E\t=\x01\x030!<([:\x1b"<:\ne=\x12=./%\x08%=1<\x1e$=YoZ?;z\x0b/6\x08%\x0f\x15;\x1fV%=_\x1d\x17J.wd<\x7fg}*\x0e<\x1b=Z\x11p0G\'亥<<\x1b^$P:|>_Sh<>B\x11=f<(ݼQ=}< Q~=\x005<\x1bd$b\x06\x084;5ч;\x10t~ռ+A;6d;+\x0b\x05\x0b8\x12:I_-3j2?=j;kYg<;ɻ\x08;\x05v<\x11\x17<<0<\x04A=zlS<^8<+6=p\u07fc\x04ٻ<>=\x10켢a\\\x08\x19I0=Ca&\x0cf<31=\x0b=a!=\x18o4=+Jt=ǪD/D\x07C\x03=\x07<=:\u05fa\x14=5X\x13\x16\r̼\x1bJ_K1=\x06l\x1b0=\x1el:\u07fct/<\rN<>=\x0e\x01\tsJ<\\1\rλnY\x1e1\x17=G;+=~\x03=M2!=\x14M=qa=w\rH<\x1c="<\x062;AZ4?\'Ц<\\=a:Iۻ\x10]թ6<[<\rJ=<\x0f;.[8<\x1fxsx<3\x12\x0f<+>\x1dIW<Ø]\'-\x0b&<\x15X\n;d\x1f<㣽]&z\x7f\n<\x0cZ\x16/\x19\rKoI<Ǫ<\x04z=Ț{y~=:04>=6=\x7f<̬Z0\x05M2s<6=hհ<\x0b=o(=9<=ػ>\x17Ƌ4\x17<4\r\x007p=\x18[;\x1a=\x1d<\x06⯺\r9/=S\'\x14/`;d\x00=\x14)FEҝ\t=E<=\x1fس<^M|ԼV\x07:\x19-t;\\@\x0b\x1bAO<;5(\x7fb<\\=\x07\x0c<.\x08=|\nbϼ6*;\x1bҼz\x0b:3Xޜ]%N,\x1c<\x1cg=I˼@U<?ۼ\x00a;`:=;启=Oo\x01D6*Ļ6\x12:\x11\x00~\x12n=xF <[Qau\x1b&\x0e=dɺ\x12<@M\x19=:;=ЍI\x05ȱfQT`"\x0b¡mG<\t>jCз<\te=;fz\x16<=<;\'<\x15;e=pQ\x16=(\x02=\x19\x032:]\x14K\x1e;S̔\x13\x1e\r<8p\x03;*;.\x1e):p\x01=o<\x13.4G\x15=\x132=\x02-p\x11<<\r=3p\t=\x13\x13&zw3=O\u05fc_z<鎌Wz(<-pE<\x06\x14\x13R(`2G়֟<\x086zz\x1b\rM=f\x02pżo(^Q\u07fc%=ˈ.;kG:W\u07fc\x17]\x15=w=@w҃\x017=\x15ֻP=C?\x131;=">.\n7f`;=\x1b\x07;P\x10=١~j$l,ć;$\x15\t(\x01SgQ<=DUv\x1d\x7f=\x018ͻl.@<ϲ=T\x9a5;\x01ϩo<\x0e=`=Ѽ8+=ԉ=4#L[5=jɛ;;d<\x12(ļQ\tIN\x7fb=p3/L<\t%۸=kp4\x08@PWDJ&=z<\x05\x1f=25:\x12m<\x03Qt+(FQÔ\x00<2J]\x0e\x1c<\x12&;EA=\nhi\x13<ƹ=5W!:C<\x19rgl\r7\r<,>\x03;ΌN\x08M<ڻ\x18.=o{=?;j"u\x0b\x17;̇;\x144=7\x04zC\x10=\x15ϼތ<\x1f\x0c#=tKF!T};\x00\x0cĂ\x05Aм\x15\x03|\x07<)II\x17v!<\x07Fg@*6;c<\\;0\x03=\x07[8=S<\x1dW<7ekpuH\x1e<\x02<Lۻ\x07[80=\x0b4#\x03H<"i1÷IN\x08ͻ\x08G=!㼭i+D\x07j\x1f<=\x0c\x15UL\r\u05eb[\x07l&+I=:M\x1f\x06eV\x1c;>=(#\'ؼ\x1f<:\x17:e\t<ӡ\x12Y2;>!ci\x16F=ϔ\r\x0e<\x0fӛT=5)\x06=\rl$¼\x0f=<#;l&=tK=H{=0$\x13\x18[\x13a<<<\nN\x05\ueea0<_Q\x18:IHr="<3<)=z\x06];Tr\x1c_=!\x14<', 'text': 'Settings\n\n* [How do I use course settings?](/t5/Instructor-Guide/How-do-I-use-course-settings/ta-p/1267)\n* [How do I set details for a course?](/t5/Instructor-Guide/How-do-I-set-details-for-a-course/ta-p/1037)\n* [How do I change a course name and course code?](/t5/Instructor-Guide/How-do-I-change-a-course-name-and-course-code/ta-p/1234)\n* [How do I add an image to a course card in the Dashboard?](/t5/Instructor-Guide/How-do-I-add-an-image-to-a-course-card-in-the-Dashboard/ta-p/624)\n* [How do I set a time zone for a course?](/t5/Instructor-Guide/How-do-I-set-a-time-zone-for-a-course/ta-p/1295)\n* [How do I change the start and end dates for a course?](/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354)\n* [How do I restrict student access to a course before or after the course dates?](/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269)\n* [How do I change the language preference for a course?](/t5/Instructor-Guide/How-do-I-change-the-language-preference-for-a-course/ta-p/1246)\n* [How do I enable SpeedGrader to launch filtered by student group?](/t5/Instructor-Guide/How-do-I-enable-SpeedGrader-to-launch-filtered-by-student-group/ta-p/947)\n* [How do I enable a grading scheme for a course?](/t5/Instructor-Guide/How-do-I-enable-a-grading-scheme-for-a-course/ta-p/1042)\n* [How do I use grading schemes in a course?](/t5/Instructor-Guide/How-do-I-use-grading-schemes-in-a-course/ta-p/870)\n* [How do I view and manage grading schemes in a course?](/t5/Instructor-Guide/How-do-I-view-and-manage-grading-schemes-in-a-course/ta-p/1188)\n* [How do I add a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-add-a-grading-scheme-in-a-course/ta-p/1054)\n* [How do I duplicate a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-duplicate-a-grading-scheme-in-a-course/ta-p/601384)\n* [How do I edit a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-edit-a-grading-scheme-in-a-course/ta-p/601385)\n* [How do I archive a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-archive-a-grading-scheme-in-a-course/ta-p/601386)\n* [How do I customize visibility options for a course?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-a-course/ta-p/844)\n* [How do I customize visibility options for course content?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-course-content/ta-p/814)\n* [How do I set a Creative Commons license for a course?](/t5/Instructor-Guide/How-do-I-set-a-Creative-Commons-license-for-a-course/ta-p/1059)\n* [How do I include a course in the Public Course Index?](/t5/Instructor-Guide/How-do-I-include-a-course-in-the-Public-Course-Index/ta-p/812)\n* [How do I set a course format?](/t5/Instructor-Guide/How-do-I-set-a-course-format/ta-p/1089)\n* [How do I change the format of a course ePub export file?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'emphasized_text_tags': '["span"]', 'filetype': 'text/html', 'category_depth': '1', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5de98e40-d933-49c2-90eb-c286525861b1', 'payload': None, 'score': 90.64511634021032, 'emphasized_text_contents': '["How do I manage my Canvas notification settings as an instructor?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "5de98e40-d933-49c2-90eb-c286525861b1", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-manag/e-my-Canvas-notification-settings-as-an-instructor/ta-p/1222", "filename": "index.html", "filetype": "text/html"}, "hash": "3d1a042c6d4a1bae721210c0a10127a1615064bd928e2854d5b7c96e2e2f1134", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16302703-378c-45c0-9106-9ad07470f8e3", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "860beb54725152d1658bbd2172b5f691ae88263f5cc891530405e4e0ab8b697e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b26b7f66-993d-49e0-894f-a130d7cd1140", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'k\x0fpB\x15\r\x11\x1d;uYº\x02\x06Bd<\x15;I\t\x7f\x03=U1[}:iKW\x1e=\x0e;{n伢ږ< .\x1eF<\x1260=8ahP\x12<\x0cļW=<=%\x07=kP<>6(=,;*Cܻ@\x03*|ӓ7<\x19\x13\x00=B\x0cZ;MW=\x07\x0bL=\x1dg<\x02\x04<\x12\x1f\x1a\x1e=ڟ\x7fK\x16=\x01I\x1f<\x19\x04q=9Y@p#T`:,q;`%\x14ԡ=R2,\x17;\';)] <.\x1e\x00=4eȻ:;\x12wnʀI*`L9Q+K<\x1c<8=\x14w\x01ؼ\x11=\x1cL=(\x13t!r<*\x13\t=\x15Rh<\x06\x0e=ɱ8}<9N[<\x00=\x1cU:d$N\x13\x1bRh9W<<\x12\x1e;\x1e\x05H^{;!2=+\x1c#\x1dg\x19\x12n\x07"/y;R"缬\x19.\x1eN\\=\'VG\x11mm\ncg9\x1cL1=Ik\x1eA\x13R<\x11<\r,= \x07\x10<8qG\x03dCo\x16\x19\n\x08<\x11w`:=\x073;Y=T\x1a\U000bc5bdKH\x06f\x04NG\x1e<09p\x07\x7fJ(;Y\x15=)\x12\x10<\x17\x1e\x13];\x15\rO$=w\x08\nMl\x17<\\gz;)=<+\nɰĻkEY\x04\x19<+\n!\x0f;\x1d\x02<[\x08;\x0c0\x7fD\x7f<ڄZXY<<\x08p<\x0f\x15\x0eRM<\x1e]\x1c"Br;<\x12=\x0fʀ>3I<ڿ;,=R=~<\x03$;D;\x00<\x100+==\x0faG\x17伆u¼\tBҍ\x14=r8=$ў<\x0b:<\x18\x01Ñ=G\\\x025M<\x02!19;LrP\'ɼ\x124^;\x00;<|\x16迼߾;XD\x07\x0b:\x1e\x1dW\x11켺I\x1d.8^G1X\x01\x13N;$鼦f\x13\tͻ\x14)=\x98,R\n=$/;:+3:raB\x04=ԝ\x12iO&4\rQ= A^킺V<\x1d=\x1eԼ\u05ec\x11;{)f=cӺ7i;H<ټ.\\p<+6=^\x02=2/R&Z\x0e=<^\x02I<\x18G;\x18мo2PL:T\x10z?\x18=B\x1b<墓r=\'g\x1a=\x1dD=H\x19<[C\x10=;\x1c;\x0c^\x155l\x04=\x0b=W\x17:\x1d=9\x07\x080T>^=M<ˣ[S#\x1b =\x0f;*~=˟<\x1f\x05KټVz\t\x02=&t<ֵ\x1d=\x17N\x1e_b"z<\x05Y0<^,b\x1e=Р\\<\x10\x00E@Q^\x17nD\x0eE=\x1f٦㻘՝til#Qjy\u07bc\x06\x04=6E\x0e=MZ;u\x16\x1f\t%&ti<%\x0fz;Р<`\x02켊ߛ<\x13\x1a_]\x1dQ?\x05y<;N;\'\x12:s!<\x19WVw<<)n<\x0b͏\';3<;\\~\x18?<3\x0f<\x0b\t$k\t=@\x16\x1f=;¼F/\x0bp\x11:}z~\x11:QFT;c\x0f\x0b`;ψ=5-G<%=tf\x0fq99\x1a=\x00\x18=.=o2;mh,b\x1e\x1dļDZu=<\x1eO\x02\x1c%\x1dw\x13=Tc+jJ<(;\x1cE<\x06<\x0baBaK}j;p;x\x07UriTc+=}j<\x1b<|:ot<\x1cE:\x02<ʛ\x06̸\x10=\x07<\\<\n=Z\t\x0c\x1br7<:\x02=}\x1f=\x0fq<\x06(ý\x0b<Ԅ\x0cr=>c\x00;=Ȼ\x14}Ȼ.8\x00\x18\x03\x0c2>Z=S\x16#\x19\x16}<=E~\x0f댹.9j\x18=Ӹ\x1d<\x0eB=Y< #Ӹ<\x04#\x00UFƎ\u177c:d%;\x1a42\x0b==H=\r\x0by;4\x0e21&;\x0fּ.8\x00;\x11=q<,P3;戼\x1a=<\\<\x12l\\\x00$<\x04C\x11=:\x1bS i<#l=<}QL<]\x08\u07bb}<#\x00>銼|\x15=PC\x15\n3=/u=%0ռhu\x1a\\;#=8r7=\x0fq;A=\x17g\x17A:q\x00L\x13=W=H\x05n\x1f;:O<]\x08^;|\x15ؼ.8<>\x16\x07\x13fh3\x06\n9;f\x13\x15I<2<,;\x02<5y<\x05\x01<٤h=\x1f="0bJX\x012F\x03cO=sp<(\x1d7;\x02:.9@_0\x1eܐ<\x0f\x1a*=\x0fc\x01\x02z\x1e\x106w:\x1f>ؼn9', 'text': 'ISBN:\n\n 9781501384516 \n\n\n OCLC Number:\n\n 1346848149\n\n\n\n Other Identifiers:\n\n British national bibliography: GBC392749\n\n\n\n System ID:\n\n 011128061\n\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781501384516%2FLC.JPG&oclc=1346848149)](#)\n[Request](https://requests.library.duke.edu/item/011128061)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011128061/email)\n [Text](/catalog/DUKE011128061/sms)\n [Cite](/catalog/DUKE011128061/citation)\n [RIS File](/catalog/DUKE011128061.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011128061.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=The%20life%2C%20death%2C%20and%20afterlife%20of%20the%20record%20store%20%3A%20a%20global%20history&AUTHOR=Arnold%2C%20Gina&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011128061/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:890c6570-6673-47e2-9be0-a600326ba173', 'payload': None, 'score': 5.111859860107163, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '38469', 'document_id': 'ba7bdaee-f963-4ba1-81ee-2a4f57b775b6', '_node_content': '{"id_": "890c6570-6673-47e2-9be0-a600326ba173", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ba7bdaee-f963-4ba1-81ee-2a4f57b775b6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "1f9b49d4285484e8934880d49cc42d7a6600621aa3afa4211b77d365d847f36e", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ed1aaa9b-70e3-4333-a5ed-96f1e4fd0f61", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "ef51b4ceb583db01efb1e601a177c1635b3e9bd0f230bb5a6e3fae3dfc313a65", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fcbb370c-5342-41a3-8a91-1fd3adc0c84d", "node_type": "1", "metadata": {}, "hash": "f915634a970194ba2ed43ce6224005c536e896c2bb6c40c8797015bb4f43eede", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7061, "end_char_idx": 10572, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html', 'vector': '\x03\x18_;]E\x0b\x7fh<\x02s+\\So<\x02\x1d\x19ռ\\\x0b\x1d<\x19ԇ=XQf\x0c&;9P<`\x11=;Լۙ\x03<+<[4ۼM\x0b\r9\x1cV\x0cɺ\x04#C;\x18\'z#;q\x03M\x0b\x1b<<>л"\r=]κڽ!;fk\x1c.UN#^A\x06<,=h<孃\x12\n<=:r=\\\x1e<`\x11=:@萶T<%\rcJ~\x19\t=n=0:\x04>P5\x005/<;;\x16]/H\x02;\x0cI=ľ_O\x16=.2<\x05\u07bc;\u07fc?üi\x07p=:\x0e\x08<"+;\rEwH=l\x174\x1fvO,ë=7\x1aȼ\x02Oa^ӻ\\r\u05fc5=m6\x0c=~\x17Pټ覼&ʼPv\x04=!\x03=|kD.=R@<\x02)<\x02s+=Qi<ڹ\x1bQ<~ȵ\x0b\x077\rTw8\'=\x1fWQ=p\x102A=>;tF;_\x14\x03\x1a.Ӧ\x03ݼ\x12\'ּ$(=\x05;까==\x03=<@g;dD=t⨼*<Ϡ\x1bj\\?\x17%;\\?&W\x14850ϼ7h=\x19+"t:\x12áG<@5݆X=@\x109b;;\x18=9OּM9#f%6D=^5H^<4=Jk\x1am鴼\x7f\x1eC"-\x16\x00Qq\x16=\x025¼W<"\x0f[~=ܠl\x17̏\x17;:Ո;N\r\x0b-z<\x05It⨼捸G\x1e=/=\x0c\x0b\x7fX\x11\x11\x056=(R>= 4ozތs!\x0f\x1ev<\x142R<;>\\?#<6\x14\x1d4oj=\x00<\x1d滒9^\x0c+<<:\x07"=:$q\x02\x065\x1a\x04\x1dJavĤ\x13s\\6ăq\x02<\\O@V\'Q=;\x10%=p\x06;\x1d\x07ܠ;@T=\x1a<ŏ{<\x11fz=r\u05ec̰/<\x1e^B<<8\x0f=f\x1a\x16|r<{Ƽ\x1a\t&\x0c\n)=F\x06;gcp4<\x07e%M\x1c=\x10.\x0e\x1f93\x17=Ĥ=8`[\te\x17=Y\x1fշ\x0feV \x00\x02=+*9tFݼӟ\t\th(C̺8w\x0c[\n"Ϯ!u\x1e', 'text': 'System ID:\n\n 011279812\n\n\n\n\n\nFind related items\n------------------\n\n\n\n\n Series:\n\n [Contemporary studies in idealism.](https://find.library.duke.edu/?q=%22Contemporary+studies+in+idealism.%22&search_field=work_entry)\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781666947427%2FLC.JPG&oclc=1406744966)](#)\n[Request](https://requests.library.duke.edu/item/011279812)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011279812/email)\n [Text](/catalog/DUKE011279812/sms)\n [Cite](/catalog/DUKE011279812/citation)\n [RIS File](/catalog/DUKE011279812.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011279812.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=Kant%20in%20context%20%3A%20the%20historical%20primacy%20of%20the%20transcendental%20dialectic&AUTHOR=Kelly%2C%20Daniel%20Patrick&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n* [Find related items](#related-works)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011279812/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{399 total, docs: [Document {'id': 'test_doc:0e1a1536-2f4d-4e35-b430-4ef62516ae24', 'payload': None, 'score': 502.71546358918044, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "0e1a1536-2f4d-4e35-b430-4ef62516ae24", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a526922-da55-4004-8b42-c6db36c2d08b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "ea49f21a91ee6c818c5adf58a9cb97dbbb956140a2e40e228ec8d8b22fcd2881", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bd6e126f-6eff-46d1-9a1a-562fc15dd345", "node_type": "1", "metadata": {}, "hash": "d1d48d5ef4fe17cdc8edc0cf057ded72596b533fcb129835c1651599c8fdf80e", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1296010, "end_char_idx": 1300563, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': '䕋Bü}+G\x0f\x17\x14b`\x04T:<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3\r<آ\t\x16<{zS㼠\x05i\x0b*\n=[G="\x1ew\x18=\x12ps+ĻZy \nSP\t)\x022=;RM(\x11<\t\x15t<\x1b_=;vY<1BFi\x1b=\x1f<\r5<6mW\x1bE=*=8<آ\x13\x01\'ޠ:;JD&=jX{Wܶ<<ƨ\x07Rϼ\x11!=\x01\x13\x1f;\x02=9n+&\n<<0{\x11мkh.=!L\x10<\x19\x0e nFQ=\x1dީ=\u0557;H\x1e\x7f\x04ּ\x0f==<\x113Swo{<,=%\t=sa\x19TH\x0e~<.B<\x7f=~z;FtkK:\x05,`\x0e꽼;\u0ad5u\x08w];ȼ\x0co:q<;m>\x1e+N}\x18<:2"=\x01!ϼ\x16<\r=\\ʊ<Ȑ\x0f\x10\x1f<\x7f.\x0bR<\x19-4z\n=\x06o\x15;B;=.\r<ڊ\x1bB;>k\x14̎ڼ\x05r{\x11<<آ\x13&竻OegF9%;<\x7f\'L\x1e0BFNI;<\x0c\x08<2;\x01QvY6üw<\x1a_˼NZS&<\x00?\x11y?\rwS<\x15a;WK\x022={W<=h\x08==Ҥ\x0f=\x1d\x19=\x12k$=t={):6*NY,7\u07fb\x7fm\x1bk=x\x17:BA=p<L\x19!ki=.ͷ:<<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nLibrary Spaces\n--------------\n\n \n\n\n\n\n\n\n\n\n\n General Rules \n\n\n\n\n\n Study Rooms & Team Rooms \n\n\n\n\n\n Functional Rooms \n\n\n\n\n\n Wind Finance Lab \n\n\n\n\n\n Multi-Media Booths \n\n\n\n\n\n\n Please follow the general guidelines below to use the Library spaces/rooms:\n\n1. **Open space seats and study rooms are on a first-come, first-served basis**. Please take your personal belongings with you when you need to leave for more than 30 minutes.\n2. Do not use personal belongings to occupy seats. The left items will be cleaned up by library staff and we will not be responsible for any loss.\n3. When using **functional rooms** or places with equipment, please send an email to [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn) to make a reservation, then go to the 1st floor service desk to exchange your ID card for a temporary key card after the reservation is approved. Each reservation is limited to 3 hours with additional 3 hours renewable. Course reservations will be given priority.\n4. Please **keep quiet** in open space, use team/seminar rooms for group discussions.\n5. **Telephone booths** on the 3rd and 4th floors are available for phone calls.\n6. If you need to move around furniture in a particular space, please return it to its original position when you leave.\n7. Please keep the environment clean and don’t litter.\n8. **No eating** **on the 3rd floor and 4th floors.**\n9. You can [check for space availability here](https://dukekunshan.emscloudservice.com/Web/BrowseForSpace.aspx#), but please note you cannot reserve rooms on this site.\n10. Contact to reserve classrooms.\n11. Follow any additional guidelines for other special spaces listed on this page.\n\n\xa0\xa0\xa0\xa0 \n\n\n\n\n\nStudy rooms are on a first-come, first-served basis, and we don’t make reservations. Reservation is required for events and classes in the team rooms.\n\n \n\n\n\n\n\n| **Study Rooms** | | |\n| --- | --- | --- |\n| **Floor** | **Room Number** | **How many people can fit in?** |\n| **2F** | 2103 | 2-3P |\n| 2109 | 2-3P |\n| 2111 | 2-3P |\n| 2117 | 2-3P |\n| 2119 | 2-3P |\n| **3F** | 3101 | 2-3P |\n| 3102 | 2-3P |\n| 3105 | 4-6P |\n| 3106 | 2-3P |\n| 3107 | 2-3P |\n| 3002 | 2-3P |\n| 3003 | 2-3P |\n| 3004 | 2-3P |\n| 3007 | 2-3P |\n| 3111 | 4-6P |\n| 3112 | 4-6P |\n| **4F** | 4101 | 2-3P |\n| 4112 | 4-6P |\n| 4113 | 2-3P |', 'ref_doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d6d27406-84ee-4f2e-8fe9-40d837477efc', 'payload': None, 'score': 5.738786401115482, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '156358', 'document_id': 'b921af15-be3d-4648-a832-9eff128b796a', '_node_content': '{"id_": "d6d27406-84ee-4f2e-8fe9-40d837477efc", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b921af15-be3d-4648-a832-9eff128b796a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "944bdda3371daca1284fd390ca0a29a9d73fc0764ea88d2c55fcc8bb495cf062", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f14b732-8c96-4cc7-aab4-34c23342640b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "b811c1fef340a9b0e4ac9860aaf0bcb4eafbaec57628f2ce4f38eb3f1faa6f9a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36aec92c-b4af-4794-9536-0cf40ffc99bb", "node_type": "1", "metadata": {}, "hash": "9f61e90e3cf6222cad0453557dba29fa4656b2d87ad996c0b95a8bf1221add9a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 38850, "end_char_idx": 43900, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', 'vector': 'ꁽ\x18;ًL;;\n\x0bBXb\x07<\x10.\x1e=FB<1;Ҽ?\x17=\u197bwI|Q;\x12;{eRWŜLüY\x05=،<\x062ҴbEnYg\x17l$\x17\x13=ND1=\r!5"G<\x15\x0eD(!\nh\x1ab\x1d=\x0eV<\x07=h`\u07bc&=\n\x1bd=3u<\x1d;k[:\x04PО퐟\x1an(|<_:=7v<\x15aR\x00Ǒ\x0b<<<X=ԼbL=Bx<\x00f=jZr=\x0258r=<;fK?7)Q\x02\x7f<ܔo,:,\x19C;<;\x03\u05fc@To3\ru\x03=Vt\x02):s\x16=6\x06\x13V eRWVP;@?ޛ;+0;(\n?k%ڍ=*\x13<~ąw\r N\x07=;;ll\x14\x0b7)Q<;lI+"~\x15j\x06\x1e3=&+<@<¼v\x08̢BXg=\x0f=. P\x0c=^9=J<֡ٻ\x06\x172Ҵ:<8"9=!\n*9\x11oŻbLp8\x00\x01v=6b<;ll;RZ\x1e\x11\x00(=m?k%=Pp<', 'text': '* ***Time:*** *10:10-10:30 & 15:00-15:20*\n* ***Location:*** *LIB 3015 Tea House*\n\n \n\n\n\n#### A Brand-New Learning Resource Centre – Your Gateway to Learning\n\n*Xiaojia WU, Assistant College Librarian (System & Facilities), Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nIn this Poster, we invite you to step into the enchanting realm of the Learning Resource Centre, where the pursuit of knowledge has no bounds. Building a brand-new library is to build a knowledge palace for readers, thinkers, and dreamers alike. This poster provides a glimpse into the myriad treasures and opportunities that await you within these hallowed walls.\n\n1. Exploration: To embark on a journey through the vast expanse of literature. To discover books spanning genres, from timeless classics to cutting-edge research.\n2. Innovation: At the Learning Resource Centre, we embrace technology’s transformative power. You can dive into our digital resources, e-books, and interactive learning platforms.\n3. Community: A library is more than just books; it’s a vibrant community. You can attend workshops, book clubs, book fairs and lectures that foster intellectual growth and social connection.\n4. Empowerment: Knowledge is the key to empowerment. Highlights the various educational programs, information literacy instruction services, and career resources that are available at the Learning Resource Centre.\n\n \n\n\n\n#### Learning Support through LibGuides\n\n*Jane ZHANG, Reference Librarian, Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nAs a common practice among libraries, LRC makes program guides to help students of different programs to learn about library resources and services related to their study and research. The program guides enable us to further consolidate our collection to the requirements of program syllabi. Previously we stored program guides as PDF files on UIC’s Moodle – iSpace. With information from course-related books to databases to library services, a guide can be more than 10 pages long, and not very user-friendly. This summer, we officially move the guides to LibGuides. The platform provides us with more flexibility and possibility to present library resources. First, with the “page” function, the sections of the guide are more visible and the organization of the guide is straightforward to the users. Second, LibGuides allows us to add more functionalities for better user experience, including direct linking to the resources, the support of multimedia contents, adding notes or contents without disrupting the flow of reading. Furthermore, the guides are cross-referable, allowing the library to build a complete information literacy program to facilitate self-learning.\n\n \n\n\n\n#### Practices and Challenges in Academic Library Space Projects\n\n*Pin WANG, Team Leader of Library Operation Team in XEC, Xi’an Jiaotong-Liverpool University Library*\n\nThe poster looks at the practices and challenges in academic library space projects. It consists of 5 parts. The first part identifies the user activities in the library, such as collaborative learning, individual study, library classroom learning, socializing, events and exhibitions. The second part shows the functional spaces in the library, including learning commons, group study room, training room, reading pavilion, research commons, outdoor area, exhibition area, etc. The third part summarizes the most recommended practices of library space projects, including communication between librarians and users, frequent meetings with related departments, visits to other libraries to find out good designs, etc. The fourth part tells us the challenges and solutions, such as noise reduction, seat occupation and power outlets. The last part shows the future opportunities of academic library spaces. With the development of artificial intelligence and education reform, academic libraries are facing their challenges. In the future, the library should merge into the innovation ecosystem. Space innovation such as demand-driven and technology-supported labs to enhance user experience may be a very good start.\n\n \n\n\n\n#### Professional Excellence: A Library Assistant’s Growth Path\n\n*Cai YAN, Library Assistant, Duke Kunshan University Library*\n\nThis poster will share what professional qualities a library assistant should possess and how a new library assistant grows in the workplace.\n\n1. Learning by doing: This part will share some examples of how a library assistant learns from doing everyday work.\n2. New library, new challenge: Moving to the new library also brings about new challenges. This part will share the case of the DKU Faculty Works Project about how this display project turns from proposal to reality and the constant process of occurring and solving problems.\n3. The nurturing of leadership: This part will share some experiences in training and organizing student workers, thus shifting from the role of a follower to a leader.', 'ref_doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:75b0644f-1aa4-48e9-8944-0ad15f0edc50', 'payload': None, 'score': 3.1945188547897274, 'document_id': 'index.html', '_node_content': '{"id_": "75b0644f-1aa4-48e9-8944-0ad15f0edc50", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "152dfeb0-eda7-4982-885e-b8bd274fd1aa", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c646a76d-1b42-402a-a04b-29eeefc6ee86", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x03c\x05?nTG\x13\x0f;1yӼR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 3.194518854789727, 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 3.194518854789727, 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{18677 total, docs: [Document {'id': 'test_doc:bf0a7c7e-70fb-4d65-8182-f6e6535b6d54', 'payload': None, 'score': 5.615526318728727, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3957701', 'document_id': 'c62dd303-7351-4fc9-b4ee-d86962b4225f', '_node_content': '{"id_": "bf0a7c7e-70fb-4d65-8182-f6e6535b6d54", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c62dd303-7351-4fc9-b4ee-d86962b4225f", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "hash": "1a28484b9a8c055f3fe15a60f53decda8b0569b953e19467e63809e5e8d57144", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2951, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/ug_bulletin_2023-24.pdf', 'vector': '\'xvґDZ\x19z#\tHx0;w\x1e\x19\t=V<;\x12\x1eطv<@\x08@;.\x01:p;\x15Ƽݳ#\x02\\=MX\x0f\x1e=\r8Ѯ\x15@PK**ռ^T\n<=<`6;J|#k|;<{RZ<_;0;\r;[<3<\x1d<ҼDu<$e;DjxS=!2\x14=w\x1e=:ɼ4o<+e\x12-ûY\\{<\u0601\x0fG\x10\'BU;:=.\x01=\x1c:=TW<\x17ϼ><@\x16=K\x13N9CM;jO=\x05l\x07=\x0f=\x149;Ngd\x00<\u070e;\x05ؼA;\r\x188i\x05=\x16\x0e\rji|=\x0f\t;J-0Z9W=J\x0bAfc<>$8AI?/<5=a~g\x0eBғ7VN$9\x03 ;\x12;\x0f\x16o=M\x11;dY\x0f{p\x12\n\x12f/=,=k\x18=\x1fI;肓\x0bSe<<,\x0f=\x10`f \x0e=T=ꀼ.$=?\x13?L{<\x19DM=$;&Ȼ\x1dk껍ɰ;U:bg=<=QC;3N\x03Aļ8?-莼P\x0f,|F=;ϟ;<])\x1d=\x0ed< 5Rު<Ǽ{⌼\x01\x18<\x12}\x01<@\x198#I=Ŝ9e#;\t[|\x0bKsIJM<\tvr#.E\x07;\x0cŵ\x08:/i5\x0e:\x1b\x0ci<\x10=QWQdb\x02=uJM*;3(=\x82:<6.\x12\x04i\t\t\x13:2\rr\x16=,W;|<\x07\x1d^xzXE=$Re<ū;\x17)<\x0edU\x1dvޑ<\x14\n?\x0b?LA<', 'text': '# Registration Holds\n\nRegistrar holds, bursar holds, advising holds and signature work holds, will not be permitted to register for the following term or make registration changes until all holds have been removed. Students who fail to register during their assigned time slot, regardless of whether such a failure is due to a hold or inaction on the part of the student, will not receive any special accommodation in registering for desired or required courses. Such students might have their graduation date delayed. Students who, for any reason, fail to register for the fall or spring term are placed on involuntary administrative leave of absence and must apply for reinstatement if they wish to return. The deadlines to file return applications, including all required supporting materials, are 5:00 p.m. May 1 (China Standard Time (CST)) for Fall or Summer Term and 5:00 p.m. October 15 (CST) for Spring Term. Late or incomplete applications will not be accepted.\n\n# Course Changes after Classes Begin in the Fall and Spring Terms (Class Drop/Add)\n\nStudents may drop and add courses during the Drop/Add period at their own discretion. Courses dropped during this period do not appear on the official Duke Kunshan transcript. After the Drop/Add period, no course may be added; also, a course may not be changed to, or from, the audit basis. A student may elect to change the grading basis to Credit/No Credit following the deadlines outlined in the section on Credit/No Credit Grading System.\n\n# Withdrawal from a Course\n\nWithdrawing from a course differs from dropping a course. Students may drop a course themselves during the Drop/Add period, and the course does not appear on their official transcript. After the Drop/Add period, students may only withdraw from a course. To withdraw from a course after the Drop/Add period, the student must obtain permission from his or her academic advisor. After the Drop/Add period, students permitted to withdraw from a course receive a designation of W for that course on their academic record. The deadline for requesting withdrawal from a course in a fall/spring term is four weeks prior to the last day of classes for 14-week courses and two weeks prior to the last day of classes for 7-week courses. The deadline applies to course withdrawals for any reason other than medical. Coursework discontinued without the permission of the course instructor and the academic advisor will result in a grade of F.\n\nWithdrawing from a course is permitted in multiple fall/spring terms, as long as a student maintains a course load of at least 16 credits per term (and no more than 10 credits in a session). Withdrawing from a course to an underload (fewer than 16 credits) is generally permitted only once in a fall or spring term. However, a student may begin another term in an underload with certain restrictions (see below). A student may also be permitted to withdraw to an underload more than once if there are significant medical reasons (see below). Students are cautioned that taking an underload may result in a delayed graduation date (see section on Satisfactory Performance Each Term - Term Credit Requirements).\n\nIf a student notes errors in his/her course schedule, he/she should immediately consult with his/her advisor and no later than three days following the end of the drop/add period.', 'ref_doc_id': '1987d9ad-a507-4a2b-8394-3ce5b2a6cd44', 'doc_id': '1987d9ad-a507-4a2b-8394-3ce5b2a6cd44', 'file_name': 'ug_bulletin_ 2024-2025.pdf', 'last_modified_date': '2024-09-02', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d0115143-430e-4f6e-aef7-923890926e3c', 'payload': None, 'score': 4.228826264482768, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '112550', 'document_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', '_node_content': '{"id_": "d0115143-430e-4f6e-aef7-923890926e3c", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "hash": "0726ffc974b24f970bf6421bb51c3ade1de60edd796cf23d140f982f7c10de6e", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ab538701-256d-4eab-8f23-bc2b6ff6d2fa", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "hash": "dae3fb0c2d969c49b50eb5752ffc5029228f3af57c975ad492c0f38f4b03f58f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "705942d2-e4db-4a47-9d46-150d9de5cd08", "node_type": "1", "metadata": {}, "hash": "b7eace9b105576763f42d00293558e93727678f4acf348860de34c7fdd283cb5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6225, "end_char_idx": 10141, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', 'vector': '\'\x11<.#&=?e\x0c\x0e:\\vN9=;;\x04L=\x1b=;o;;gk=\x1b:2üWh3<"7O|11ȇ\x1e\x01=,=Z;$;y⼦\x16?nм\x17\x01>4\x11}=Q=f2C<\x06o\x191\x07)7}\x14Yi\x1bm<;\x7fԳl3:ӻ\u07bbK]]4+ae\x14^:\x13<\x1c\x1d/=\x01{\x7f;hټ\x14<-_\n=;N=6<\x1e8"-\x199,<\x04=_([ 4+\x05,Q%c=&=S;?Q\x00";=OGP<$\n;N%7\x1e=kG1u1Q\x10\x07=\x05u=\x1f:wgn\x1aY\ro<৵=<ͻ6=\x1d\nX<՞,><\\v+>;ȇ<|B˼Q\x12\x0bV{:!<Ǻdtμ<\x07FP8Ꜳ<<\x0b=o\nBT\t#\x1f{՜\x02)=([х;Q<)\x1a;\x03\x05=\x0c=G$Uk0\x15;<\t];=\x15\x1c_<\x0f\x1e\x0fb \x1d<\x10\x179w[2a=H<\x00żRa.<\'\x021]<\x0c=0\n;II;y]\x1drż<$\x1f(M|J<];\x0c=}<\x1aﻭUk=O=\x13j}:(\x7fh\x19\x1d=M knw}< s\x1b\x05kb\x12~3R\'\'=Y>*`\x10A\x13=-<\x0b=;م=0\t<6\x19\x1a݂TB<>;G;vqK_\u07fb̈<&,FFE;L\x0eϻ_<\x7fg2^ں\x14i\x0e=<\x15H=8nd\\p1e+ͪ)1\x02/=-\x1d=\x06@g<|<<<\x16;3ol\x1b0=伟Y\x00m\x00<\x06Qy<\x1ck:Wa\x14;\x1f=>?r=Gab\x0b$HtS=xк\x7f-7TZ]Ȝ<n= ش&\t4<\x13\x1c"i?[{+\x19<\x11W6e]暽H?>9&7:<<~<6yy?M =f;1<~\x0b2<\x1f=%\x0f;<\x02ɼ༕0;\x1a(<\\<\x11<$=EIt\x0bGׁ\x00=I<⋍8`\x7f\x1c%\x7f3i*:\'T=Ry;\x06=\x1cμG\x1d\x1a=\x1cټ=;=G.R?<', 'text': 'Students must have the permission of their\nadvisor to register for more than 16 course credits in a semester, and all students who wish to enroll for fewer than 9 course credits must\nmake a formal request to the education committee to study part-time. The Nicholas School does not accept transfer credits; courses taken\nthrough the Interinstitutional Agreement (see below) are not considered transfer credits.\n\nCourses below the 500 level may not be applied toward the required credits needed for a master’s/graduate degree. With the approval\nof their department, graduate students may enroll in lower-level courses as a course overload, but these courses will not count toward any\ngraduation requirement (including electives) and will not count toward the credits required to demonstrate full-time enrollment status.\nGraduate/professional students interested in enrolling in courses below the 500 level must complete the appropriate registration form\nand submit it to the Office of Student Services.\n\nThe DEL-MEM Program is a minimum thirty-course credit degree program. To complete the DEL-MEM Program within four\nconsecutive semesters, students typically take between 6 and 9 course credits per semester. Permission is required to register for fewer\nthan 6 credits or more than 9 course credits in a semester. Students must be enrolled with at least 6 course credits to be considered a\nfull-time student and to receive federal financial aid, if eligible. Students registering for fewer than 6 course credits per semester are not\neligible to receive federal financial aid.\n\n# Late Registration\n\nAll students should register at the times specified by the university. The charge for late registration is significant.\n\n# Drop/Add\n\nThe period for dropping and adding courses ends on the tenth calendar day of the fall and spring semesters. During the summer,\ndropping, or adding of courses is limited to the first three days of the term. Students are advised to make all class changes on the first day\nof class if at all possible.\n\n# Reciprocal Agreements with Neighboring Universities\n\nStudents enrolled full-time in the Nicholas School during the regular academic year may enroll for up to 6 course credits (two\ncourse maximum) per semester at The University of North Carolina at Chapel Hill, North Carolina State University, North Carolina\nCentral University, or any other university participating in the Interinstitutional Agreement provided that they are also registered for\nat least 6 course credits at Duke during the same semester. Similarly, graduate students at these universities may take up to 6 course\ncredits per semester at Duke. In the summer, students may take courses interinstitutionally provided that they are enrolled at Duke\nfor at least the same number of hours they wish to take at the other school(s); graduate students are limited to two summer courses\nat other institutions. This agreement does not apply to contract programs such as the American Dance Festival. The student must pay\nany special fees required of students at the host institution and provide his or her own transportation. A bus service sponsored by the\nRobertson Scholars Program travels between Duke and UNC every thirty minutes during the academic year. The reciprocal agreements\nwith neighboring universities do not apply to distance-learning programs. In general, online or distance-learning courses are not part of\nthe interinstitutional agreement. If a student identifies a course at one of the participating institutions that is offered only in an online\nformat, the student may petition the Nicholas School registrar and appropriate program chair for permission to take the course through\nthe Interinstitutional Agreement. Decisions will be on a case-by-case basis with no expectation of setting a precedent.\n\n# Immunization Requirement\n\nNorth Carolina law requires students entering a college or university in the state to be immunized against measles, rubella, tetanus,\npertussis, diphtheria, and in some cases, polio. Each entering student is required to present proof of these immunizations in accordance\nwith the instructions contained in the Student Health Services form provided with the student’s matriculation material. This form should\nbe completed and returned to Student Health Services prior to the student’s first day of classes. Duke University cannot permit a student\nto attend classes unless the required immunizations have been obtained. Students who fail to meet the immunization requirements will be\nwithdrawn from the university. DEL-MEM students are exempt from this requirement unless the student’s status changes to: on-campus\ncourse enrollment.', 'ref_doc_id': 'ed26f0fc-60ea-49a6-9b72-478e3d1f6b3d', 'doc_id': 'ed26f0fc-60ea-49a6-9b72-478e3d1f6b3d', 'file_name': '2020-2021-NSOE-Bulletin.pdf', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151403/2020-2021-NSOE-Bulletin.pdf'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{43507 total, docs: [Document {'id': 'test_doc:2c4c81ee-bde8-49b1-8d01-2b0033ef4b75', 'payload': None, 'score': 18.09628647068192, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "2c4c81ee-bde8-49b1-8d01-2b0033ef4b75", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:26", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ine.dukekunshan.edu.cn/project/your-g/irl-rayray-cross-national-media-content-creation-i/n-cultures-through-the-lens-of-university-students", "filename": "index.html", "filetype": "text/html"}, "hash": "bc47c1f264d861136a121cdf3db84b9a96a9978021ec6b2a6b73b4bc30ad7a3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ae5a82fc-09f5-4ebd-916e-5e983441cb2e", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "c5a0b0aeb9b1d0b8e5a16916bc7ecc855065f27a81457ee096c8d326d3aa7f43", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b69bb5af-6195-49ac-ba00-e0d15f55fe3c", "node_type": "1", "metadata": {}, "hash": "55882c9c41472a69c8dc473d9af35114fdfc02a816745d3d00772647f92731f4", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'c*C\t$ݼ*\x16ݼ4;,l\x06\x1c\x07=jVW\x1cHƻqh:\x07\x15\x1f=WCb;\x17D;=\x0c\x0e\x01\x02&ϻyN=R/;Ż\x1c=e\x07\x1c=T\x196<_O;R=n1e;<\x06_\x0c=T\x08뼻:Ǽtm|Y:ԝ\x11\x00<߅<\x071=DV?b\x04<_~`ݼ\x0em;hW};r\x1f=j"\x17D;=5x=\x16c;&ռh`4=\x17D;$\x08%l\x03=OߛZ=e.O»7`мV;r=k\x1c\x0c\u07b4Si\x11S<ɼ\x1cR7\x0c;O`*=Mf<3\x07\x05:\x00\x15\x1c(=\x07T=T<)W(<:\U0007a4bc\x1ae\x08%9N\x03=c\\F=O~J.m^\x08WY:1\x08}%:\x0c\u05cbbFû\x070=a\x00\x08V(*~{<:<=4<=A<\x15-u\x101-x\x7faޗ<\x12\x19\x13V[\x10cR(qfKZ:\x0b\x06;)W:;\x1f\x0bEt<;,<:_}\x1f\x0b<\x07`]\u07bcv:t\x1e`C6ѼO#;5r=XH\x1cg:<%L<2fm3==X\x10"A;VjؼJ\x16=G\x07ir&\x04)=~\x12d綼^Y¼\x10\x1aqX<\x1d8(t\n紼*<:=~m\x17<{o8\x0e<3I<^9XA\x11g8y\x17\x1260d#\x17v=\x0c=kn\x17=6Ċ0\x04\x01=k W={<=\x0b\x18\x06\x03=\x0e0=\x0e<\x1e*$%,\x1c\r:JĻ+=L J\x10\x12\x01= g08Z=[\tm:\x16\x10\n<˼1\x12X<̌<\x0b< g2;\x10<\x168=͞\x19{<#<]\x1e\x17\x06<(<\x01;\t_=\x02W\x04\x02=$\x13;e\x15\x07<뺮\\H?8<,VI8B5ż\x03=о\x0b7<ܮ4=܇\x1c\x11\x13δ;3<ؼ,\x08ح(=UVù\x1a =:}P\x0fA~ü*=i\x16\x13{M+Hz\x11;N<\x1e=n%\x00\x19c<;ҭ<6e=3"=R\x0c<[TW2J\x04T]*\x13=v\x19@: wPi<\x01Y=\x1e\'\x1e\x04@=9\x7f<<\x02\x07PЏ\x19d<`Yg<#@ukջ=\x13;%>;2n\'\r$+y\x07\x01f\u07fbb5\uef3a\x12;(<\x02=\\<\x114\x111\x04=\x0ev<,\u05fb(\x1b"<[k{\x08&.G=;\x04H;\x05]\t>iY.=k;c<<\x7f<÷gE7;\x00R:vV:<\t\x00=\x11;\x7f:<̘<4;\x16hZ=zʻ᩼e;&b_\'=\x1f4L-2?=Z*\x10<\x116ٺ\x08|&=n3;\'\x17<\x116Y\x0e\n?,\x1dC&>\x1d@\x19A=\x11\x15;#\x13Z+\x19.E$7;\x1cS\x0f=8\x0f3np\x143+\x1c\nx=Rs\x08=:\\05i2=MRźDi=\x1e<`հƲ\x18\n<\x01C_^:e;|h<\x0c\x0e=<\x7f&@\x1aa<50\x01\\0FR n=$;I\x12[p\x13\x1e+\x05:L@=/`i<Ӏ=}G`μ|!\x17<\x19 <ݽd[/<\x0f#\x02\x00t=\x18}ټ\x0e=F2tS\x14OB,:ۆ<\x04\ueffb\x16.\x04=;uM<\x11<&8<Լ\x16J<<鎎B/g\x17Ȥ6<)\x12W<%+E;\x03\x04;5V=Bz;\x11plM*\r\x06]3okۼU\t\x1e=\x18<`\x08Z+;&BKF5Ț;G_0\x14=HdtTټ\r&< ;\x1alC=?=~\x11\x1f5ֻ\x13\x0f<&#I=Z`\tխ<$3e\x7f<&B;b\x1a[M|=";N=/`<$\x064p;;U<\x0bq9{x\x14M-;\x0c<ǀ9\x14\x05=\x0b\x18;\tH<1_܀;\x1be;\x02=ϼ\x1fH\x020=)9]ZŻ<\x15\x1dN<\x1dIX&;rZ=&%|!\x01^\x1b#=\x02wF\x15o:8ȼɽ=\x03V<\x03[=u&\x0cA^*fV\x1b5=ʻw-%="=:8*f\n\t<(dUN|;O\x19=\x18;"AR\x12"=m\x1a\x14V%5\x08=G\x05\x7f%<\x1a?˼\x0b=SvlǼ<;\x04YXw<;&<|&9\tr\x1f1;ۻ<\x16\'=o˼)Kq<|A;<;lM=}D\x08z&9Z$*x̶]r/T\u05fb\x06hPT=d%=h\x1c{R\t ƺya(\x11:=~䇻V\x06;VgOn9=(d:Ԓ(+9\x06k\x00Q?a=ju\x1c\x1f=*\x15\x10\x16\x15<\nzw\x0ef==49Az/-Tҭ< M[<\x01<]0r<\'o\x07&\x13\x0c)Aub=?aȺ)A\x07ΫSoPpM[=8xJ<\x10<7\x1a<^;t쏼sk<ݼ\x13DO=I\x11=L\x0c<\x12=x=\n-<<<*\x1bb|=(8\x0f<6<\\;f?=\x04=\x05i\x15Ol;\nz8P^^0*\t4E;,\x140VB\n>= ۻ;\x15=?\x19;+qX=ą%T=\x02:Ģ<\x14SQ;]<}\x05\x0fW47|\'=gAE*:ϘO p="<_\x0f=\x1d\x07=n<8g\x1d:\x13\x18<\x00\x05Ik\nv\x05=ż\x1f\x0c<~\u07bbBkHD;ta:L4\x14\t\x1cO<\x17\x003\x1a\x1d7\x01>.\neY*=N=I\x05\u05fa+\tV9m\\<<[<Сn\x1d<\x03\x06%\x13<@=\x03<\r\x0eNq}\'\x1bw^N=>aP=鄒`US\x1dSL\x1eh\x14;\\<\x02LXJUV?8ɥ<~ϟ<\x17=Xb;0\t\x15i\x1b= u!;\x10<%|\x1b\x1d\x00;\x14=\'^jA <8!1鄒Y\x1cdu}<% \x126p#&S=" \x12=\x14\x109; ;W(Ӽ̢;;Z0<>9KY\x15v\x0ci7ۆμ\x11\x0c=12?)7dVerjռ/6A7\x19<"R6;<=z\x1dS;\x15t9s<;ּlihizL\t\x0e\x01x<͝Ҽ\x11\x7f:\\|Fϭ\x1e漵J=eY*=<\uef04_;\x14\x17=i7 u<|s\x1d=̢<_\x0f=\x141\x11=:\x14":8Rfo;\x15}sg\x0e$<\nm\x00\x10=m!;B\x11<\x17\x06=0GJ;bb9Vh\x06"\x1d=\x1fA;\x03⼹(=<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3R_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 86.04144183004362, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 85.79329988783277, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 67.84771553764907, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 66.96360850680638, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{17534 total, docs: [Document {'id': 'test_doc:a3142f03-b03e-441e-9145-cd8db74a9829', 'payload': None, 'score': 24.640297524336233, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '135317', 'document_id': 'e3d484ea-0b8d-4a2a-8390-5a54898ee946', '_node_content': '{"id_": "a3142f03-b03e-441e-9145-cd8db74a9829", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 135317, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e3d484ea-0b8d-4a2a-8390-5a54898ee946", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 135317, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html"}, "hash": "71b24b2ee13f18595183b8296d4c42b8622ec1facb75d8fb2aba38a3b8c96856", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "de8de648-1ddc-42dd-8935-914cf27506bf", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 135317, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html"}, "hash": "5fb3274fd35dad69a18d0c4cd77cb8baea6d828a186911ec3b04127090269193", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5566, "end_char_idx": 8500, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html', 'vector': 'vE|vS/wa:%DB= =h1ilN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 14.485480856092394, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -socket.send() raised exception. -Failed to export batch code: 401, reason: Invalid token -socket.send() raised exception. -socket.send() raised exception. -Failed to export batch code: 401, reason: Invalid token -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. - -Result{30128 total, docs: [Document {'id': 'test_doc:5e676ad4-c30d-41de-a215-02f000ca4183', 'payload': None, 'score': 42.382610985986084, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3930468', 'document_id': '609400a2-2e30-408b-9d3d-7be31783a56c', '_node_content': '{"id_": "5e676ad4-c30d-41de-a215-02f000ca4183", "embedding": null, "metadata": {"file_path": "/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf", "file_name": "ug_bulletin_ 2024-2025.pdf", "file_type": "application/pdf", "file_size": 3930468, "creation_date": "2024-09-02", "last_modified_date": "2024-09-02"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "609400a2-2e30-408b-9d3d-7be31783a56c", "node_type": "4", "metadata": {"file_path": "/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf", "file_name": "ug_bulletin_ 2024-2025.pdf", "file_type": "application/pdf", "file_size": 3930468, "creation_date": "2024-09-02", "last_modified_date": "2024-09-02"}, "hash": "ef530633b56c0794222125df47408ad9e4fd59dacd94b64d836df1ae72cf7282", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2367, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf', 'vector': '|䢼\x17F(z<Ν\x13$\x14SћI<^:\n<>̼\x06\x00zm_\x17\x14J\x1e<\x19I9l\x1b%5\n\x03\u07bcR=!Vm<\x05=1\x03<6y:9A\x1e=5A=8\x7fJ\x06NV=h><\x18\x11ּT\x0fch<\x148A\x05=\x19h>p\x1a);\x10쐾Xf<\x1f\x07\'5ռqD\x02Ur9u<_\x0eOKw\x04;_8R\r\x03;\x0e%!m-9Ga=3Tr=\\$u\x00;J\x0bʼ\x0c<*w3\x1bη<Ν˼(ּMMKp;\x0bJ<\t<`R<\x0b<փ\x0eƲ<\x193n=\x0e`4ޏsټ|D=ռxH*7\x1dFɖ;G={;u\x06B̼BƼ!te9(=V\x17=lVM$M\x19SS\x7f=e@Ng<р<"\x7fV"\x1c(<\x1em:DSj9Su&\x02,=xG&=v֨;\x1a\x03<1<Κ<\x00;43>S9=\x11<\x10c\x14=ZH<֝;u;X<=F\r^raYL\x0eU\r;*\tM3=\x14S<\x07\x1ax\x0fb9KrWI\x01;K:\tM\x1a㍼;C0oԼN^*\x01<{\'ü+\n\x06=9`\x0b<_\x02<>\x1b\x08)<7RX;=Vk[<\x1aּhS~\x0f\x03A㼐*r\x08=\x0b*ګa<6t;wc\x06vb=7߁\x0eJbڻ\x06:\x14м\x056<\x03\x0c=\rnv`kֻ\t\x06\x14\x00<ӧ;W\u07bcG\x08]\x01\x17!<\'+k<\x1düxg\x1c\x1fh\x1e;\x12\x1c\x02fC<ռ\\=^\x0e\x10=\x0f`=\x03\u07fcd< \x00=\\<8\x0bz<=C,<2\x1a=ټ:Q\x1e7b4;ƜЇ:ݣ;W<3\r<ڰ-_v<~{=Ƽ\x03ʫS~\x02N\x0e\x104GASEYW\x0f;T[:Jºˉ;vd]=\\;:;#\x19ò=\x1d\x1f;̑\x08.(;\x18F\x1f.$=R\x18\t:x<~\x059\x003<;ڶм\x0c`J=\x13;\x15c#!=d<\x12\x03!\x08\'\x15r\x00=\x13<\x19\x1c<"S.<7RXo,:;F.~f&<1eP=wYnD\x1c=F<%1eк1\x7f\x11\x1dY<\x10-y=m<6m:g\x17Ӻ\x1a:bZ<5E\x11\x1dY<;5=މ\x108\x0e;@:*.O? \x13\rs<\x162p4\x1aa*;@A=kT|<%K^PvC\x06\n<ԋ<&ӻ!Y\x019I%xO>;F)\x1a;\x14\x17\x1fFro\'<ݻ8\r\x07<\x0bB軬F;A;77;),\u05fd@=^v:y\u05fc%K\x1e?$"\x16;\x1eW6~=EE\x1ek0\x03=t\x02*=i}]\x00P=|So%o[\u07ba\tV<\x08-D\x01=%xOfqg"\x12<(=ڿn\t=$F;\x11G=m<6~OS;\x03ǼڱH\x16<\x1aU)\x1eTwv2=\x0b>ʡ\x08Qp=a\x11wG<\x1f\x12=8\x16dء\x18<\x1eW\x11_-;8\x07\x13<Ǔu<\x14<,2ET.\x02w0R\x1a\r-;q\x18=\x15\x1e3<\x1dg\x0b\x16^ͼu7=\x01<\x0c)\x1ca\x1dG2\x1ch<\x00\x04\x7f64\x1bL=\x06=\x015ǓܬZ<\x01}sx\x06#@\r\\f\t\x15=";\x0cv=\x16\x0f1[=J[\x11kH\x1d)<֕Y\x07=\x99&\x08w|ﻦ\x05sEE=QcQ=y)hq<\x12U/=0\x05=:q^\\\x19<{\x1e\t2\x0f<\x18=\x00\x0f"\n\x17\x02._1VQ=&Sql=:ѻwL;=Qđu==!\x1e:H;d p<\x18tײ26;z\x02\x1d}O\x0b\x19ӼK\x0c=X \x00q\x00q;\r\x02ftI\x1d\x0eڻSA86<<7\x02N,\u074b< \x0c<8\x05g;AȃN[Qxջ\x157{qe\x06\x04a=мQOҼ\x14?\x0cTR9μg=]|\x1c\x01=\x08\x01:ʽLP\x1f\x1d\x1a堼1J\x06g=\x00<\x06\x04a;]Ժ,!ü[N;&"=<+&<$\x00"P%9lcA;\x13\x1em\x12=\'\x1fA\x1e\u07fcs$\x1bϼ:k\x14<\x03ZT;;Z<\x0e\x14\x14=S_\x1eVC9,g=\x05=i<>ʼ7<\x1cs\x10=d<Շ5<\x1b\x18@W\x1b\x18;\x0f\x03\x7f\x1f=R\x16<\'\x14\x109c<9%*=\r\x10\x12\x10y\x018%\'-?i\x0b=&"\x10=\x0c\r\x04=\uf67czm=p\x0b\x0f\x13\x1e\x08+i\x0b=hݼ!ԇ*Sq\x128^2=O<}\x1dA.=X<._GR=WE=YT:^S9\x120#=\x06\x04\x14<\x1b4ȋ;hݻ\x15\x12=Ǽ\x06ż)6==-6\r\x02A\x1e\u07fcM*=\x19\x1d<ǼH#\x13=o\x0bWE˰Z;\x1b@`(=\x03\'\x12A<-\x03=,!C/\n\x18\x1e~>;k:!=Q\x08;\x14<\x15\x11=Z_+=\x16\x1c=Vka;<\x14;@+S=,gG<`<\x1e=<\x12\x0b);c<~\x158=g\x13<{;6ż7F<-\x1b<:9Xٜ,d):-\x120T\x05Q?z\x18;\x02=\x05TbJ\x00<9a<<\'%\x03K8\r\x08<\x0eh2<4gR=\x04\u05fbM\x02@Cⱼ&м${$RI= 4;Ҙ<\x1f\x1a\x1f=X/K_\x0ehߏ\r=ٶ<5+;,X=\x10<&\x069=\x01$,0\x0f=PkUm@\x0bx\x07=(."ʺ$<.:缅q=<4o;C1|<*a<6;)\x0ed<\x17_L\x0b<\x1dL=R]+<>7R]+<<>=xrϼ7\r<\x1eX&=<\x01ʟ.\x04\x1c=\x1fr<\'F{:\rk1aB\\(-0B4\x10<|\x16;\x17F{\\&|\x16=`X=hJ<)j6b\x02=(껲{[/eJ/g\x14S\x18aa:1~\x0cP64kn¬<\x0b\x10;,n!\x00;9 H<\x10g\x14<\x1b;Ƽ?=i\u07b8;r#uu{ci<\x14<[v;\x13?=\x12\x13=#h\r"C=;Ԯ\x1bi;B\x19t=w<{\x1bXAi\x1e=E\ry<\x039*\x1d`<\x12[<Ͷ;{\x1b|9<\x1b9k\x1e7\x03{=$G\x04<\x01F\x12=Y\x06\r=yD:\x10l\x11<\x12<黼e3P~\x10r2Ы<\'#<@\x02;AºɁ<\x04<$\x16<\x154-\r=Kq!<0l< W* =&=\x19=~<(\r=VLц\x18I=ޛ<\x11Z\x13(;;;P6\x15;eO\x18\x102o\x13\x7fdˮ-H\x1c\x04iB=\\y<=c\x1cv:\x05۹-b$;im\n\x07=<\x15yUt;ױ;$\x12=~D<:^e(I\x04y\x19\x03YL:-5;\\Cq;\x05;\x1b\x10;ȼ&U\x1cVpG\x15ȿ)=z#:\x0c\rC<֬ hlM3R<\x1d\x1d8747<<䓽C\r\x15<_+炽U\x11;\x1fqY9<\x0e;;\x0ed]L<\x01P;\x0f\x04;|d\x1d=\x7f\x1aDZ<$<>nG}{|Ȼm\x1f\x00yl<\x10w!9T<\x1a;<#=:\x1bt5<\x7f9-\x07=d<){ƶGd 9=7R\r\x00_;\x0c(=B6C;X_,\ueef6/;;/\x00;9=\x1bH\x06<\\<\t=\x19(I)=\x0b<\x0bl\x11<-\x0e_uU<\x1f\x04<#;\x0bsy<5:즤;r+!=Q<+\x0cʼ\x072,?p\x02U\nRl=tzּw$<5;\x0e*\x07\x1dWǝ\x0c[N<~_4\x7f\x11<0\'\x07\x05\x18=BF;<&,=$\x12\x05H_z6<\x13M\x06\x10:Fy\x12\x12;\x11\x02a\x10,=\'aԻ֬<;O9%\x1f\x07ʼ\x10\x0c\x14\x16Ee\x0b=19=\x0285<\x13v<#h\x14\x1f=R:f:eK\x18|ռ<4\x04qѻ5P9\x7f0=\x119G\x15~"[q\t<\x0f=>X\x0b:A<\x0b\x19<|CP-<ؼ"=]L:2Fy<\x0c[N<\x15]P9<]*,n\x0fJ=\x1b\x14;1\x05;:]+F\x13=M j"ؼ\n;c$=\t)\x03=X}\x04=&\x0c!<\x14p\x04\x05\'\x1a@<8;fʼ%\x7f\x02F:O?\x01=^;;-O&\rx\u07fcdŻ\n\x00<7\\<;\x17r\'?¼w.F\x00gpg%ι\x1b;=&\x11$:i\x06)<\x1eļ-OE<\x1c\x04:\x0f\x10̈́< ]:O\n\x19(\t\\\x14)d\x16=*(\x08\x18tv(\x13=ھ<\x12\x0eƾ1/|kL<@<\x13O=\uf05b\x17;2\x03X#=7\x17\x16|T;r\x0cCػUf:K̈́;\x03pxKE=\x1a\x0e=1\x10<@<\x12\\<9\x1a;Լ\x1ew\x16:#<\x08=\x16hѧ<9V)<\x03b˽Mh`ѐ\t*<\x0b\x0b=!=Pd9-r^\x1d<\x1a;\x16=S\x07069I!n<\t=5<\'ɻ$<+=[ƍs\x1cJ<\x0e:\x16<\x0b{Ra;]ͼkl;VȽec#<|~K\x01Z<\x060;ߛӼL<\x01e9%9;\u058c=\x009i&\x0c!\x0ft4<\x11=QY\x18\x0e\x1eʫ\x1d\x1c4<\x114$=\x07\x03=Y\x02\x06<=b]=1<[+=3d:\x7f\x16ÕQ\x18cE\x07ϻlD9@=?-)Ҽ\'EӼ\x01P%]^=C4\x05\x02x=\x19\x12P=<\x14<\x15\x0c \x19M\x0e<\x7f=Rڼr=\t<\x02#=G;\x1f&:0<;o(00<[#\x06=.\x1f;^b\x06\x02<@EƤ<\x07n\x06=\x1bn\x07=\x1e="!<8\x0cۍU\x01W<2:x:9\x15l̟;{\x1dV皑l:NQ\x14\x0b?:\x1f<\t^\x7f\u07fc\x16\x1a&=\x0f>=7Ƽ\x1c<\x13\x14^\x1a\x0e0=g;<=R*|=ܷl\n[V\x0b\x01\x14-<<\x11n!;Ng܁<\x14-\x12=O<\x0c3;|\x1a\x06\x0b\x03\x01:\x15\x03;ߗl\x06\x1d x#=\x11\x0b 9<<5c#\x13{<\x16\x18һ(<\x1e<\x1dV119]\x02d\x1f=\x7f_=\x05!=\x7fBz?u\x04=\x13\x1c\x19;4\x055<мml5t\x01=\x1a\x12伢?Ԏ\tѺ\x7f=Qw\x0c>\x07\x0b7=\x02e\x03ȼ)Bռ4<7<\x14-<$<\x08\x00(M\x11ѢۍU9==%ۻ\x08TMm\x17&<~\x0b\'\x7fNU̼\x02=<\x05#惻\\y\x05\x17*ػ!)SZ<_:U<\x02B;\x06\x1e*mQn<&;f\x7f:Wg=[U~[,kb<\x0bv\x03EC=^<\x03|=yMS<\x0cBTO\t(Z\x1eD$O=\x01T`b=\x02\x17\x19U_\x08*m\x14/>;zD\x03\x0e傽g벺:\x02Ik7:l\x0b<^s;e>xVRr\x18\x16:)/\x1c\x1d\x00=LQ<&<4H:S\rlQ\uef16O\x15|\x17Y=\x19\x1btH\x7f"<:W<˳<\x0c~$s<:8<\x0e\x1a\x1d<\x15\x10.=a(;8<\x1a\x1c;\x11$3\x1061:`\n_$4˥aЩ<ɻp\x1e=\x11$3)\x06D\x01\x0c!vzN=;5\x18b=\x16<\x12\x1b45vX\x04<\x192\x11ly4\x08<\x0bv<\x17L\x03;+tɼ6=f{ͺP;;KV`\n=Jl\x05=ɇ\nVp6\x1f+;^\x16t=u\x1a<\x03\x1f<\x1a3#=j6c:[\r\x0fc<{C=H2\x19\x7f=\x1ay<\nB\x12;v;;=<\x04z\x04\nXs4<66м\x00JS=(<ø|\x10\x1b\x0cW\x08=a<&<\x08<\x07Lλz;2<֟Ѽh\'\x11f\\<)$5\x13y;A\r=eU\x15=\x17_u x:մ<+=̅<7(<\x18;nd\x07W\x02%\t<9#=΅K>W=l<;\x05;\x143;3\x00\x04\x15\'\x0f=0@:jl}g<\x0c3F<8\x1fq<3ύl\x1aЭ:\x02\u05fcu5Ӽ\x1eU\x05=H\x13\x1c!\x0fqvv\x14<\x1ev<<\'<л\x14M\n\x067+<\x1aIq\x10\r<<2<:OfM\x1a<; =8\x1c<\x0e<;w;S1wѼy><\'+<+dK;DλI\x1f:4s;]4^vY;Ǟ<p\x04\x1f:CS5Rx=\x0f[7\x16\r,<5\x14F<\x1d\x03Ud=xɺX;s*S\x10==0|ցd;nJ}c\x10j̀^vYS3=//<^vY!5\x02-A:$\u038bSb\x14<\x02Щ-#=8춼\x1bL"=Ěu4U;\x08:\x0bspm<`O<\x15vkT<~hg͊\x1a=\x02+p@=Ud<<\x1cf?=\x056,W^o;Rc:`J\x01=k7W7c\x07=tX\x1b=,.Z\x03=<$=q-<\rZm\\=i;\x08K\x1c=;0ɇ<(<ļP\x01%<\x08<;\x06"B;\x14-=3퉼\x1ag~\x1b6\x05Le\x1f=2\x13=\x08\x00\x0c;\x06=>(\x1bk=.\x03\x1f_<} =6mI.Ȳ!DC7;H<+Uȗk\x1dH\x0fȼj<\x14;e-<9t\x1cLB=uT<$\x05zЫ<\x10\x15Iz\x12=\x1bTLHm\x06;\x1d0N2y~<^=\x0eƼYa\x16<\x00!=.>2"<4=q\x19<ź =\x01~\x00=J?<\x12\x07ѼԻk\x0em<5/\x0cj:FL=^;<\x13N\x04=):]\x00:\x15\x0e:JɻZt0S:Er=\rx\x0f<\x16\x14-\x07jcC#<\x0ez+~\x1b<_-Nh~\x1cb<*ݻt\x03\'=<\x13%\x14\x1aP5;!\x0fԱ\x14\x12?\x02={\x1d;ݚ<*]\x17\x0e=!uB=ź AhJ~4u;\x05)n&9?\x12`l6\x18w\x1b\x7f9Zl6=Fd=ͽ:\x03(', 'text': 'Visiting College Students | Summer Session\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Skip to main content](#main-content) \n\n\n[![Duke 100 Centennial logo](https://assets.styleguide.duke.edu/cdn/logos/centennial/duke-centennial-white.svg)](https://100.duke.edu/ "Duke Centennial - Celebrating the past, inspiring the present and looking toward the future")\n\n\n\n\n\n\n\n\n\n\nEnter your keywordsSearch\n\n\n\n\n\n\n\n[Menu](#off-canvas "Menu")\n\n\n\n\n\n\n\n[![logo](/sites/summersession.duke.edu/themes/tts_labs_ctrs/logo.svg)](https://duke.edu/ "Duke University")\n\n\n[Summer Session](/ "Summer Session")\n\n\n\n\n\n\nMain navigation\n---------------\n\n\n* [Duke and DKU Students](/duke-and-dku-students)\n\n\n Open Duke and DKU Students submenu\n \n\n\n\n\n\t+ [Courses](/duke-students/courses)\n\t+ [Calendars](/duke-students/calendars)\n\t+ [Tuition & Fees](/duke-students/tuition-aid)\n\t+ [Summer Session FAQ](/summer-session-faq)\n\t+ [Drop/Add, Withdrawal and Refunds](/duke-students/add-drop)\n\t+ [Housing & Dining](/duke-students/housing-dining)\n\t+ [Register](/duke-students/register)\n* [High School Students](https://summersession.duke.edu/credit-course-options)\n\n\n Open High School Students submenu\n \n\n\n\n\n\t+ [Credit Course Options](/credit-course-options)\n\t+ [Calendar](/calendar-0)\n\t+ [Tuition, Fees & Payment](/tuition-fees-payment)\n\t+ [Drop/Add, Withdrawal and Refunds](/dropadd-withdrawal-and-refunds)\n\t+ [Transcripts & Transfer Credit](/transcripts-transfer-credit)\n\t+ [How to Apply](/how-apply)\n\t+ [FAQ – High School Students](/faq-%E2%80%93-high-school-students)\n\t+ [Language Proficiency - High School](/language-proficiency-high-school)\n\t+ [Policies](/policies)\n* [Visiting College Students](/visiting-college-students)\n\n\n Open Visiting College Students submenu\n \n\n\n\n\n\t+ [Courses](/visiting-college-students/u-s-students/courses)\n\t+ [Calendars](/visiting-college-students/u-s-students/calendars)\n\t+ [Tuition & Fees](/visiting-college-students/u-s-students/tuition-aid)\n\t+ [Visiting Students FAQ](/summer-session-faq-us-visiting-students)\n\t+ [How to Apply](/visiting-college-students/u-s-students/apply)\n\t+ [Language Proficiency](/visiting-college-students/international-summer-scholars/language-proficiency)\n\t+ [Drop/Add, Withdrawal and Refunds](/visiting-college-students/u-s-students/drop-add-withdrawal-and-refunds)\n\t+ [Housing & Dining](/visiting-college-students/u-s-students/housing-dining)\n\t+ [Transcripts](/visiting-college-students/u-s-students/transcripts)\n* [Getting Around Duke](/about-duke)\n\n\n Open Getting Around Duke submenu\n \n\n\n\n\n\t+ [The Duke Campus](/about-duke/duke-campus)\n\t+ [Parking & Transportation](/about-duke/parking-and-transportation)\n\t+ [Your Duke Identity](/about-duke/your-duke-identity)\n\t+ [Your DukeCard](/about-duke/your-dukecard)\n\t+ [Academic Services](/about-duke/academic-services)\n\t+ [Counseling, Advocacy & Health Services](/about-duke/counseling-and-health-services)\n\t+ [Buy Books and Supplies](/about-duke/buy-books-and-supplies)\n\t+ [Technology Help](/about-duke/technology-help)\n\t+ [Duke Libraries](/about-duke/duke-libraries)\n\t+ [Athletic Facilities](/about-duke/athletic-facilities)\n\t+ [Other Duke Programs](/about-duke/other-duke-programs)\n\t+ [Exploring the Local Area](/about-duke/places-to-go-things-to-do)\n* [Contact Us](/contact-us)\n\n\n Open Contact Us submenu', 'ref_doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e432f465-7336-43bf-98c6-3fdbd05f66c9', 'payload': None, 'score': 13.777432642440806, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '72941', 'document_id': '978cc5f7-518d-46c1-9a1e-bd564203f398', '_node_content': '{"id_": "e432f465-7336-43bf-98c6-3fdbd05f66c9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "978cc5f7-518d-46c1-9a1e-bd564203f398", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "hash": "a7cd9e930147aa8e0f3b4488d046ed23e992188b48df2708094d8b6c9da528c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0bd6314a-1e94-4749-9a6e-5da9c1fa0569", "node_type": "1", "metadata": {}, "hash": "c6bce8616e4a8e6d7db737b8856089e976713a4829bc3fe8d3c9ec16aa6bab96", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 17, "end_char_idx": 3353, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/summersession.duke.edu/index.html', 'vector': '̒\x1eϽ𩽲J9TD)[\x02͍輟d\x1f\x0c2=R6p<~G/\x04=5`=NR<]\x03{<"ú}%i"7^<ꚼXQq=tk\x17;A=\x1c?W\x07(\x0f!;J;uf\u07bc;!<&\x170(<=Z\x10\x08G;:\x03_}=2\x00<\x1a<ꕻ<\'D4<*\\讲;NBa<=^v=<\x14=\x171B9a[=\x18h=@V;~\x1evL0/\x04=\x0eQd?ﰻA"\x06<\x01\x11so<[\x1e̼\x7f<-t=\x17=\x1fd;7\x1aR\x0f<#\x05ϼRp\r:@9=b=\'\x10XCۃ=n:<$<(n<ۼkB<`89Tļ\x07Qoq\x15a<4w=d{j,=J%<.\x11T <@1\x1a#\nl;8`$>=w3fZT鼫\x0fȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{13341 total, docs: [Document {'id': 'test_doc:0363f1dc-b8ae-4a16-81f0-ec57093c5a61', 'payload': None, 'score': 12.178302574993294, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '68482', 'document_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', '_node_content': '{"id_": "0363f1dc-b8ae-4a16-81f0-ec57093c5a61", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 68482, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6d2b6150-a682-4478-99a5-089ba484a7d1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 68482, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html"}, "hash": "f5ab7336a0cbb6026305b4daf0a354eed20b3e653bd45927b1ceb0d65a7b5e83", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d7d59859-b443-433f-b488-5baf318c9a39", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 68482, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html"}, "hash": "e0e01121b0cd7adb627ca7e973b8cad2911c994079b33168f08d3048d7af0aa7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9690caba-2ff9-4c58-9d31-88dd11fd5a37", "node_type": "1", "metadata": {}, "hash": "c4b8275cf4fe1368324a75315f90b150fca8d173d396f5f0080e14674fd6a0b3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3616, "end_char_idx": 8202, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', 'vector': ',{>\n-֞@C\x0fqI<ҠNL\x07=\x7f%:nмAcM6<7Յ\x01Qʧx)ެ\x1b=\':\x11\x1f=Y[k\x06{.v;:%Э;$t\x07\x1c=F*z\x0e\t8\x1d\x18\x19<~><\x1e\n;{\x1dڼ|M0+<=R<-7<\x03=.\x05\r=R\x0e\rR<=\x03\x01߿\x16R=A<\t$P:_=\x15\x16=l\x1dY-<\x01Q)+%=šrٻߦ+G\x08=J\r\x1c;dZ;\x008̡<[\x7fy;X\x1dF\x0cFq\x04\x15\x07;0)\x1b|\x19\x13;V4=\t\x029z<;"; <ސ<6l\x1dKOO.\u05fcT\x06\x0e\u07fc\x01Q\\ؠ<\x16i=\x1eu=\x17FE=၀Msr5<\x08u\x1f=\x04\x01U<\x1b*<Ɏ\x0f=fT\'=<[\x0b\x17ӂƼZgԼq\x0e=";P:=ǺxR?:N3\x01=Ӽ&V@\x03Q:Düt<~ӂƼE\x16=J.i;<(\x00<\x16\x14<< 0<۹<:È;ӱ.;\x00ms\n=~g\x04<;N!s<ĉ|;Y\x16j`\x1e;^<\x111=7\x05M\'<.<,\x10DO<', 'text': 'Professor Kisha N. Daniels (Dr. D) was the instructor of both EDUC 101 Foundations of Education and EDUC 204 Educational Psychology, the two courses I took in the 2020 fall and 2021 spring semesters. She adopted a strategy called flipped classrooms (Nechkina, 1984), which is a type of blended learning (Friesen, 2012) requiring students to complete the readings and learn contents before class, and have discussions instead of listening to lectures during class time. Before each class, students needed to watch Dr. D’s pre-recorded lecture videos and read materials to have an overview of the class content. Then we filled in a note-taking guide to reflect on what we had learned. Finally, we attended the class to have in-class discussions, group activities, etc.\n\n\nAs a math major student, I was used to listening to lectures without speaking a single word for a whole semester. I had even thought about dropping this class after I read the syllabus! However, Dr. D’s class opened a whole new world for me. Since then, in every class, I would excitedly click the “raise my hand” button in Zoom—I could not wait to share my ideas in the heated conversation.\n\n\n**Optional Attendance to Synchronous Classes**\n----------------------------------------------\n\n\n2020 was a year of chaos. Coronavirus and the international travel ban are distributed to students all around the world. It brought many uncertainties to our lives: unreliable internet access, different time zones, infectious outbreaks, etc. The school year taking place at the same time was obviously not easy at all. To ensure class quality, some instructors took mandatory attendance for those who were able to join the synchronous sessions. However, Dr. D was an exception: she made her synchronous classes optional, even though it was discussion- and activity-based. I was wondering why she did not make it mandatory, how she provided a relatively equivalent learning experience for those who couldn’t join lively, and why almost all the students still came to the synchronous classes.\n\n\nDr. D believes having a certain level of flexibility as a professor is always difficult, but educators should still manage to do so since it is not the reality to control everything in education. Students are adult learners and should be treated as individuals. They might have different learning preferences and face different situations. Giving them flexibility can be a form of warm support through hard times. For each assignment, Dr. D prepared two versions (synchronous and asynchronous) with detailed instructions: if you can come to the class, then you can work in a group to do the assignment; if you cannot, then finish these sections of the assignment as equivalency. By doing this, every student was fully supported.\n\n\nAlthough Dr. D’s synchronous class was optional, it achieved a relatively high attendance rate. To tackle the low attendance rate problem, Dr. D invited students to relate their own background knowledge to the course concepts. If some students did not come to class, they may not have a chance to realize how educational psychology relates to their everyday life, and what their peers’ educational experiences are like. Once students agree that class is the place where they can learn more, it will become their motivation to attend class. “Students are adults, even my freshman students. They are starting to figure out who they are in the adult world.” She, therefore, lets the students decide what is the best study strategy for them.\n\n\n\n> This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9aefe5bf-1e1f-4b31-ae11-5874c5393dbd', 'payload': None, 'score': 11.807439363540126, 'document_id': 'index.html', '_node_content': '{"id_": "9aefe5bf-1e1f-4b31-ae11-5874c5393dbd", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/lile.duke.edu/blog/2021/12/flexibility-adult-learners", "filename": "index.html", "filetype": "text/html"}, "hash": "c12bb19afe9091cf6fafa09e70f8b388092e96d62da508203161dace2cb3af57", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a427db5-ac02-4ad5-96b7-8dae766073a9", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "da61cf9bbb421fc985a175359a38bfee69742fb1d22c5e91ab9fc51a580553c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28a6432f-f95e-4e16-97a2-bc96b30e43f2", "node_type": "1", "metadata": {}, "hash": "734cbde4b860d7eb88633b64f3ce5635c61c46f1eee2dd8fb3ea547d481396b2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '@..\x1a!>\x02L)=<¼LR9"-=f2\n\x1f8;I\x13\x06̼\x19E;ǁB=^\\"Ⱥ)=)@缚RV\x1bJ܋g\x1f\x18e\\s=|\x0e<\x12\x19k 0h;o\x06\x08=^`:62<\x0eM\'=<\x0b\x1b_=59?/\x05\x1f[=I\x04\x7f<\x0b\x0e[;\r Qp=\x1e_+DySz\x14:D4;e:<\x15uN=={;\x1eF!8<{\x15\x03J\x19\x0b\x1c;\x12=!<+DP̥,\x10.\u07bc+-<1\x15=\x00k<\x01=\u05ce6-\x11֚ȼ0\r`;nB;\x1e\x19<Ѝ;]<*\t;\x1d*|$;^\x14SGJB)_\x05\'\x14\x03X8\x1c%=eX=\x13<{z=%W39L\'߷{:IC2=E(<\x1cAVR\x7f\x01KR\x02\'\x12<\x0cI>\x00\x19R<<^<@Pg#=C \x08=ߟ<.<һ`d#\x16<\r<-s\x0fϼ =\x14fڙ;\tB4<\x08 This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000\\).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:8164a0d1-1226-4de6-8d7a-39699df9bbb1', 'payload': None, 'score': 7.2496097371351755, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2826244', 'document_id': 'bfe60902-d299-44d5-af13-f68c06604fef', '_node_content': '{"id_": "8164a0d1-1226-4de6-8d7a-39699df9bbb1", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfe60902-d299-44d5-af13-f68c06604fef", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "4423c15f0262081da99b5983d0c0d4888dd19d09a77408a79310122494d98daf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1101e903-21fb-4f1a-a913-cd4d0db09034", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "a0ce698216bb12351e6c53c1f0a2e4b69df29c33d5af55c6ee316510f7e616c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc4f1340-3c4f-489a-ad6f-ff61fc6ae5bb", "node_type": "1", "metadata": {}, "hash": "f086c88c19abfef10f0e7100cf75308dc71e1c1a8b0f65ac1fe88aa3b3693b3a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3197, "end_char_idx": 6819, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf', 'vector': '\x10\x1br\t\u07bc\n}\x19\x02JG<;JT}\'j\x16q<\x0c\x0f\x03!:ʊ\x0f\rnQD;?#M;O,<ⶊ<\x16q1<\x1e\r軛ٲ8-}Իg\x0e=\x080?#M\x17M4\x0c:Z{\x13<\x1e+!5(r>*x~=J<姻J:SVkB\x0c:=\x1d\t;\x00<\x04\x12s\tB1j=s\x195f=ӻ-<1GŒ:[.\x0cb =$k\x0bJ<\r=姼\x1b\x08<\x04)\x05\x06=IWD\x00=˼\x17o\x06+=Ą=\x0e/\x0bl,<_\x0b<\x07<{\x0f;Ym?l:=dp@<{<\tZ̼\x12\x0c\x03=\x1a\x01"=]\x0c:;\x05=ޓ\tf/y\'=\x1aָ݅\x17\'<\x1be<\u0602;A\x0b*a<ɳ<>\n\x15\x7f줼~+\x0c:R]=\x14\u07fc\x0b\\<ʽ\x07;k\x111G\x1f\x104jOn;ej0A=F];\x00\x1e;\x080"6V\rr4\x1ad\x05u/<+8;\\\n6=r q<ȝ\x12=\x15\x0e\'#=A\x1dⶊtlлS!m=\x1bU<2\x14=`\x1b8»\x1c⻨ӌ],\x13,&r>*"L<\t\x10d|\x0c:$:\x07<8T\x00\x05=\nL=lv;ќ\x12\x0c&)\x01oxE\x10g\x01D\x18\n:4Q컼c;\u0bfcч&ثF<⠼ּ\x0eO=ܯ;FV=\\<\x03I㼋7\'ٕ};\x7f 7=\x1b=\x02<\t༜뻘NmB\n\x13㣼fһ;TW5=\x02;0\x1fD;뼮<$;\x1d =>"=/"==\x7f\x19\x1fʼݎ廬C꼈\x1fLoU/:#t\x1f{=(#=-<܋;+E>;\\G\'x\x17\x13kΊ\x027s5T=\x1eV\x0e@\x7f 7IϼxI/ͼ;\x0f=[<-<\x06\\+<\'g;k6<3\ue63b\x13=u=\x18)b\U000bb508B>"=\t=\x1cwC=#\n;nop\x05;%=I\x1e=8Ƹ~vw\\Uȼb@z6Ja\x0fq1:țJ=,~\x7fȼ3㊻\uf7bb\x15;=`\x04\x06<\x02\x00E< “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom \\[when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs \\-animals – photosynthesize, so it is eye\\-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step\\-by\\-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:3813364d-5d0b-43b2-8b98-89f90953c7b8', 'payload': None, 'score': 7.140919556971079, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67846', 'document_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', '_node_content': '{"id_": "3813364d-5d0b-43b2-8b98-89f90953c7b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c67a53bb-8127-4a54-8b71-e1b38caa9ff1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "19d045065fa9deb404ca09df5d278e17246849ecf0ad229013a4f1b8ebdf6baa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44dee6a0-7eb8-4a9f-96db-c955c8a4af03", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "d32b9c44375b348bc666ef0aec15d9716110288a771b9adacf9715e299e14eb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "db799e37-46c6-4470-b828-20f113c1c7e1", "node_type": "1", "metadata": {}, "hash": "95ca862141792c058376d879a3bf777f6a55c3680aed266ff9ed2bdabe4d79eb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3981, "end_char_idx": 8579, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', 'vector': 't4-N\x19\x16\x04\x06%3\x0b;)R;Xv\x12@:\x1aXv4!&m\x08<(0j=\x0cr뺚\x00 \r9:\x03R=y௺\x00F\x1e<\x1a;;\x16\x02:->=ۜ<6\x11=VI,aK)Aнx<;)<;<\x1a,=\x08|WA<~y/=DI9\x04+L\\}=W\x1b<]üt\rxtR<\x1c\x17+< \x10\x1bP=<\x17\x12z\x0e<(0j:L\x03EZFe\x10h;WTb=Y<\x1e\x0c=\x17,;\x16%<<\x11\x1e8\n\x0c+\x12;\x16%<\x0e\x1d<^Y\x04<<]\x1aj<<;twϻ`?\x07p=JӍ;&\\"y;IwF7"\tgIw<\x1bw@\x1dP\x15E\x08! “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom [when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs -animals – photosynthesize, so it is eye-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step-by-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{4199 total, docs: [Document {'id': 'test_doc:909aa4c9-d3f4-4e49-b923-d3669d25f128', 'payload': None, 'score': 326.9399424025931, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '165521', 'document_id': '397196d4-088a-47bc-bb52-181bc5d26774', '_node_content': '{"id_": "909aa4c9-d3f4-4e49-b923-d3669d25f128", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/09/01144239/Deviation-Application-Form-for-Course-Field-Trips.pdf", "file_name": "Deviation-Application-Form-for-Course-Field-Trips.pdf", "file_type": "application/pdf", "file_size": 165521, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/09/01144239/Deviation-Application-Form-for-Course-Field-Trips.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "397196d4-088a-47bc-bb52-181bc5d26774", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/09/01144239/Deviation-Application-Form-for-Course-Field-Trips.pdf", "file_name": "Deviation-Application-Form-for-Course-Field-Trips.pdf", "file_type": "application/pdf", "file_size": 165521, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/09/01144239/Deviation-Application-Form-for-Course-Field-Trips.pdf"}, "hash": "9975075aad97277a675dbb8184496fe77a13fb6d11eccc8adab972675432027b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9c5f8148-0ad3-4e1e-91f5-735c8e8fc0f7", "node_type": "1", "metadata": {}, "hash": "f589adb97174c43707b0949b9baa81bd02982241e03557149fd4ad89b3fbac09", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3695, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/09/01144239/Deviation-Application-Form-for-Course-Field-Trips.pdf', 'vector': '3\x1d\x02e/\x1c2Ȇe~y]Yxh<\ue2fb_4;)?\x16<3<\U000a3f10,#\x12o\x14JT\x1f[\x01\x0b\x04\x16=F:;\x00\nw;3K=\x1b\x7f\x7f7_\x07<\x02\x0f;LOP1;[\x018m@<\x1eB=(\x04<\x10c<\nw=䠑:(Ӽ\x08\x1fļA;K;*!=\x0e_Ȇ;"\x1dw˥s<\x04\x1cJ\\=\x04qغ\uef25ߨq^;07=kؼ\x03k=|\x0b<ȆJ\\=ZB\x1d5S<-8\x1c;1K\x18\x03)?\x16=du\x0f\x15<ؖ;Q?\x17\x1f+\x00\x01=+\x16*m=&t\x1cV<\x13ykڇ=,\x1fMe\x0eO<\x04<1G\x12%\x02\nV\x1c=$<\x00&ܵ9"uێ\x14v.*\x11=HԼ}\x14)\x07\x0bG=aޠ!;r仱;T!=OO<\x1c;b;\x18/Z\x01\x0b=ło<;?=LlֿX<\x1bY5>\x10g\x1e<7;~\x04q\x16,\x1a+5ͼj$f\x7fq<=U<\x04q;\n9F; C~;n;C\x0b6!\x06=GG)=Z$%\x08e\x05\x1fZ\x12=IjV;<;|>=\x1fO\x10`A];\x0c[\x03=Hok\x0c\x1e=I;\x1dҥ<\x06\x07?B=p\x10=<@\x02\x19\x15oʷ<\x05;=G\'=\x1c\x0fjH<\x1eMT\x1dG<;\x0c\t=T]\x1beX\x06=\\\x03;ҥ=U:\x0c~! \x0b\n=mXü;\x13)j\x15i\x02%\x01v9\r@=ۄ\x16F=\x16,9\x17hft2Ȋ*;k=n;ۼx>9=Ye98\x1b<%w\x13\x06\x10<>=\x12o̻Vɼo<\x07<:&=k\x1fe\x06\x14=\x07\x15Q\x11=r/<\x0f=g<\x0f(\x03=\x052X"`<\x16=̖?;<2s\x04;J֡<\x14ּ\r<1Mw=ۻ\x1c<67\r;6r`J[\x19.=<2з|<\x1c:P\x16z;IZ\n=*xEc\x11,;67%]̖?`\x04 =o\x10k\x12\x16eͼW\\@<|c\x1d&\x1c0=^.p^s( %<\x11<=G9:\x158\\<:1\x18\x01l_B=\x00=~(=pi<(<\x0c2=\x10<=\x1a8\x15\n\x7f2|<*\x12\n1<_i\x18\x06_`\x1c~<*<>,=*\x12żƛ<ߓ0G<\r&=\x1bӻ\r\x07\x1b\x15=\x04\x18{Z=;H<돫;j\x1a<ؗ; <ε\x00WHND3<ۖ\x1a-=1<\x00ɼn`<2\x0c"; 0H=\r:=\x1d4;6\x10<0\u07bc0,]\x1d98=Q=\x148\x19"=;@u<6\x16Iq\x15DhT\x11f:\x17\x12m=ƕ\x0e.<\x02=8B<=̼F<\x1bbF=Sw"=[\'=)$p<\x07$h=+xM\x06<],Qq\x1d<+\x0b\x0e!D<[F<ݩ<\t<@u\x1d=֛\x01mIob=Y\r<\x1dW\x08#=Ėu\x18&=<\x18`p\x17=\x13\x1f<\x148\x19<\x15:w;4+\x0b=3<ݼc)=\x02I\x15\x1aSҐ\x05ll3䎼T&\x1d=d)˻M3;\x18cH=\x9a<-Z6=<\x0f(<@R\x16<\x1bX\n;@@R̮;\x0e\x04vpX\x00=\x1964\x07\x06Cx\x00I<\x14\x7fA8i<\x18{=:\x11ɻ\x00<^h<$qqf<\x1bbF<\x06+.\x05;ax\x17*B}<}Ƽ=3\x11B<[#\x17}K9\\b=)ۼAT=X;\x05Ij\x08,.;+o\x0c<={<\x19QžGuu;sy3՜Z=\x01=\x1cE<\x16O\'<\x04<\x10=\x08&;B[C\x0f&}=(\'nOU\x1d\rm#5]<\x1f=gg#\x1b/ػA$+QntOUuɺś;\x10FX<\x08XP\x1b\x01Zk].>:\x7f=G\x11=\x1f\x194=;\x155\x0e:ܹEvOռ\x1c1\r<==~<\x0e<=h\x17=T[\x02\x05<Ѳ!N\x15x;=h\x17=@D\x08+\x11\x08̗5ٛ;V$<~);\x1e`;>ټ\x16\x0cv:\x03=T;\x18<\x08\x07{\x0b<0:&8;!=Ѽݹ\x0c#\x03WF֬\x0e\x013p\x05<*[1\x1c<92:@<\x1d;\x02!%<(\x17}R"\x1av<\x01hżk\x02P=oZh\x00\x0cguI;<;-:f,.R<;M.\x1c:T\x0c\x08=K\x14|.=#O\n-hZ`&6\x0c\x1f=Ty\x1a@1\x122:;;}R"=HgRmQ|ͼO#z,\x00#+\x18;\x1d:\\/<\x17s={\\5.>guI=;X;eTZ=gz\x15efB\x0ft4<\x11=QY\x18\x0e\x1eʫ\x1d\x1c4<\x114$=\x07\x03=Y\x02\x06<=b]=1<[+=3d:\x7f\x16ÕQ\x18cE\x07ϻlD9@=?-)Ҽ\'EӼ\x01P%]^=C4\x05\x02x=\x19\x12P=<\x14<\x15\x0c \x19M\x0e<\x7f=Rڼr=\t<\x02#=G;\x1f&:0<;o(00<[#\x06=.\x1f;^b\x06\x02<@EƤ<\x07n\x06=\x1bn\x07=\x1e="!<8\x0cۍU\x01W<2:x:9\x15l̟;{\x1dV皑l:NQ\x14\x0b?:\x1f<\t^\x7f\u07fc\x16\x1a&=\x0f>=7Ƽ\x1c<\x13\x14^\x1a\x0e0=g;<=R*|=ܷl\n[V\x0b\x01\x14-<<\x11n!;Ng܁<\x14-\x12=O<\x0c3;|\x1a\x06\x0b\x03\x01:\x15\x03;ߗl\x06\x1d x#=\x11\x0b 9<<5c#\x13{<\x16\x18һ(<\x1e<\x1dV119]\x02d\x1f=\x7f_=\x05!=\x7fBz?u\x04=\x13\x1c\x19;4\x055<мml5t\x01=\x1a\x12伢?Ԏ\tѺ\x7f=Qw\x0c>\x07\x0b7=\x02e\x03ȼ)Bռ4<7<\x14-<$<\x08\x00(M\x11ѢۍU9==%ۻ\x08TMm\x17&<~\x0b\'\x7fNU̼\x02=<\x05#惻\\y\x05\x17*ػ!\x0ft4<\x11=QY\x18\x0e\x1eʫ\x1d\x1c4<\x114$=\x07\x03=Y\x02\x06<=b]=1<[+=3d:\x7f\x16ÕQ\x18cE\x07ϻlD9@=?-)Ҽ\'EӼ\x01P%]^=C4\x05\x02x=\x19\x12P=<\x14<\x15\x0c \x19M\x0e<\x7f=Rڼr=\t<\x02#=G;\x1f&:0<;o(00<[#\x06=.\x1f;^b\x06\x02<@EƤ<\x07n\x06=\x1bn\x07=\x1e="!<8\x0cۍU\x01W<2:x:9\x15l̟;{\x1dV皑l:NQ\x14\x0b?:\x1f<\t^\x7f\u07fc\x16\x1a&=\x0f>=7Ƽ\x1c<\x13\x14^\x1a\x0e0=g;<=R*|=ܷl\n[V\x0b\x01\x14-<<\x11n!;Ng܁<\x14-\x12=O<\x0c3;|\x1a\x06\x0b\x03\x01:\x15\x03;ߗl\x06\x1d x#=\x11\x0b 9<<5c#\x13{<\x16\x18һ(<\x1e<\x1dV119]\x02d\x1f=\x7f_=\x05!=\x7fBz?u\x04=\x13\x1c\x19;4\x055<мml5t\x01=\x1a\x12伢?Ԏ\tѺ\x7f=Qw\x0c>\x07\x0b7=\x02e\x03ȼ)Bռ4<7<\x14-<$<\x08\x00(M\x11ѢۍU9==%ۻ\x08TMm\x17&<~\x0b\'\x7fNU̼\x02=<\x05#惻\\y\x05\x17*ػ!\x1f|<\t!;dž)_M꼿30Xj6"X\x05F=\x18#\\a<\x11"w*<`\x11=9\x01!u\x1d\x0eS!4<%N$=l\x03=D4\x02.\x07P3=\x0f\x03Q=oͼȴ<\x01\x1eMK\x1a<|u;\\aO\x7f<\x12\x0e68A\x01o={=~\x1b;u9p<\t\x065<\x1ba@\x17У09<·\x02ͰH\x11"ӼӼ[P^=\x029\x05Ux=ZB<,ѻ"}\x1fV_(i=kR+4H\x06<\x15<\x03:)\x04w<\x02X\x178<\x7f.<\x1f$\x05\x04ID\x101\x16<"X9/\x1e\x11;NE\x1a7O=ż7R+.\x07:\x18\x07\x12@_MjUƼލ:7sJ<}B4\x13N;㯼ם<\x0f\x03Qr"<6`=\x0e2o\x7f\nڼYQ\x10=Z\x04y<\x1f;}:)#\x00<ڷ\x1c;n\x10\x15=\x16\x10U<;:얦;\x11|\x14F<0|\x14ƼT\'0\\\n-\x12\x03\x0b\x06!6="X\x08ȼRB;ּ3<\x01\x0b@=!\x060Ii.=N:j0<\x18kt=iݻM\x17US/\x7f<1\'3\x0f\x03\x08f:\x1e\x12X\\<\x1d̻=Lm;\x15<᭄=m6<4iFz;D<;\r\x1cѼ9\x0f\x84RF˖p`<^=\u07bc<\x18\x1bpyH7\x18ꐼ&<\x1e=w;n3}<.=\x0e=x2=ׁ<]^\r\x0f<\u0605<<\x02Z^}\x0co\n=G\x1dyHzÿ\x12;\x02\x1a\x1fĈe\x7f韺ի`=\'\x02<<ܹ\x17:W<=y,=\x18<\\^<&<\x174,.l=\x11#\'g;\x13\u07bc\x1de<;wD=\x00<(g\x14\x08<\x19^;^\'z"\x105;<\x7f\x1fm\x06Zvzsg\x11;$>=A\r=n3;ؼ;7_\\$7V;\x06,\x16=\raﲼ\x1e=(85\x1a\x03C\x11Q<\x14=>_,\x03?;<<(<$lF<#\x17"(\x17<8Լ&Z@=>\x11Ƽ%}\x1a==\x13<\x12<\x06<\x08aVἋջ:6: ѼS[d<\x7f:\x02`l\x14=,лWI\x0b<\x1f\\#<(x6=h;M<\x0e\x0bL=PMK|\x1az;I\x1dEvb<0yͼZ>\x1dJ\x10ӎ{;}>=\x19U2<ټ\x047<)\x00=hh;c\x1fn<8&ռb]HzJ?\\u<\x00{;\x16;g=<\tt\x04<^}QfRߡͼ\u0a7br\'\x19;k\\9(B*\x1b<"J:F8ʤ1\x1f<\x0f; ;\x18\n=\x14\x0c=\x00JR<`{\x1b\x06I<"qi;\x0b\x0b\x14\x06{/:x[vf TSqywJU$D/;ZQ6R\x0b=@\x0f=\'ގ\x1c+Bv<;<\x0b\\(:\t|~9ZѼ}:G=jMg:Wz"a\x0b\x14\x02Pr!=紋<\x0c\\=s2\x0e7d<+U\x10=\x1a\x02jռ\x16t<Հ\x12,<\x12Lnq;\x06*Jxs\x13\x1b45C\x13M(;#\x00;\x19js:N\x12})\x0fFh<\'\x1bw\x03ɭ=k\x15v\'Ӟ<\x03)N;_"=QW\'\x06=z;\x16<2U=\x1cй=3ꁼse<$<+}]c(=\x1dYN\x05p\x1df.\x01p\x1c=\x0b\x14=vM:q;ӞT\x18N\x12=;X34\x1b<1=\x1f\'i=\x07;+D6=2o+q`\x15K<˼Actg;;Cx<\x1f<\'\x06$\x1b\x12G˼\x03$\x04T\x16^g<\x15W\'\x01\x0b\x05V8q<\x17\x18dAGCH;>%!һ*)\x14\x08=\x10k\x07ϼゎ<\x07\x1c"Ҟ<\x1eT<+wo\x03nE\x03/\x0c ;ƈ>LL=\x14L=\x1f<\x0em!=\'i=TM<0P\x18B\u05fc\x15\x06ŖR\x1ev<@A#<\x161F\x1d;\x0em<\x01ϐ`J\x0c=(\x1ba!*\x17=\x05t96}$=ඥŘ=\\=\x1d\x1a6CmTbY\x10j翻&ݼ\x07\x1cA\x0c1=F睼<<%<\x17?I=\x1eü~H;\x1e!2mCc\x18=fɷ<-2\x10\x10K1\x02\x173ӼrH<\x7f\x0634=e=4;(tNQ;6WQ}=u\x19(tNk٘\x17\x00=VDž<\x12><1\x10a̴\x1aU<{(1<\x14W<{<*\x7f,\x15=]S<\x11Z,%= ;\x0fiܰA#<$\x03=\x00N<.\x0f(\x16=<< ;=|ռd+=\x00J<"+\x10t;\x14QE;$>H<\\\x07\x04\x01\x0c9R\x1f;[<97=/Y<5A\x11̼s;z<|\x05\x1d\x07b\x03\x1d<<#=\x01\x1a=D{c\\\x17;Ji|\x16afИ{:\x169=\x12\x0cJ=vl<[C93\x0f\x127(=?\x01\x00=\x07\x1bni;\x12\x04d\x0b\x02<@\n<\x00g\x14\x06;\r;FA\x1a\'9Ҽ\x1fk;!=+N+Ua̴Jg\';T=Ứ7ͼU\x08o<[\x16<[;-坻}\x1f<\x00D$;DD=\r^<`弾\u03796T<;o,<\x02Q=d+\'\x11=7@0;(v@P=+U*=ۇ\\wi\x1fҺ97<}ŀ-\x1dr<\x1c?엂<6=?Fh\x1fC5^\x10K(1Z6<\x18;,٤K<\x1e|H)\x1c=\x14.3FCT<^\x02fD\n,=Ϊ<+\'<\x1d\x04uq<\x05?\t\x04=#\\<ؼݼBLIo\n\x16:\x11:=^<~v=67\x16\x0b=X=O\x01f>V\x01V~\x07.C\'=~t獼fk<\x17h<6J\x19=[|O\x11\x13<\x16;\x02?=%4D\x10\x11Ꚓ[3=C=Rr,r ּ|f\x134=\x17ъ<*䭻7;4)\x1b=4\u05fc\x04\x0fp"\x0e\x00<&b\'\x1b;\x12=-y?n\x05I9;ǺE<\x06L\x0e\x15g]ꓻ\x1eQ<\x14黳D=\'=\t\x16B=K\x12Vc+\'<-Do: ʼy9ɺ\x03u;ER\u0558\x0e;\x04t9=w\x1a\x00Xϼz;\x10oW(?n\x08G\x1bL<\x03<\r2=\x7f2\x07;ؼgTn\x15;\\\x0cF!=Y玻9\x15v仿w<\x0b;WcH1\rU\x191vݼm\x07Lk)T`\u07fc.xAt_,G<\x10=\x13\\p\x12a\x11ƿ\x1c\nQ@j<%p\'\x0bӼj\x01=\x0f0<\x031\x02\x0bºu\n1N:ZB\x185pEK(ǁ<%\rtRZb%=RwJB<ѫ<|\x19p<\x12<Ć}\x1e^ۿ\x0e=N;K\x08\x7f<`&<;<\x1c8\x07%nD\x1ac=bU;j\x14=Rc=;Z`Zh:yN3\x13<-MX <\x1d\x18I"\x16u\'J=U(\x01;\x1f=2\r==YغΟ[-:2\r;Cȣf\x02=N9%(<(\x076=I{\x7f%\x1f\x01ƹ<]λVe\x067;\x7fE\x08;\x1e\x08E\x03r\u05fc\x0f\x1c\n\x06=ƙ\x07ƻb\x0fX=3\x03<<\r\x05\t?\t<\x7f\t<5a=%\x17<\u0382;i<\x17\x0f=G.\x19W=x4=\t;\x01˯\x05\\wZ&\r\x00<8|\x08\x06\x02=0$v=(\x15cl\x02=ݻ\x02缫)\x1bR;+\n:B0}ƶ˼) \x10;\x12\x07W2Go;\x0fI<\x08Z<@eB<@1rp<\r:Ļ\\\x02(\x02(ۼ=\x1f&=UռH\x10vaՅGH<\x04hm<\x16<<;=\x00<\n8::\x0cÍr=q>=RwJu\x07!\x05<6\x00<ښL:϶<\n\u05f8\x07<\x04\x11";QE=;x\x07<<`"=\x0c,\x05\x080˼<{*\x01T@Z;\x10\x03d\x01T(<ŻՓ<*R:\x0b!"&K=\x00\x03\x088<;A\x00+j=w\'=gcMG^ۼ\x0bp>T,Pc<<\x0eg*q<=u(\x1d=]BN;2巼6k;\x068$u\x18ἹMX::FҼl\x16V27\x15;\x00\x1c=U\x05<^<\x18=\x18=!\x0eΉ<^+n:0)ŵ<4I\x15=!-,;\r8[=\x7f?\x03ihhtH-jC\x04p2BϼA<\x0e=.\x17\x014q=\x16a6h<8=\x15P4<9<%:N\x05s=r}$ \x0e=j\x1edꁎ<\x11̔;B@\x07Ƣ\x06\x1d!X.=v\n<\x15=p7<2Lƺ\x03V=:üe=@\x07=/~\x15XI7qxiX3=\x1e8`?:<ۼ~<\x0cP4B\t<¢N\x16P \x1bdϻ\x1c;dOj_\x04@=9\x02ϜZ6\x1d<&X<*\x01@ևr\x04=\x08pffQ\x01=\x1c9=^ =;=\x1e,sVp=\x08j\n=4<\x039v+=v\n=0\x17<-I<\x16^\x086Ѽ)\x16Pc<^@<\x1dH={<{=\x02A\t<\x14<ἓ<<35\x1b9;\x1d~l`!\x0e,\x1dC=\x1a;zw0\x17;P\x7f;]Լ2\x04=.!X.<Ở==\x10$\x0b!q\x1e,sRJ?\n<<ف;T.jC<& #<2<\x04{EM)O\x0c=xzD\x1ba\x1b\x7f]-僽`Z=<æ!X.w=)伿v<\x04@=G;9\x11\'J<;\'둻.<\x13/(\x1d\x07I\x0b;o=rKA<}?<(\x1d&\x14;)\x16^&:\x17\x0b04<\x16\u07fcqkl=\r<30!-\n\r=lՙ5\t\x0egJ:\x00쩼y=ޝ;g<\x1f=4=9Hl\nk<#f=#\t=<\x13\x1f\x1cWG1;H<_=!`<.X<\x19(<\x1fs+;A\t{vj<\x03%vj;5t\x1d\x00s*;vd9=]|=\x0bL4g辻p\x1ey=\\;I<\x1e=j3=B\x1d\x03.m<é;\x0bü߭v<\r"\x1f=Nu]\x1a<\x0f\x7f=x\u07bc\x7fiekK,\t\x17ʼC\x0bVݺ<ŧ;Jw\x0b\x0b;\x04\\=\x16bNG\x1c<\x0c{D}%\x05<\x00Qvp<;\x15', 'text': '2. What is the need-based financial aid application process for Chinese mainland and non-Chinese-mainland applicants?\n\nApplicants are expected to provide details about their financial situation for consideration. When applying to Duke Kunshan via the Common Application website, all applicants must indicate “yes” in the financial aid interest box in order to be considered for need-based financial aid.\n\n\xa0\n\nInternational students should submit a [CSS Profile](https://cssprofile.collegeboard.org/) online by Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants. The CSS code for Duke Kunshan is 7059.\n\n\xa0\n\nApplicants from the Chinese mainland, Hong Kong, Macao and Taiwan who indicate an interest in applying for need-based financial aid will receive further instruction from China Financial Aid.\xa0\n\n\n\n\n\n\n\n\n\n3. What percentage of students will receive scholarships/financial aid?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition, and the cost of attendance in selected cases for Class of 2028. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs. On average, around 80 percent of international students received some level of scholarships or financial aid.\n\n\n\n\n\n\n\n\n\n4. How do you award scholarships, and do you award aid packages to cover the full cost of attendance?\n\nAt Duke Kunshan, all applicants will automatically be considered for merit-based scholarships. Need-based financial aid is also available. Students seeking financial aid should complete the CSS Profile application by Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants. Award amounts vary, up to and including full tuition in most cases\\*. Students are responsible for covering their living expenses such as room, board and transportation, which are relatively lower compared with typical U.S. universities.\n\n\xa0\n\n\\* To reach talented students with significant financial hardship. These awards cover the full cost of tuition and the majority of non-tuition costs associated with enrollment including books, airfare, housing, food, and local health insurance. To be considered for these awards, eligible international applicants must demonstrate full financial need, exceptional academic achievement and leadership potential. Further information could be found *[here](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-full-scholarship/).*\n\n\n\n\n\n\n\n\n\n5. When will I know if I have received a merit-based or need-based scholarship?\n\nApplicants will be notified of a merit-based scholarship or need-based financial aid award at the time of your admissions offer.\n\n\n\n\n\n\n\n\n\n6. I received external scholarship, what should I do?\n\nExternal Scholarships are a form of grant aid that is awarded to students by external organizations like community nonprofits, local businesses, scholarship organizations, etc. If you receive additional funds from any external sources (other than DKU), you shall report this to the Office of International Enrollment Management within one month after your receipt of such additional funds. For more information regarding external scholarships, please click [here](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-external-scholarship/).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDegree \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. What degree will graduates receive?\n\nDuke Kunshan University students successfully completing the course of study required by Duke Kunshan University\xa0and Duke University\xa0will be conferred both a Duke Kunshan University graduation certificate and diploma officially approved by the MOE as well as a diploma from Duke University\xa0indicating that the degree has been granted in accordance with the requirements of Duke Kunshan University\xa0and Duke University\xa0(Duke University and its degrees are accredited by\xa0SACSCOC).\xa0 Students will be alumni of both institutions.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d4d65ad7-4e50-4c00-b04e-108784047b67', 'payload': None, 'score': 24.029835925798057, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2986689', 'document_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', '_node_content': '{"id_": "d4d65ad7-4e50-4c00-b04e-108784047b67", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7aba813d-dab9-41dc-a97a-993ec69ba196", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "hash": "11ecc01f303036fe2851e08fc6521f4a230e023753a73908adc39b8ec3c08e8d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a6bb2c6d-fbb7-4580-94ce-16fc43ea1ae8", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "hash": "5426a3fa1ae469bb205370a5eea73790c650f0877206ad9b2a9123357ad4460f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "54798195-ef16-4221-b9af-ab3863e38395", "node_type": "1", "metadata": {}, "hash": "b96a8b0ff66922d7605d478f5453caa27f54fd794ebd053378511e655cc0ab10", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 181541, "end_char_idx": 186682, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf', 'vector': '\x0f=\x18 \tJAᑼ_;\x13\r<6\x02i<6\x02<<\x16\x14<ؼ\x0c\n?0g[;R-\tg\x05|#\x13!\x1e\x10Q\x0eB%t<#=9>˻y}C$y\r\x00<\x16\x1e\x12<众\\|ѱ2*A~t3;}#WؼL;b\rHP\u16fdP<"= GZ<\x05=|V/\x0fx#=:5=˼r\x0b=p(8R;̳;ˤ:(A9HAO\x03<7<]|$\x7f\x03\x19=7<\x1d\x1b\x1c\x07?8<-<5}#=b=\t<9=Y\x02<_H\x1euSC\x7f=\x161<\x08,g=Dd;b\x18=\x06a\x13żzv8\x15\x10"=k\x1a=h|r\uf500hٽ\'=+;Cs\x15\x12R\x07=>=Z03;\x06=\x15F=\x11=\x0b<\x13-)7\x1e|;Cw\x16\t8\x11~=\',<\x1c~ؼZ03\x05t8;\x18=5"<+\x11#Qf<)\u07fbrX`z~\x1f=\r;/\x1e)\x184&\'1=x<~l\x1e7\x11\x10<\x06>\x1fZ=\x05=a8\x0e:F\x02j=N_`xɮ\x1e;N<˼M\x15_\x01=\nr-&P=Sd=\x00VY\x17<ᒡ<;U,}r?<̫0=䏳|T<5c伄ϵ\rAn=;<&x]4=\x1ajV)\x18=1!n\x06sV#\x0bi<>\x1fT]=\'\x16;%:\x14p2\ua4cd-\'r\x1c=mټ\x0c\x13<=\x1a<\x05<0\x1dh\x0e(ݼG\x1ac=s;{\x0fm;=r\x187=μ\x04;W\x04=4i[=;<\x06\x19w\x04\x1b(:I\t=:\x0e)i~B8<$<,!<\x04<\x7f<_I8֬=bFѼT\x16Ʊ\x0c8G\x1a;%Z=<Ŀ<;y4\x0e{~,<`=pH', 'text': '* [About](/about)\n\t+ [CS 50th Anniversary](/50th-anniversary)\n\t+ [Contact Us](/contact-us)\n\t+ [News](/news)\n\t+ [Computing Resources](/resources/computing-resources)\n\t+ [Events](/events)\n\t\t- [Event Archive](/event-archive)\n\t+ [Location \\& Directions](/about/directions)\n\t+ [Values](/about/values)\n* [Research](/research)\n\t+ [Artificial Intelligence](/research/artificial-intelligence)\n\t\t- [AI for Social Good](/research/ai-for-social-good)\n\t\t- [Computational Social Choice](/research/computational-social-choice)\n\t\t- [Computer Vision](/research/computer-vision)\n\t\t- [Machine Learning](/research/machine-learning)\n\t\t- [Moral AI](/research/moral-ai)\n\t\t- [Natural Language Processing (NLP)](/research/natural-language-processing-nlp)\n\t\t- [Reinforcement Learning](/research/reinforcement-learning)\n\t\t- [Robotics](/research/robotics)\n\t\t- [Search and Optimization](/research/search-and-optimization)\n\t+ [Computation \\+ X](/research/computation%2Bx)\n\t\t- [Computation \\+ Biology](/research/computational-biochemistry-and-drug-design)\n\t\t\t* [Computational Biochemistry and Drug Design](/research/computational-biochemistry-and-drug-design)\n\t\t\t* [Computational Genomics](/research/computational-genomics)\n\t\t\t* [Computational Imaging](/research/computational-imaging)\n\t\t\t* [DNA and Molecular Computing](/research/dna-and-molecular-computing)\n\t\t- [Computation \\+ Economics](/research/algorithmic-game-theory)\n\t\t\t* [Algorithmic Game Theory](/research/algorithmic-game-theory)\n\t\t\t* [Social Choice](/research/comp-social-choice)\n\t\t- [Computation \\+ Policy](/research/computational-journalism)\n\t\t\t* [Computational Journalism](/research/computational-journalism)\n\t\t\t* [Moral AI](/research/moral-ai-computation)\n\t+ [Computer Science Education](/research/computer-science-education)\n\t\t- [Broadening Participation in Computing](/research/broadening-participation-computing)\n\t\t- [CS1/CS2 Learning, Pedagogy,', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'emphasized_text_tags': '["span"]', 'filetype': 'text/html', 'category_depth': '0', '_node_type': 'TextNode'}, Document {'id': 'test_doc:0e1a1536-2f4d-4e35-b430-4ef62516ae24', 'payload': None, 'score': 12.853044385031286, 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "0e1a1536-2f4d-4e35-b430-4ef62516ae24", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a526922-da55-4004-8b42-c6db36c2d08b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "ea49f21a91ee6c818c5adf58a9cb97dbbb956140a2e40e228ec8d8b22fcd2881", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bd6e126f-6eff-46d1-9a1a-562fc15dd345", "node_type": "1", "metadata": {}, "hash": "d1d48d5ef4fe17cdc8edc0cf057ded72596b533fcb129835c1651599c8fdf80e", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1296010, "end_char_idx": 1300563, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '䕋Bü}+G\x0f\x17\x14b`\x04T:<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11ټ}:?/ٺE<}|~;Eи(I\u05fcηό\x03@XE\x17J+vɸ\x08#;\U0007c113+<.=d;\n5-=,\x17\x14:N\x06\'N;9ʼGd<\x0f?;D\r\x12=pT\x1d-\x10=2;2,<<6$<Ο;m\x7f=#=^\x01=ў&=R@0ny/C4t=\x15U<\x15Kw/%<\x01\x1b\r<\x0c]<ѣA\x7f<><\x0fKF<\x13ǼD\x1b=I\x03\x08:s=r"<\x0b.;`h\x1cy\x0c=]v\x1e<\x06@;U<1%hkJ:\x10A=઼Sջ3ي&=v4\x03bm\x0c;R:=Uhxګ=\x18T[<&Ɨͭ\x17\trԢA\x15ܯӻF(;C\x04=4`<\x18^I.\x13X<\x7fF<\x13G\x0fR+$2uck\x11Gq\x1b\r\x10\x0cص\x15U3=\x12<բi\x18=X:dg<\\\x05ͻj^=Iл*<{6m&=\x04ry<{ޱ;\x13\x05=\x7fⷻѳOi\x15Q<%\x1d\x14=ɧ]t7E!;!\x10/(\x0f=w=g\x16=\x1f\x07Z<=Ɨ/\x17\u07baO1 V\x04D&\x085\n=X;i5=\t?\x00?\x12y%zeG<_e=QnD<\x7f?<\n<\'<ռN\x19)s<.J=\x17Q=z"`ۼ\x13wY<\x11\n;o/=\x01t\x04-!:S=\x1cMҼ\x1d~zN;)\r;qsD= ~\x0c=\x1cMҼ;\x03|\'V;\x024_4:>\x0b\x08.IY\x01=@3F=^<.L=Ü\x04=/Q1q}x\x04;p<押\x01U\x06q\x83_oTg+\x05=u"&\x19-\x16e=HK\x0b<\x15=|\x0c<ȹ=la=~=<(9"=pV\x81!\x01t\x04=+6T<\x0e\x16=\x18h:(;)G=p\x1ebɼ\x1a:sSU\x02=¶r+>=\x0e)4)<{ż#;}\x1c<\x00=\x01>>=_\x04<Ƽ$\x06*<5|ռfUc<(V;G>e=Q<<\x14@v\x16E<<\x07\x08O<\x00=\x81ݙqUG\x0fμΌ<ޒ\x1b< =Pl\n˼"`;)\t=\x1cK<( <]MB\u07fc\x18\x1aZ5tD\x00=L;P;\x04q6:\x1fV=gooҿȼ2=a\x1a:\x1d;^\x1d=6ݼo;O;\x0b;qe\x13=<\x18ӼS~Ϝ/ȹ\x0e\x19m:0\x0f\x1b]\x03=ەA\x1c01=<>5=Fϼ\x18\x12=yg<7\x7f\x07!A=?;.iL\x10=ilooPgf؝G;\x00;<\x02<e<<ɯy;\x14~lüB\U000d0f22J;^:)<#\x04-ü\x06=\x11=LXq;Ag+4\x16\x7f3+=!d;eU\x11I\':ooHD<~<\x01t=`\x10DaE\x18=\x10]\x1f=9\x025:<{u<-\x16:W\n\n\n**Student Researchers**\n\n\nYutong Quan is a student in the class of 2024 at Duke Kunshan University, majoring in Political Economy with an Economics track. Interested research areas include blockchain, decentralized finance, and interdisciplinary fields of Artificial Intelligence and economics. \n\n\nXintong Wu is a student in the Class of 2025 at Duke Kunshan University, majoring in Computation and Design. Her interested research areas are digital design, digital market research, and metaverse. She hopes to delve into the dynamic interactions between technology and society in the future Web 3\\.0 era and explore the infinite possibilities that technology can bring. \n\n\nWanlin Deng is a junior student majoring in Political Economy at Duke Kunshan University. She possesses a profound passion for economics and computer science, with a solid academic background in both areas. Wanlin’s primary areas of interest revolve around blockchain technology and trust mechanisms. Under the mentorship of Professor Luyao Zhang, she is dedicated to conducting research that explores the repercussions of exchange bankruptcies on trust within the cryptocurrency domain. Her work seeks to shed light on the intricate dynamics of this evolving landscape. \n\n\n**About the Project**\n\n\nBlockchain technology is leading a revolutionary transformation across diverse industries, with effective governance standing as a critical determinant for the success and sustainability of blockchain projects. Community forums, pivotal in engaging decentralized autonomous organizations (DAOs), wield a substantial impact on blockchain governance decisions. Concurrently, Natural Language Processing (NLP), particularly sentiment analysis, provides powerful insights from textual data. While prior research has explored the potential of NLP tools in social media sentiment analysis, a gap persists in understanding the sentiment landscape of blockchain governance communities. The evolving discourse and sentiment dynamics on the forums of top DAOs remain largely unknown. This paper delves deep into the evolving discourse and sentiment dynamics on the public forums of leading DeFi projects—Aave, Uniswap, Curve Dao, and yearn.finance—placing a primary focus on discussions related to governance issues. Despite differing activity patterns, participants across these decentralized communities consistently express positive sentiments in their Discord discussions, indicating optimism towards governance decisions. Additionally, our research suggests a potential interplay between discussion intensity and sentiment dynamics, indicating that higher discussion volumes may contribute to more stable and positive emotions. The insights gained from this study are valuable for decision\\-makers in blockchain governance, underscoring the pivotal role of sentiment analysis in interpreting community emotions and its evolving impact on the landscape of blockchain governance. This research significantly contributes to the interdisciplinary exploration at the intersection of blockchain and society, with a specific emphasis on the decentralized blockchain governance ecosystem.\n\n\n![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201533%202167'%3E%3C/svg%3E)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20768%20330'%3E%3C/svg%3E)](https://www.dukekunshan.edu.cn/)", 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{14848 total, docs: [Document {'id': 'test_doc:123262da-91e8-4a23-84b3-5ce951a92851', 'payload': None, 'score': 7.50087543338904, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '120360', 'document_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', '_node_content': '{"id_": "123262da-91e8-4a23-84b3-5ce951a92851", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 120360, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "14801b0a-322e-4a4d-b8d2-706cf94df741", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 120360, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html"}, "hash": "b18a3c0df05d860e4e25f4549e6ffa57a521b8b2ab0a75a3f9ff954fa8cb7d5f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b6b10a0d-76bb-4e42-829b-17c491c858dd", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 120360, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html"}, "hash": "1f01425bde46232b8fbd8ac9d21b0decfa8bb44f89fd7650ceaf0505fba2f7b5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dffa87bb-a993-46f5-a1e8-2e3bd403c5c0", "node_type": "1", "metadata": {}, "hash": "0a499af5e19734317cc4e2572d38b7e1453f600aea72984fccd3835a24c6d761", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9210, "end_char_idx": 12341, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', 'vector': ':^I&\x15g\x19룼NI>\r<آ\t\x16<{zS㼠\x05i\x0b*\n=[G="\x1ew\x18=\x12ps+ĻZy \nSP\t)\x022=;RM(\x11<\t\x15t<\x1b_=;vY<1BFi\x1b=\x1f<\r5<6mW\x1bE=*=8<آ\x13\x01\'ޠ:;JD&=jX{Wܶ<<ƨ\x07Rϼ\x11!=\x01\x13\x1f;\x02=9n+&\n<<0{\x11мkh.=!L\x10<\x19\x0e nFQ=\x1dީ=\u0557;H\x1e\x7f\x04ּ\x0f==<\x113Swo{<,=%\t=sa\x19TH\x0e~<.B<\x7f=~z;FtkK:\x05,`\x0e꽼;\u0ad5u\x08w];ȼ\x0co:q<;m>\x1e+N}\x18<:2"=\x01!ϼ\x16<\r=\\ʊ<Ȑ\x0f\x10\x1f<\x7f.\x0bR<\x19-4z\n=\x06o\x15;B;=.\r<ڊ\x1bB;>k\x14̎ڼ\x05r{\x11<<آ\x13&竻OegF9%;<\x7f\'L\x1e0BFNI;<\x0c\x08<2;\x01QvY6üw<\x1a_˼NZS&<\x00?\x11y?\rwS<\x15a;WK\x022={W<=h\x08==Ҥ\x0f=\x1d\x19=\x12k$=t={):6*NY,7\u07fb\x7fm\x1bk=x\x17:BA=p<L\x19!ki=.ͷ:<<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nLibrary Spaces\n--------------\n\n \n\n\n\n\n\n\n\n\n\n General Rules \n\n\n\n\n\n Study Rooms & Team Rooms \n\n\n\n\n\n Functional Rooms \n\n\n\n\n\n Wind Finance Lab \n\n\n\n\n\n Multi-Media Booths \n\n\n\n\n\n\n Please follow the general guidelines below to use the Library spaces/rooms:\n\n1. **Open space seats and study rooms are on a first-come, first-served basis**. Please take your personal belongings with you when you need to leave for more than 30 minutes.\n2. Do not use personal belongings to occupy seats. The left items will be cleaned up by library staff and we will not be responsible for any loss.\n3. When using **functional rooms** or places with equipment, please send an email to [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn) to make a reservation, then go to the 1st floor service desk to exchange your ID card for a temporary key card after the reservation is approved. Each reservation is limited to 3 hours with additional 3 hours renewable. Course reservations will be given priority.\n4. Please **keep quiet** in open space, use team/seminar rooms for group discussions.\n5. **Telephone booths** on the 3rd and 4th floors are available for phone calls.\n6. If you need to move around furniture in a particular space, please return it to its original position when you leave.\n7. Please keep the environment clean and don’t litter.\n8. **No eating** **on the 3rd floor and 4th floors.**\n9. You can [check for space availability here](https://dukekunshan.emscloudservice.com/Web/BrowseForSpace.aspx#), but please note you cannot reserve rooms on this site.\n10. Contact to reserve classrooms.\n11. Follow any additional guidelines for other special spaces listed on this page.\n\n\xa0\xa0\xa0\xa0 \n\n\n\n\n\nStudy rooms are on a first-come, first-served basis, and we don’t make reservations. Reservation is required for events and classes in the team rooms.\n\n \n\n\n\n\n\n| **Study Rooms** | | |\n| --- | --- | --- |\n| **Floor** | **Room Number** | **How many people can fit in?** |\n| **2F** | 2103 | 2-3P |\n| 2109 | 2-3P |\n| 2111 | 2-3P |\n| 2117 | 2-3P |\n| 2119 | 2-3P |\n| **3F** | 3101 | 2-3P |\n| 3102 | 2-3P |\n| 3105 | 4-6P |\n| 3106 | 2-3P |\n| 3107 | 2-3P |\n| 3002 | 2-3P |\n| 3003 | 2-3P |\n| 3004 | 2-3P |\n| 3007 | 2-3P |\n| 3111 | 4-6P |\n| 3112 | 4-6P |\n| **4F** | 4101 | 2-3P |\n| 4112 | 4-6P |\n| 4113 | 2-3P |', 'ref_doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d6d27406-84ee-4f2e-8fe9-40d837477efc', 'payload': None, 'score': 5.3562006410411165, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '156358', 'document_id': 'b921af15-be3d-4648-a832-9eff128b796a', '_node_content': '{"id_": "d6d27406-84ee-4f2e-8fe9-40d837477efc", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b921af15-be3d-4648-a832-9eff128b796a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "944bdda3371daca1284fd390ca0a29a9d73fc0764ea88d2c55fcc8bb495cf062", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f14b732-8c96-4cc7-aab4-34c23342640b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "b811c1fef340a9b0e4ac9860aaf0bcb4eafbaec57628f2ce4f38eb3f1faa6f9a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36aec92c-b4af-4794-9536-0cf40ffc99bb", "node_type": "1", "metadata": {}, "hash": "9f61e90e3cf6222cad0453557dba29fa4656b2d87ad996c0b95a8bf1221add9a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 38850, "end_char_idx": 43900, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', 'vector': 'ꁽ\x18;ًL;;\n\x0bBXb\x07<\x10.\x1e=FB<1;Ҽ?\x17=\u197bwI|Q;\x12;{eRWŜLüY\x05=،<\x062ҴbEnYg\x17l$\x17\x13=ND1=\r!5"G<\x15\x0eD(!\nh\x1ab\x1d=\x0eV<\x07=h`\u07bc&=\n\x1bd=3u<\x1d;k[:\x04PО퐟\x1an(|<_:=7v<\x15aR\x00Ǒ\x0b<<<X=ԼbL=Bx<\x00f=jZr=\x0258r=<;fK?7)Q\x02\x7f<ܔo,:,\x19C;<;\x03\u05fc@To3\ru\x03=Vt\x02):s\x16=6\x06\x13V eRWVP;@?ޛ;+0;(\n?k%ڍ=*\x13<~ąw\r N\x07=;;ll\x14\x0b7)Q<;lI+"~\x15j\x06\x1e3=&+<@<¼v\x08̢BXg=\x0f=. P\x0c=^9=J<֡ٻ\x06\x172Ҵ:<8"9=!\n*9\x11oŻbLp8\x00\x01v=6b<;ll;RZ\x1e\x11\x00(=m?k%=Pp<', 'text': '* ***Time:*** *10:10-10:30 & 15:00-15:20*\n* ***Location:*** *LIB 3015 Tea House*\n\n \n\n\n\n#### A Brand-New Learning Resource Centre – Your Gateway to Learning\n\n*Xiaojia WU, Assistant College Librarian (System & Facilities), Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nIn this Poster, we invite you to step into the enchanting realm of the Learning Resource Centre, where the pursuit of knowledge has no bounds. Building a brand-new library is to build a knowledge palace for readers, thinkers, and dreamers alike. This poster provides a glimpse into the myriad treasures and opportunities that await you within these hallowed walls.\n\n1. Exploration: To embark on a journey through the vast expanse of literature. To discover books spanning genres, from timeless classics to cutting-edge research.\n2. Innovation: At the Learning Resource Centre, we embrace technology’s transformative power. You can dive into our digital resources, e-books, and interactive learning platforms.\n3. Community: A library is more than just books; it’s a vibrant community. You can attend workshops, book clubs, book fairs and lectures that foster intellectual growth and social connection.\n4. Empowerment: Knowledge is the key to empowerment. Highlights the various educational programs, information literacy instruction services, and career resources that are available at the Learning Resource Centre.\n\n \n\n\n\n#### Learning Support through LibGuides\n\n*Jane ZHANG, Reference Librarian, Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nAs a common practice among libraries, LRC makes program guides to help students of different programs to learn about library resources and services related to their study and research. The program guides enable us to further consolidate our collection to the requirements of program syllabi. Previously we stored program guides as PDF files on UIC’s Moodle – iSpace. With information from course-related books to databases to library services, a guide can be more than 10 pages long, and not very user-friendly. This summer, we officially move the guides to LibGuides. The platform provides us with more flexibility and possibility to present library resources. First, with the “page” function, the sections of the guide are more visible and the organization of the guide is straightforward to the users. Second, LibGuides allows us to add more functionalities for better user experience, including direct linking to the resources, the support of multimedia contents, adding notes or contents without disrupting the flow of reading. Furthermore, the guides are cross-referable, allowing the library to build a complete information literacy program to facilitate self-learning.\n\n \n\n\n\n#### Practices and Challenges in Academic Library Space Projects\n\n*Pin WANG, Team Leader of Library Operation Team in XEC, Xi’an Jiaotong-Liverpool University Library*\n\nThe poster looks at the practices and challenges in academic library space projects. It consists of 5 parts. The first part identifies the user activities in the library, such as collaborative learning, individual study, library classroom learning, socializing, events and exhibitions. The second part shows the functional spaces in the library, including learning commons, group study room, training room, reading pavilion, research commons, outdoor area, exhibition area, etc. The third part summarizes the most recommended practices of library space projects, including communication between librarians and users, frequent meetings with related departments, visits to other libraries to find out good designs, etc. The fourth part tells us the challenges and solutions, such as noise reduction, seat occupation and power outlets. The last part shows the future opportunities of academic library spaces. With the development of artificial intelligence and education reform, academic libraries are facing their challenges. In the future, the library should merge into the innovation ecosystem. Space innovation such as demand-driven and technology-supported labs to enhance user experience may be a very good start.\n\n \n\n\n\n#### Professional Excellence: A Library Assistant’s Growth Path\n\n*Cai YAN, Library Assistant, Duke Kunshan University Library*\n\nThis poster will share what professional qualities a library assistant should possess and how a new library assistant grows in the workplace.\n\n1. Learning by doing: This part will share some examples of how a library assistant learns from doing everyday work.\n2. New library, new challenge: Moving to the new library also brings about new challenges. This part will share the case of the DKU Faculty Works Project about how this display project turns from proposal to reality and the constant process of occurring and solving problems.\n3. The nurturing of leadership: This part will share some experiences in training and organizing student workers, thus shifting from the role of a follower to a leader.', 'ref_doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:75b0644f-1aa4-48e9-8944-0ad15f0edc50', 'payload': None, 'score': 2.981550931137079, 'document_id': 'index.html', '_node_content': '{"id_": "75b0644f-1aa4-48e9-8944-0ad15f0edc50", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "152dfeb0-eda7-4982-885e-b8bd274fd1aa", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c646a76d-1b42-402a-a04b-29eeefc6ee86", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x03c\x05?nTG\x13\x0f;1yӼR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 2.9815509311370785, 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 2.9815509311370785, 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{20008 total, docs: [Document {'id': 'test_doc:b79de8db-2cd3-4635-aa59-cd21b8306231', 'payload': None, 'score': 32.65733993255272, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '324321', 'document_id': '0678c2a4-a59f-4e33-b0d1-8814d232cbd5', '_node_content': '{"id_": "b79de8db-2cd3-4635-aa59-cd21b8306231", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/tkb-p/Instructor/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 324321, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/tkb-p/Instructor/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0678c2a4-a59f-4e33-b0d1-8814d232cbd5", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/tkb-p/Instructor/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 324321, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/tkb-p/Instructor/index.html"}, "hash": "73bcd5a680d5c24ee6098b464f1a851a11619eb7e9b4c0284528c423a75bfb4a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1291503c-d95e-4719-9501-ffa8e739b6fc", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/tkb-p/Instructor/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 324321, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/tkb-p/Instructor/index.html"}, "hash": "e6b9aa6ecf3910d28c7c4b2560cbcbc4c27ef4a6079eee2fa2132efe58cc6b33", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4a20d041-303e-43e9-bc3c-04e76cbedc27", "node_type": "1", "metadata": {}, "hash": "7b82b293f36db488fc9363d71706400b530982844dbbb69782472e5d929f4fe3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 44234, "end_char_idx": 46953, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/tkb-p/Instructor/index.html', 'vector': '\x1e\x1eŵJ\x06?um]q<ԓ,\x1b<\x19Q<\x16:<&E<\x1b\x1c=\x03IFA\u07fc@5\x07f;<5<3\x0ex/h5!\x0fRn0=?\nF;\x06Y<;t\x08\x1f:D,\x0b\x046\x05\x01⺼\x13;76={e;Z=M[\x08=b<9~PY~W9\x04|<1#;C<\x16=}Rn;:Wz<%}-=s<\t+\x06\x1c<!@ ;i+u;,na\x1b:R\x10KF=X\tм\x13<&\x06;_%ۼa˦;gC8:9x˼\np!@ \x1at%~z`|НQ:?9=42=S52fr!}<:";\x04\x04<ޙF=)<7\tɼlFH;7\x0b\x19\x19=4P;뼐4:\x14&\x1b==ᐼi\x04/<;`<\x05\x12/R_<;P;>v?~E==\t\x1e::$=<\x00?>$!p\x0eR\x07=\x02;i?B<%!;7K<\x17>\x10Z=\x17<*P~@K@=\x01gB!<\x05\x12;( K\x1fOW\x1b\u2ef5b=;\x1e!\x10t=M)=;I=\x18<\x0bz\x05Ҽ\x08\x13"<:V&v<h~I\uee84\x1aD==;5V\x7f=H;*м\x7fzhuP\x08YG<\x1bqT\x17:3\x06a:\\|xn%ۼn<\x02Q<#=Oƅ92=\x1aD\x12<,>\x15.{\x08Լ9\x01l.3Q W=|0c<\\!wljb=\x03\x1f;YG\x16;p\x01\x14SHA&=\ny2<\ny2<[\x15=\x08<\x03n<,>\x15T\x04}0{=%|=\x07;C\x11hEܗ<<-=R\x12<=\x0c<]>;8P=\x02i\x19<\t\x07\\h<};\x1eMɏ[,\x1d$\x02;\x008\x065ѣҬҼ\';ܚh:<]軑K=j8G\x05|a\x02A<6>\x083;\n?\x07z;WF͙<\x00ջԟ8<\x0f]54ͼꄜ<2\x1fh^p; @6:\x03<\x07kTN4=eI<\x05=z|2#\x0c-=IK55NfĻntGl\x1a0DX;\'=\x10\n\x0eힻ]\x07/jD\x0b\x07:w\x15H;eCȪ<\x7f\'f<$k;\x1f;k,=*_1mp<\x06\x01f\x16=p\x03LfGO6=9\x1b=:D<]=/\x06<6a \x18k=\x10\r=I\x0c=MX=\x10[\x129+\x1d\x11<;T;V\x03J\x1a="1=r\x12u<1\x04\tFAlp<¼i\x02L<^:w\x0eΞ\x02:\x00K<\x1fd=\r.\x03$<$k<\x0bG=\x1eȼa\x01}8\x14L\x19P<+6\x13{Z\n=%ٛ;\x1b[XƼ\u05fb;9\rB? ּм\u05fc<<6o=q;U;Kl=Ǎj\x04<<\x00;\x08sݪ\x10[\x12j=/ =;\x178=D\x16ʼ\x151.\x04ڼSr\x0fo0\x1fuQM<<\x05nP+g?g\x0cx:\x08μZa\x01;U2r,$=F\x7f\n}1;\x0f5¼/\n\x0cx<\x1d<\x0f\x033-<\x1b\x7f}=e༽Y;CbqtJ\x0fh\x1ce*"1\x16=\x11\nܼ"\x1aDq;Ù<ݼ:\x97V=:[`l<81ռP<.<\x0cn8ռ\x1dݺMhȆW=7^;', 'text': "](/t5/Instructor-Guide/How-do-I-delete-a-quiz/ta-p/1243)\n* [How do I export quiz content from a course?](/t5/Instructor-Guide/How-do-I-export-quiz-content-from-a-course/ta-p/826)\n* [How do I copy a quiz to another course?](/t5/Instructor-Guide/How-do-I-copy-a-quiz-to-another-course/ta-p/1083)\n* [How do I send a quiz to another instructor?](/t5/Instructor-Guide/How-do-I-send-a-quiz-to-another-instructor/ta-p/1081)\n* [Once I publish a quiz, how do I make additional changes?](/t5/Instructor-Guide/Once-I-publish-a-quiz-how-do-I-make-additional-changes/ta-p/1239)\n* [Once I publish a quiz, how do I use the Moderate Quiz page?](/t5/Instructor-Guide/Once-I-publish-a-quiz-how-do-I-use-the-Moderate-Quiz-page/ta-p/761)\n* [Once I publish a quiz, what kinds of quiz statistics are available?](/t5/Instructor-Guide/Once-I-publish-a-quiz-what-kinds-of-quiz-statistics-are/ta-p/659)\n* [Once I publish a quiz, how can I give my students extra attempts?](/t5/Instructor-Guide/Once-I-publish-a-quiz-how-can-I-give-my-students-extra-attempts/ta-p/1242)\n* [Once I publish a timed quiz, how can I give my students extra time?](/t5/Instructor-Guide/Once-I-publish-a-timed-quiz-how-can-I-give-my-students-extra/ta-p/999)\n* [How do I manually submit outstanding student quiz submissions?](/t5/Instructor-Guide/How-do-I-manually-submit-outstanding-student-quiz-submissions/ta-p/808)\n* [How do I view student results in a quiz?](/t5/Instructor-Guide/How-do-I-view-student-results-in-a-quiz/ta-p/1114)\n* [How do I view a quiz log for a student?](/t5/Instructor-Guide/How-do-I-view-a-quiz-log-for-a-student/ta-p/580)\n* [What options can I use to regrade a quiz in a course?](/t5/Instructor-Guide/What-options-can-I-use-to-regrade-a-quiz-in-a-course/ta-p/1093)\n* [How do I regrade a Multiple Choice quiz question?](/t5/Instructor-Guide/How-do-I-regrade-a-Multiple-Choice-quiz-question/ta-p/657)\n* [How do I regrade a True/False quiz question?](/t5/Instructor-Guide/How-do-I-regrade-a-True-False-quiz-question/ta-p/658)\n* [How do I regrade a Multiple Answers quiz question?](/t5/Instructor-Guide/How-do-I-regrade-a-Multiple-Answers-quiz-question/ta-p/575)\n* [How do I create a survey in my course?](/t5/Instructor-Guide/How-do-I-create-a-survey-in-my-course/ta-p/782)\n* [How do I view survey results in a course?](/t5/Instructor-Guide/How-do-I-view-survey-results-in-a-course/ta-p/792)\n* [How do I view practice quiz results in a course?](/t5/Instructor-Guide/How-do-I-view-practice-quiz-results-in-a-course/ta-p/896)\n* [How do I set up a quiz to be sent to my institution's student information system (SIS)?](/t5/Instructor-Guide/How-do-I-set-up-a-quiz-to-be-sent-to-my-institution-s-student/ta-p/1266)\n\n\n\n\n\n\n New Quizzes\n\n* [How do I create a quiz using New Quizzes?](/t5/Instructor-Guide/How-do-I-create-a-quiz-using-New-Quizzes/ta-p/1173)\n* [How do I create an anonymously graded quiz using New Quizzes?", 'ref_doc_id': 'f4ece21d-8d06-40e7-a47a-297ff4d2cf02', 'doc_id': 'f4ece21d-8d06-40e7-a47a-297ff4d2cf02', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:59bf97ab-15a9-4690-8fcf-4deafbdd4b9c', 'payload': None, 'score': 29.377912212522855, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '414556', 'document_id': 'bc3f04e6-3a9f-4db1-b4e9-503926024f45', '_node_content': '{"id_": "59bf97ab-15a9-4690-8fcf-4deafbdd4b9c", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-download-all-student-submissions-for-an-assignment/ta-p/760/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 414556, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-download-all-student-submissions-for-an-assignment/ta-p/760/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bc3f04e6-3a9f-4db1-b4e9-503926024f45", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-download-all-student-submissions-for-an-assignment/ta-p/760/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 414556, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-download-all-student-submissions-for-an-assignment/ta-p/760/index.html"}, "hash": "896f80609b38a71556ab73373608b0487a167c9a03a64c76668c86f155c2f3a1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7ca32183-5e98-4c93-aa64-d96117655df8", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-download-all-student-submissions-for-an-assignment/ta-p/760/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 414556, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-download-all-student-submissions-for-an-assignment/ta-p/760/index.html"}, "hash": "227fbdac2ce0fe5b560f821e8b0935f6fa8d5ed38072eb7d2d5b1f775b0c1acd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "348561ae-84fb-4a3b-a144-c1c8d6011406", "node_type": "1", "metadata": {}, "hash": "e36071c3c5c412eec8706187569028b4374e5df7fe80157640364ded3604ca31", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 86264, "end_char_idx": 89150, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-download-all-student-submissions-for-an-assignment/ta-p/760/index.html', 'vector': 'c\x074ʸFV"\\$\x18\r$<*\t<=<\x14˻b\x1f`;yvüݺq=p\x0c+ cY\x19T5xe=\x15x\x1b9-Ҽ`;=\x17O˄<;YȊ<<-8\x01=:`;jF<\x04>k?<<,;TI#q\x00=1\x8fg$<\x19=Լ<;v<3V<\x0f*A)<;\x18\x02\x15xuI\x1d==|x<#%??/<\x00ߋ=&=\x04\x18U7<\x16P=>G=m\x7f[l\ue63c\x88:\x0e\\<\x0e\\+=།<\x0c_)a=p\x1eg\x03\x03¼np\x01<\x0cۼZ#fW<%<\x16\\z/=5b&\x1c\x14=}0\t9nVp\x01&Y|4>\x03J=\x1d?[<\x1d4=;e;6n:uI\x1d=x\'\tǘ<*=t:\r?<+ҹ$<ܤ<#|\x04ܻQ%Q<<\\~=e=:J\x034\x0e\x1a\x13\x01;\x10\'\'\x1f\x04.\x18?J<ȼS=D\x14:zl1(wv=\'9g<\x0c<\x1d4<4Rd<"\x10=)lr<#w+5<\r⪕9-\x06=\x07T=\x07"v<+ǵ:*w<\x15l<˼\x0cO;O\x0c;_|\x08=\x04<;ܺ?&}qm#:ܙ;\t\x14=\x036\x1b;\x04R<;&ü\x15~<\x19\x0b̼l\x16ؼN"\x16=dZ6J,QFݼ{;y+LN8\x1e\x06\x0c=\x0c<\x00lky H=Z<<=!ߨ;<ܼU=1\x1bc!{=;\x10=;D<:m5Z9n-8\x01="\x14no\x08<";c!<+;Sż,\x04\x0f\x0f;\x1c,Y=+\x0b<;\x03B<\'\x06<==F<ݼ;h\x04\\$\x14SћI<^:\n<>̼\x06\x00zm_\x17\x14J\x1e<\x19I9l\x1b%5\n\x03\u07bcR=!Vm<\x05=1\x03<6y:9A\x1e=5A=8\x7fJ\x06NV=h><\x18\x11ּT\x0fch<\x148A\x05=\x19h>p\x1a);\x10쐾Xf<\x1f\x07\'5ռqD\x02Ur9u<_\x0eOKw\x04;_8R\r\x03;\x0e%!m-9Ga=3Tr=\\$u\x00;J\x0bʼ\x0c<*w3\x1bη<Ν˼(ּMMKp;\x0bJ<\t<`R<\x0b<փ\x0eƲ<\x193n=\x0e`4ޏsټ|D=ռxH*7\x1dFɖ;G={;u\x06B̼BƼ!te9(=V\x17=lVM$M\x19SS\x7f=e@Ng<р<"\x7fV"\x1c(<\x1em:DSj9Su&\x02,=xG&=v֨;\x1a\x03<1<Κ<\x00;43>S9=\x11<\x10c\x14=ZH<֝;u;X<=F\r^raYL\x0eU\r;*\tM3=\x14S<\x07\x1ax\x0fb9KrWI\x01;K:\tM\x1a㍼;C0oԼN^*\x01<{\'ü+\n\x06=9`\x0b<_\x02<>\x1b\x08)<7RX;=Vk[<\x1aּhS~\x0f\x03A㼐*r\x08=\x0b*ګa<6t;wc\x06vb=7߁\x0eJbڻ\x06:\x14м\x056<\x03\x0c=\rnv`kֻ\t\x06\x14\x00<ӧ;W\u07bcG\x08]\x01\x17!<\'+k<\x1düxg\x1c\x1fh\x1e;\x12\x1c\x02fC<ռ\\=^\x0e\x10=\x0f`=\x03\u07fcd< \x00=\\<8\x0bz<=C,<2\x1a=ټ:Q\x1e7b4;ƜЇ:ݣ;W<3\r<ڰ-_v<~{=Ƽ\x03ʫS~\x02N\x0e\x104GASEYW\x0f;T[:Jºˉ;vd]=\\;:;#\x19ò=\x1d\x1f;̑\x08.(;\x18F\x1f.$=R\x18\t:x<~\x059\x003<;ڶм\x0c`J=\x13;\x15c#!=d<\x12\x03!\x08\'\x15r\x00=\x13<\x19\x1c<"S.<7RXo,:;F.~f&<1eP=wYnD\x1c=F<%1eк1\x7f\x11\x1dY<\x10-y=m<6m:g\x17Ӻ\x1a:bZ<5E\x11\x1dY<;5=މ\x108\x0e;@:*.O? \x13\rs<\x162p4\x1aa*;@A=kT|<%K^PvC\x06\n<ԋ<&ӻ!Y\x019I%xO>;F)\x1a;\x14\x17\x1fFro\'<ݻ8\r\x07<\x0bB軬F;A;77;),\u05fd@=^v:y\u05fc%K\x1e?$"\x16;\x1eW6~=EE\x1ek0\x03=t\x02*=i}]\x00P=|So%o[\u07ba\tV<\x08-D\x01=%xOfqg"\x12<(=ڿn\t=$F;\x11G=m<6~OS;\x03ǼڱH\x16<\x1aU)\x1eTwv2=\x0b>ʡ\x08Qp=a\x11wG<\x1f\x12=8\x16dء\x18<\x1eW\x11_-;8\x07\x13<Ǔu<\x14<,2ET.\x02w0R\x1a\r-;q\x18=\x15\x1e3<\x1dg\x0b\x16^ͼu7=\x01<\x0c)\x1ca\x1dG2\x1ch<\x00\x04\x7f64\x1bL=\x06=\x015ǓܬZ<\x01}sx\x06#@\r\\f\t\x15=";\x0cv=\x16\x0f1[=J[\x11kH\x1d)<֕Y\x07=\x99&\x08w|ﻦ\x05sEE=QcQ=y)hq<\x12U/=0\x05=:q^\\\x19<{\x1e\t2\x0f<\x18=\x00\x0f"\n\x17\x02._1VQ=&Sql=:ѻwL;=Qđu==!\x1e:H;d p<\x18tײ26;z\x02\x1d}O\x0b\x19ӼK\x0c=X \x00q\x00q;\r\x02ftI\x1d\x0eڻSA86<<7\x02N,\u074b< \x0c<8\x05g;AȃN[Qxջ\x157{qe\x06\x04a=мQOҼ\x14?\x0cTR9μg=]|\x1c\x01=\x08\x01:ʽLP\x1f\x1d\x1a堼1J\x06g=\x00<\x06\x04a;]Ժ,!ü[N;&"=<+&<$\x00"P%9lcA;\x13\x1em\x12=\'\x1fA\x1e\u07fcs$\x1bϼ:k\x14<\x03ZT;;Z<\x0e\x14\x14=S_\x1eVC9,g=\x05=i<>ʼ7<\x1cs\x10=d<Շ5<\x1b\x18@W\x1b\x18;\x0f\x03\x7f\x1f=R\x16<\'\x14\x109c<9%*=\r\x10\x12\x10y\x018%\'-?i\x0b=&"\x10=\x0c\r\x04=\uf67czm=p\x0b\x0f\x13\x1e\x08+i\x0b=hݼ!ԇ*Sq\x128^2=O<}\x1dA.=X<._GR=WE=YT:^S9\x120#=\x06\x04\x14<\x1b4ȋ;hݻ\x15\x12=Ǽ\x06ż)6==-6\r\x02A\x1e\u07fcM*=\x19\x1d<ǼH#\x13=o\x0bWE˰Z;\x1b@`(=\x03\'\x12A<-\x03=,!C/\n\x18\x1e~>;k:!=Q\x08;\x14<\x15\x11=Z_+=\x16\x1c=Vka;<\x14;@+S=,gG<`<\x1e=<\x12\x0b);c<~\x158=g\x13<{;<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:110a63df-8b02-4822-b4a9-617ebfd42f5a', 'payload': None, 'score': 271.56002835738695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "110a63df-8b02-4822-b4a9-617ebfd42f5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc1f8a7f-baaa-4dbb-b662-57f13800fc6d", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "42c284bcff1c342571f19d5285c5bdf0c3c2d95e0c64042007d2e2532fa12fcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44f66e02-b2b9-4265-99c9-08ed4732fef3", "node_type": "1", "metadata": {}, "hash": "297fe55bd95dc0e162681bb957aa6d46eb3c30c959b454474a848f22dc63074d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1601297, "end_char_idx": 1605766, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'B\x03sL͜\x13珼|&&a\x11y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/ݳݳ]K_<\x01l<ܵ+<2=5Ǻ\x07\x0b8-\x19hB\x05\x10(\x19Vs<1\x0c<>\u07bcp<\x00g==*\x7f:Ir;$9Vk;\x04?hJ<[pU\x181=2!|>\x10SQ\r异\r\x0e=d`\n\x01p]=\x02<\x1c\x1e>;\x0c\x12=fR<]˻><\x15\x03\x0fR;\x18\t=mGUFѼrI=+H<\x02=i¼B0cD\x11bjjXYZ(=\x0f\x02\\Ԭ:V<\x1f:\x03S\x00=!0\r\x1f溼\x1c;\x07\x12\x14;\x19\x03;7=\x7f\x1eU;ĒR<\x16<<$=\x0b˼A~\x10;ٟ;M>^=C\x19<ؼ+T\x13<=/;q\x18=\t.C6=Ur<~;\x1b\x15=^r[\x12?hʼRWk<`<\x05҄ =\x0eu\r6\t<% 9YZB<\x19}H=\rv;ۆ!\x1a/4< &=\x1cL<<ʐ\x17<\x19V;e,:\x07<&;\x1e4O;9;7t<4M:3=JK\x0c%\x15=T?\x139t\x08+\x11=wQ!}\x1d=+ȼp6\r\x0cmG =<\x071\u07fcJE\r:\\"A0Ycd=?h\x15==X1⻈}V\x06Cs\x7fŻo^|<)<\x05.\x11fP=W\x06^VB<#>?<,_=\x1fA\x16;<?\x15\x08\\<\x10\x10;N <ɘ<ޑ\x02=\x13 ^\x16%]\x14;^4\x1b6\x1bPoћ/P<T;b<ڽ\x1d%="5<\x165\x16\x1d\r/\x0cU<ּ6\x16=j\x19<9`Y=\x17=L\\Q=<<_X<\x08hԼ\x187/\x19T\x1d:`Mh\x17\x18ᦼ\x12 =\x1b`;\x1c=\x1e<\x18M<+\x17\x0bMɄ\x00\x04<:ټgy:E;DR\u07bc2!\x00<˲\\\x0e\x17<\x1cOS=,\x10\x05\x06"\x01TK;:<\x1dջ=Fq\x02PH\x0ew\x0f\x17-<\x11=\x11;\x1bͼ\x1b< =BֻI\'\x0f;$\x01<ഄ\x19U7TK=2ӂ<¦\U00100f0f<*F\x06e\x08H<\x163:M\x1c?뻢Ï\x1e=\x19\'<+ڹÏ\x1e=T\x1b=x;+\x17\x0bn\x12\t\x14=%*<~ج+S\rBV>6ʻ\x11=lU;\x0bl\x1f?\\\x1c1R=\x0c<\x17B\x1eU{7\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 45.65767402992056, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u6=Eƺ\x08P=aQ0=\x08r<\x07\\;\x07M=\x04ȇ9\x05\x7f<\x08u\x05/(\x06t5Z\x13<\x08q<Բ\x08:ivV\r\x7fD&j]<\x05\x03<-<\x07U;\x06?<\x05\x0fAۼ\x05$>\x08<\x08H\x08\x07c<;P\x05,$:=\x07Ũ\x12\x04S\t&=\x05\t<\x05h<\x06\x06"?=\x05?#<\x07LiD/\x0eu:\x1b;M\x07S;W^i\r\x1c=\x1biQ\x01=\x0b\x10"\x0e=pY9ZN<"@=f]\x14=Q;;IkA\x0fD˻%\x1cɼ\x0cPS\':s\x17\x03\x13:\x17=\x1dJ4=T<\x07H==0\x0b=\x0f\x16;\x12\x05\x06\x1f\x0fJJ",梅;\x16=z<Ú<0LAza6aʅ=D`Hk&: 4#6=\x16`}݄;:?&<\x03;.\tGW=\n3λO^TCۿ<\x02?=\x0f\x1b("\tb*!\x1b\x01\x1a^;b;Xĺ53\x16<Ú;\x04\x04@$;Q!^\x16k =z\x017<)<\x17[cܻH2=\x11U\x06j\nbuP\x1f(]9\x14c\x1d<\x0c;\rּ\x1dM<\x07ż\x08T<\x0b<\r1@\x05=|ƻr\x02=Ik*<&^9Ӂ<ˇ<μM\x7fHp\x08;`h;\x0c=\x15x\x0175ƻc\t;=6T:7\x14{I;B<6=Ȧ}\x1ek&:EU\x06e.\x18;\x12<.7\x16\x0f\x02a۽ϼ\x18\x05=>?=q<#\\<\x03¼\x12obu:R\x1c*;#=^;З2f9><;t \x18\'lp<>ۿ@zԠ|g\x1f\x05=r;sv~= o2üWh3<"7O|11ȇ\x1e\x01=,=Z;$;y⼦\x16?nм\x17\x01>4\x11}=Q=f2C<\x06o\x191\x07)7}\x14Yi\x1bm<;\x7fԳl3:ӻ\u07bbK]]4+ae\x14^:\x13<\x1c\x1d/=\x01{\x7f;hټ\x14<-_\n=;N=6<\x1e8"-\x199,<\x04=_([ 4+\x05,Q%c=&=S;?Q\x00";=OGP<$\n;N%7\x1e=kG1u1Q\x10\x07=\x05u=\x1f:wgn\x1aY\ro<৵=<ͻ6=\x1d\nX<՞,><\\v+>;ȇ<|B˼Q\x12\x0bV{:!<Ǻdtμ<\x07FP8Ꜳ<<\x0b=o\nBT\t#\x1f{՜\x02)=([х;Q<)\x1aǻ\x1a\x02\x0c=/.\x05=;;*k\x02=Ɔ\x13<\x03,C7\x05y<%37L\x12\x03&F^N=\x16ĺ=b\x0f=h;\\ߡ;4\x11NI;\x03,2;,$;`;pltvd=5\x15F=\'dSlO*;\x06=W<\x0c\u0381\x1eiWX=<-\x0cR;\n\x0bƻXV\x19F\x03d>\n{\x14>\x0f㼒z^=Nz{=\x16<\x0eKjG_<谼\x15~q2<\x1eAF<&\x08l;"0X;s,=\x00ebȻ\x10=/\x03v*=Ժ<\x13Hf\n/\x03=&f;%=T@;;W<\\;\x7f>\'b_i;+]3E<\x06\x00\x0e>l=9ܻMJ=\x0e\x15\r>f\x1e;-\x1e\t;=t0he\'=\x17xż\x0b$ͼۧ\r,OdƘ<^\x1e~;\x14؏=0 **All courses** link.\n\nIf an instructor would like to continue making changes to a site, allow late submissions or other changes in their site, they can switch the site to be dictated by course participation dates instead of the default term dates. This is done within each site’s course settings. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354) on this process.\n\nIn addition, instructors may set within the course’s settings to ‘restrict students from viewing course after term/course end date’. By doing so, the instructor would retain access to the site but students would no longer be able to access the course at all. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269) on this process.\n\nNote: Sandbox & Collaboration sites are not dictated by the same controls by default as they are not associated with a specific term.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSetting up course site and content\n----------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nHow can I enable/disable a tool in the Course Navigation?\n\nOn your Canvas course site, there are some links (Home, Announcement, Modules, Grades, and DKU Library) enabled by default in the Course Navigation. But if you want to customize your Course Navigation by adding or removing links, you can\n\n1. Go to Settings in Course Navigation\n2. Select “Navigation”\n3. Drag and move the tool(s) you want to add or remove\n4. Click “Save”\n\n\xa0\n\nFor more details, please see [How do I manage Course Navigation links?](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-manage-Course-Navigation-links/ta-p/1020)\n\n\n\n\n\n\n\n\n\nShould I adjust the time zone in Canvas just like in Sakai?\n\nYes. All DKU users are recommended to change their **personal time zone preference** to China Time. See [this documentation](https://community.canvaslms.com/t5/Student-Guide/How-do-I-set-a-time-zone-in-my-user-account-as-a-student/ta-p/414) for detailed steps. All DKU courses use the China Time as the default time zone.\n\n\n\n\n\n\n\n\n\nHow can I copy over existing content in my previous Canvas sites to a new site?\n\nInstructors can copy content from an existing Canvas site to another including course settings, syllabus, assignments, modules, files, pages, discussions, quizzes, and question banks. You can also copy or adjust events and due dates. Student work cannot be copied over to the new course. Find out detailed instructions [here](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-copy-a-Canvas-course-into-a-new-course-shell/ta-p/712).', 'ref_doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c533cdc5-9ca9-4392-838a-416efcc47b89', 'payload': None, 'score': 36.103346983174184, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '417741', 'document_id': 'f4ece21d-8d06-40e7-a47a-297ff4d2cf02', '_node_content': '{"id_": "c533cdc5-9ca9-4392-838a-416efcc47b89", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f4ece21d-8d06-40e7-a47a-297ff4d2cf02", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "ddade1bcbfe7aaccdbc3b5146863be9efdcc4f12b4b4bafd131f8ed6ef19e3eb", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "896a8981-c39a-43b8-a50b-7d769ef500f6", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "3ee38770b0a269b83f5bd48fca6fad36d601082d6c68f0f9348d7c45748b08fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3fb6dee9-bad4-4058-a845-288ff4a1356a", "node_type": "1", "metadata": {}, "hash": "5a79b341b4a35ac8fd3dff0c2bbb3cf27a6cfe724a34804ba1c42913f9a75588", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 103547, "end_char_idx": 106536, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html', 'vector': '\'-Aۼ\x0f\'y?/6j༁|;q\r=\x161.=5aJ 6@zH:`\x1a\x0c=]<\x1c1H<5a<^!<]={2<\x02GwNrb`\x1a<\x1d\x03p\x7f=#C )R\u07fbz;/o\x13w\n\x10+s"l\x18B=/=T)ڼ\x12<\x1b(<ûJg\x8a"q\x18=O\x11ټ:\x03\x12=1\x033;\x17\x12\x19\x01Z;\x15=oX9\x0bM<\x1dP<4=,ۯ,<\x03\x18=(n:\x1a\x16h==\x10+sHK"Ȳa7"(@\x05<ϊ<\x13*\x15<`\x1a\x0c:;Sb<=Yky<\x0bF=\x18<\x11ԹF\t%~?\u07fcðli\x1a.W\x16y\x15M.\u074bƙhL\x00=\x19\x1bo\x03m<\tK\x17;ѻg\u07bc#=/<,=]e<\x00\tхd<5\u061c=NcQ<\x1d3<\x11\x1e\x04)2@μɑ(\x11K\x1c=-JP=T\x1bɖ#<\x18=;\r=\x03t;l<4\x1c\x1c\x03F<\x14\x11t<3젼F=S\x14;\x1d")hܹf.\x06\n\x13=̼\x0f+r}12\x132=J@dTJ\x05\x0e\x10b@};?X;M+ZD.\x06\x11\x0e9A\x1aչN!ۼ#=Գ-5=4ԃ(:\x18NH!\x1fPռ\x16\u0383G\x16=J<70<"f\x18Q=Kt<=\x1a =dU!<\x1e<\t\r\x1c\x15=J<8;g;*ɦ<9*yr=[\x02k=T\x13\\:\x1d=Vf<μs\u07bc]=Ⱥ"=Hճ;%\te<\x19\'c=S쁻 \x0fF^KD\x05hn@@Zbu=*\x01\x1f+ip;\x19kr\x04,U?<\x038G=pP;뻠S1X<Г<\x06lH\x06\x19k2ca:ּْ;ܼSeqP=K\x0f\x19\'\x1bۢ*\x18y\x0ex\u0383h@=\x17[L3h\x11\x05\x0f/ϼP\x04.\x7f>;,ٌ/+=\x07~\x0b<\x04^\x1aZ\x0bx&~D<\n/\x1c0:\x02<\x16\x18]\x12QDH]qX\x19;k`<\x10G=(<>6I<+X~;Y\x1d=]>;\r\x1cl\x1fDw\x0f<{Nsc\x1a\x06\x03$Z<%\teZs<,<\x05=fN=R\x03F=EUݼ9\x0f\x1e=\n}.^x<\t\r<\x08<9㡱=$|=\x08;bo\x06\x16<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b_vP\x01V?=>\n<\x07<\x11\x16G\x12;JV<=\x1fQC\t%6ֽp̈<}\x06Ƽ\x0e\x13=\x03ת=9vn=09H\n\x1fӼ8Ɯ;d3\x06qN=y=Y\x01<\x10*݇=Aˏ\x02;=\x18\x04/<\x10J-Tš~zm<"u;.{<_vP<ջ\';v;6\x13`H:@:F<)*=^9"\x08\ta\\;\n/"\u05cc<\x15~D<\\$\x1b=;MѾ\\?\U000e45fcwƼ\x08\x07V"=\x15< ռxƻk伩\r=]1g\x04[=R"_;\x0b&Ϩ\x00B#\x1f9=ż\x0eD:C!=\t\x1a_<=iaG&#=ؑJѼ[oռy7c=\x05Wy.=:<\x1a\x04\x8f49z:<,`<Ԗ<\n䀞:\x19e\r\x7fgJ==\r=:i(\x14<\x05Cs\x1e~.ԗ=v6;mw,=5=Լmw,=\rT;/";$<\x05;pp<\x10!\x18\x02̅=XȻ\'輵pSȋȼtc="Ƽ\r\x14;\x10P\x00[9\x02=?C\x04<6=3do(\x13\x12;-HW=]R<Ǧ\x03qM0$\x0f5=l\x14[svd\t-\x7f>\x0c=F.3A\x08=\x19 =\x1b\x05\x0c<ջs\x1e\x19q{\t=y\'\x11dF=\x01aL<\t<\x0ck=\x14;\t <"\x05=\x06R\x02t\x14<\x1f`ڀ\x01 9;mw,+z<|S\n3A<49|D\x140 =ռtj:C<^\x04;+<\x05<嚼Y;\x1a\x07S;F:ga7P=`d\x04N=\t\x1a_\r7\x13\x076Y+zE\'A<~\x103=\x10x;Ѽzh<@\'K<+EA;\x7fQ*=\tc<.=+=\'xG0;ҙ\x17L2\x0f\u0383Vaz\x16\x1eϼ\x04+9S,\x08=j\x0fZ\x00<(<1t\x03\x05u\x0c*;5\x1c\x078*\x11̻A\x03\x1e<1(ӻ\x1e?m\x08<\x17\x15`\x13*Wf\x010\'$Vjַ=::\'\x01*=\x1f\x11=\x08\x10/=[:; XX3\x18"\x12dN=hp"<\x15\x04XD;s\x0f=i\x14)$\x02ż\x0c\x19 X<\x08;{<ϔ\x16\x03\x05<\x1e\x02<-_\x1aַ\x0b;C.64=%9;:ĺ8T,V;f\x14W=RȮ\x04\x08=i\x1d:2i;ˋ;\x18\x08=JVồ8==\x08\u0378:\x05<ͺР=T\n<\x06<\x1e\x193\x00ˑ\r=\\\x15h<<<\x17;&\x16\x03;CɰF꼫¢<5.a,\x00S \x18\x0f\x7f:< üP\\\x05<ỼM<\x0e\x02=qꗛ;\x054=ȓf\x16\x03=\x19=]\x18\x02,<Ƽ=<\t<\x03\x19\x1e,!=\x01ƼF;\x1a65=d>=\'<Э\x08=Ј<\x17PӖ;\x00B\x065\x02:\x1d؏]5><51)=р<%=;(I\x7fPs:B+\r֞<\x1cW=hQ;;;\x7fu\x0fhc;;rԆ<}kK;B}: a\x13ܼ:\x10\x19=kn.dz\x1b\n\\$<,Nʟ<(!4\x16\x0cx;\x11<<\te<ς:ʟ\x13\x1aQ\x07=m,\x0e\x11=9\'<~<\x1a@|\x17.ʽ_<\r\x03=h;E=x\x0f7]μ\x02ݛ:P<\x7foa<\x1e]>\x18\x1ep<\'l=QIɛ<.<;S9B:z\x1c<ɳǼa\x0fm];|]μ\x16=\x13b;<\\\x03=I=\x1bUus\n\x13z\x18<5紺|\u058b<\x97cO\x13PFPv\x11q0\x0f(q|!7=@pT:F<\x0fi\x1aa\x08\x07;S:<9Y\x1aGK)=\t=h9\x08=̈\x08\x0f:A=<09༞\x16\x1e \x1f<\x075-d\x19\x02\x1b\r҂6=(JK\x14<˩<.=%o;5r%\x0fi=})\nX\x04=XkY<\\xXp\x11=u{\x15=d<μ4Dg\x1eIv=hI<<ؗ9:$hP;\x13=\x159/=2%\x12m:\x18\x1f<\x1fL\x06$=eEq<"ǻQ\x87\x06Q\x1ez=\x1egd,=46\x1a<\\-yϼOĻqY=n\x1f#=;\x06Xy=\x0b\x1c=D8.<;`/\x0b=dW\r=2"=ׯׯTC=mIƓ曥B:\x1c.W`\x04=\x01:<]AK\x0b\x17(OQ\n=);֑C\'0t\x01=}<\x03c<.Q<\x11W4g\x1aFI<\x04.QҼB\x1f]<\x17<\t[N\x19s& \x03N\x03\x1c\x0bμ\x00\x13\x10{&`=︺9J\x0f=v=<\x00Ѽzi^5w\x04;խwA<\x0c<{::<\x0f\x13\x08Ke<+Y껼|5\x1c&:,\x08e\x13\uf13c\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_KYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~p<."<\x03\x18\x1f=~\x19=Ѕ-\x11i\rERL;St\x1a;+;v{ٻQHżf\x14;<\x1c\u07fc\x0cX7uּǿ<^\t!/b\u05f9jIe=#<3\x04Y<\x1d\x11<\x19\x1c;|͢<\x15!\x07\n߰<%~<\n)-=:\x19^<2W=3\x15=<\'3;{<ǿB<+\x00=\x06M\x1er\u07ba\x13\x05\x0c=b\x0c컗༁}<\r~]uY<9O<8\x06M\x0c\x16;0=rv\ue37d8w̧=QHE;uZ\x15=\x1a=|\x19nh&鼾\x11%;J<\x06Y,/<\x175ƻc=l\x04;\x11\x1e\x10\x00ڼ;\x01e̼cQ- Ʒ.<;g;U;˂Hηn=D`\n=>l2\x01<ܼ\x17/yV1㴽*\x1e˻ἵLU==7\'=\x16Z9ɋr=JY<\x15ۻ(s;&;e<&\x088=\x11\u07fb.^-&v<]\x16l2:<`;vy@:G9\x1fҼCz`=\x10=h\x06R\x0f=T=F=>s4Bn<\x08m=5@\x0eH<\x18\'S=B\x11\x1a=Tԅj\x1d:ĄǼ0+Hۻ\r)[;:\x12t;dw;Y1<=\x10*\x18\x142=b\x12;7r\x05Q\x13N#&$}-o"r\x05', 'text': 'Tools like ChatGPT raise broader questions. We agree with [this approach](https://www.insidehighered.com/news/2023/01/12/academic-experts-offer-advice-chatgpt) from Inside Higher Ed: “Go big. How do these tools allow us to achieve our intended outcomes differently and better? How can they promote equity and access? Better thinking and argumentation? … In the past, near-term prohibitions on … calculators, … spellcheck, [and] search engines … have fared poorly. They focus on in-course tactics rather than on the shifting contexts of what students need to know and how they need to learn it.” While the Poorvu Center doesn’t have all the answers, we can offer some general guidance and work with you to put this advice into practice.\xa0\n\n\n\xa0\n\n\n(3) **Changes in assignment design and structure can substantially reduce students’ likelihood of cheating—and can also enhance their learning.** Based on research about when students plagiarize (whether from published sources, commercial services, or each other), we know that students are less likely to cheat when they:\xa0\n\n\n* Are pursuing questions they feel connected to\n* Understand how the assignment will support their longer-term learning goals\n* Have produced preliminary work before the deadline\n* Have discussed their preliminary work with others\n* Make their writing process visible in the completed assignment\n\n\nMany of the above characteristics can be integrated into authentic assessments, which are assignments that 1. have a sense of realism to them, 2. are cognitively challenging, and 3. require authentic evaluation (see\xa0[**this handout**](https://docs.google.com/document/d/1_dqFC4T3H9TISVUPpSy6dsuJP3oqNpWypCvQmdyqy8E/edit?usp=sharing)\xa0for more). Examples can be found at the bottom of[**this website**](https://citl.indiana.edu/teaching-resources/assessing-student-learning/authentic-assessment/index.html). Authentic assessments also align with practices that prioritize student learning, and make it harder to collaborate with AI tools, including:\xa0\n\n\n* Asking students to engage primary and secondary sources, which can include:\n\t+ Assignments where students place their ideas in conversation with the ideas of other scholars—either readings you give them, or sources they find themselves\n\t+ Asking students to use resources that are not accessible to ChatGPT, including any resources behind a paywall or many of the amazing resources in[**Yale’s collections**](https://lux.collections.yale.edu/).\n\t+ Incorporating the most up-to-date resources and information of your field so that students are answering questions that have not yet been answered or have only begun to be answered.\n\t+ Engaging with ChatGPT as a tool that exists in the world and having students critically engage with what it can produce as in**[these examples](https://poorvucenter.yale.edu/ai-teaching-examples)**from Yale instructors.\n* Using alternative ways for students to represent their knowledge beyond text (e.g., draw images, make slides, facilitate a discussion). Consider adopting collaboration tools like\xa0[**VoiceThread**](https://help.canvas.yale.edu/a/1335037-voicethread-overview).\n\n\n\xa0\n\n\n\nAddressing Generative AI on your Syllabus\n-----------------------------------------\n\n\nThe Poorvu Center recommends including on your syllabus [an academic integrity](https://poorvucenter.yale.edu/academicintegritystatements) statement that clarifies your course policies on academic honesty. The simplest way to state a policy on the use of ChatGPT and other AI composition software is to address it in your academic integrity statement.\xa0\n\n\n\xa0\n\n\nA policy that encourages transparency in how students use AI might read: *Before collaborating with an AI chatbot on your work for this course, please request permission by sending me a note that describes (a) how you intend to use the tool and (b) how using it will enhance your learning. Any use of AI to complete an assignment must be acknowledged in a citation that includes the prompt you submitted to the bot, the date of access, and the URL of the program.*\n\n\n\xa0\n\n\nIf you think students’ learning is best supported by avoiding AI altogether, your course policy might read: *Collaboration with ChatGPT or other AI composition software is not permitted in this course.*\n\n\n\xa0\n\n\n\xa0\n\n\nGuidance for Teaching Fellows\n-----------------------------', 'ref_doc_id': '7504d123-af61-4390-847c-2105a900c67f', 'doc_id': '7504d123-af61-4390-847c-2105a900c67f', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/poorvucenter.yale.edu/AIguidance/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -Failed to export batch code: 401, reason: Invalid token -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -socket.send() raised exception. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -socket.send() raised exception. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -socket.send() raised exception. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{25977 total, docs: [Document {'id': 'test_doc:a6ece455-20f9-4162-9aec-283d569af329', 'payload': None, 'score': 99.5185882941866, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '139432', 'document_id': '4c8706bb-92f1-4ced-b4f6-d741f1128e61', '_node_content': '{"id_": "a6ece455-20f9-4162-9aec-283d569af329", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4c8706bb-92f1-4ced-b4f6-d741f1128e61", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "hash": "96e184cc8db1f50e5fb21defc8a365c981504feacb2ffc80a67400445188a0a2", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4b88ee27-1bed-440f-9e41-6d9aa3e31bc7", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 139432, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html"}, "hash": "08aebee95fd0d1021d5a00e43c2572878a17f5b07a5b3f23025ce94a6fbc949e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4cecead8-79c8-4c45-96ae-1fbcb1118484", "node_type": "1", "metadata": {}, "hash": "7072ece6925180f6d5b4b3c3b06eeac11f3620a7d8d71772c67c4e947cc96497", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6505, "end_char_idx": 11291, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/academics-advising/dkudefinitions/index.html', 'vector': '\x03c\x1d\x10#\x15$27Bw<_\x08__\x0f=s\\KYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 74.56712697123471, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 49.6279794043577, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;\x16\x08ڸjo;L=|\x1b\x12~<4vB]ȞI\r\x16Ǽ\t\x14%jF<=3L6\\ 6=3G㼄d\x0fAm=)ϼM\x14gX\n>G<仒\x0c;=\x1d仟3\x13HS0bc=u<\x00\x01p0Iߴ!\x11\x16=\U0008f53cV2<\x073\x0f\x0bЎW<\x1e\x05b<\x164˺k\x1d=ը\x14=l<9~B4#\x18\x15V\x14`r=\x15=.d-\x0f=\x19=If: \x18=\x01]uY抻l\x18ʻ]3[P\x11& v=\x1d;E-uG0=b\x0e=?8@C(5<押 t;;\x1e5;=8Q;:\x14\x11Ѣ;8=NX\x129dwt\x01=OS?=ŦB=ŶIߴqO)0]\x03v:l۞F?=\x033\x150\x12=VCMI\tR<<<<ٽ=`5\x08/x<[*`a\\dDnR<\x04=\x18<%S\t;Iߴ{=\x11\t{\x013;}?\x0e\x1c<%b|;@N5^nqO\x14$\x1e;x\\z,=|\x1b;9A=ڮ<^<\x01;e#i<_1*\x18;:<;R\x01Ec\x00\x07 2U7d\x11={\x051B;+\x01\x1f=(rq;\rt\x07=[:\x03Ey\x0fkF=<7);20茼M\x1f\x0c=^\x10E<ǖü>\x07a3nf\x82nfXȃ=S\x15\x06뻄=$r\x004\x13\x1b|(nf\x02*&);\x13_<\x0bʻG7\x0f\x05=\x0c!:A\x0b=B;n\x1f;=q<0\x0b9؉;m\x16- \x1a_Tp\u07fcv)W?;c\x19\x16B=%HM\x14=S;<;|A4=\x19<\x1fͼz?;\x17$\x14SћI<^:\n<>̼\x06\x00zm_\x17\x14J\x1e<\x19I9l\x1b%5\n\x03\u07bcR=!Vm<\x05=1\x03<6y:9A\x1e=5A=8\x7fJ\x06NV=h><\x18\x11ּT\x0fch<\x148A\x05=\x19h>p\x1a);\x10쐾Xf<\x1f\x07\'5ռqD\x02Ur9u<_\x0eOKw\x04;_8R\r\x03;\x0e%!m-9Ga=3Tr=\\$u\x00;J\x0bʼ\x0c<*w3\x1bη<Ν˼(ּMMKp;\x0bJ<\t<`R<\x0b<փ\x0eƲ<\x193n=\x0e`4ޏsټ|D=ռxH*7\x1dFɖ;G={;u\x06B̼BƼ!te9(=V\x17=lVM$M\x19SS\x7f=e@Ng<р<"\x7fV"\x1c(<\x1em:DSj9Su&\x02,=xG&=v֨;\x1a\x03<1<Κ<\x00;43>S9=\x11<\x10c\x14=ZH<֝;u;X<=F\r^raYL\x0eU\r;*\tM3=\x14S<\x07\x1ax\x0fb9KrWI\x01;K:\tM\x1a㍼;C0oԼN^*\x01<{\'ü+\n\x06=9`\x0b<_\x02<>\x1b\x08)<7RX;=Vk[<\x1aּhS~\x0f\x03A㼐*r\x08=\x0b*ګa<6t;wc\x06vb=7߁\x0eJbڻ\x06:\x14м\x056<\x03\x0c=\rnv`kֻ\t\x06\x14\x00<ӧ;W\u07bcG\x08]\x01\x17!<\'+k<\x1düxg\x1c\x1fh\x1e;\x12\x1c\x02fC<ռ\\=^\x0e\x10=\x0f`=\x03\u07fcd< \x00=\\<8\x0bz<=C,<2\x1a=ټ:Q\x1e7b4;ƜЇ:ݣ;W<3\r<ڰ-_v<~{=Ƽ\x03ʫS~\x02N\x0e\x104GASEYW\x0f;T[:Jºˉ;vd]=\\;:;#\x19ò=\x1d\x1f;̑\x08.(;\x18F\x1f.$=R\x18\t:x<~\x059\x003<;ڶм\x0c`J=\x13;\x15c#!=d<\x12\x03!\x08\'\x15r\x00=\x13<\x19\x1c<"S.<7RXo,:;F.~f&<1eP=wYnD\x1c=F<%1eк1\x7f\x11\x1dY<\x10-y=m<6m:g\x17Ӻ\x1a:bZ<5E\x11\x1dY<;5=މ\x108\x0e;@:*.O? \x13\rs<\x162p4\x1aa*;@A=kT|<%K^PvC\x06\n<ԋ<&ӻ!Y\x019I%xO>;F)\x1a;\x14\x17\x1fFro\'<ݻ8\r\x07<\x0bB軬F;A;77;),\u05fd@=^v:y\u05fc%K\x1e?$"\x16;\x1eW6~=EE\x1ek0\x03=t\x02*=i}]\x00P=|So%o[\u07ba\tV<\x08-D\x01=%xOfqg"\x12<(=ڿn\t=$F;\x11G=m<6~OS;\x03ǼڱH\x16<\x1aU)\x1eTwv2=\x0b>ʡ\x08Qp=a\x11wG<\x1f\x12=8\x16dء\x18<\x1eW\x11_-;8\x07\x13<Ǔu<\x14<,2ET.\x02w0R\x1a\r-;q\x18=\x15\x1e3<\x1dg\x0b\x16^ͼu7=\x01<\x0c)\x1ca\x1dG2\x1ch<\x00\x04\x7f64\x1bL=\x06=\x015ǓܬZ<\x01}sx\x06#@\r\\f\t\x15=";\x0cv=\x16\x0f1[=J[\x11kH\x1d)<֕Y\x07=\x99&\x08w|ﻦ\x05sEE=QcQ=y)hq<\x12U/=0\x05=:q^\\\x19<{\x1e\t2\x0f<\x18=\x00\x0f"\n\x17\x02._1VQ=&Sql=:ѻwL;=Qđu==!\x1e:H;d p<\x18tײ26;z\x02\x1d}O\x0b\x19ӼK\x0c=X \x00q\x00q;\r\x02ftI\x1d\x0eڻSA86<<7\x02N,\u074b< \x0c<8\x05g;AȃN[Qxջ\x157{qe\x06\x04a=мQOҼ\x14?\x0cTR9μg=]|\x1c\x01=\x08\x01:ʽLP\x1f\x1d\x1a堼1J\x06g=\x00<\x06\x04a;]Ժ,!ü[N;&"=<+&<$\x00"P%9lcA;\x13\x1em\x12=\'\x1fA\x1e\u07fcs$\x1bϼ:k\x14<\x03ZT;;Z<\x0e\x14\x14=S_\x1eVC9,g=\x05=i<>ʼ7<\x1cs\x10=d<Շ5<\x1b\x18@W\x1b\x18;\x0f\x03\x7f\x1f=R\x16<\'\x14\x109c<9%*=\r\x10\x12\x10y\x018%\'-?i\x0b=&"\x10=\x0c\r\x04=\uf67czm=p\x0b\x0f\x13\x1e\x08+i\x0b=hݼ!ԇ*Sq\x128^2=O<}\x1dA.=X<._GR=WE=YT:^S9\x120#=\x06\x04\x14<\x1b4ȋ;hݻ\x15\x12=Ǽ\x06ż)6==-6\r\x02A\x1e\u07fcM*=\x19\x1d<ǼH#\x13=o\x0bWE˰Z;\x1b@`(=\x03\'\x12A<-\x03=,!C/\n\x18\x1e~>;k:!=Q\x08;\x14<\x15\x11=Z_+=\x16\x1c=Vka;<\x14;@+S=,gG<`<\x1e=<\x12\x0b);c<~\x158=g\x13<{;\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:6f8cc428-4111-4314-be83-bb9d14df8c10', 'payload': None, 'score': 288.31469874054784, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "6f8cc428-4111-4314-be83-bb9d14df8c10", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bd6e126f-6eff-46d1-9a1a-562fc15dd345", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6eead560bab86379d65fca68b0a5216119bf7ea177743bb8d47491575eb5e0de", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b8fd597a-5ac2-4730-92f0-9b357050c0b7", "node_type": "1", "metadata": {}, "hash": "af5ba0cf9ceec010d14f14f0c0bae8158e2961782a341f5d8e6d4407ddf9d380", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1304975, "end_char_idx": 1309947, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': '\x7fg\\JF\x0bHb\x1a#(<:xs\x11T\x0e<_+9@\x02\x03 \x15=\x1c#h"м~V4R<\x02\x1d\x12?#=OD,ATy[L\x1db);7=c_ =@#\x19;xsS7<ꁙ<=\'sI\x7f䟼uM=;Ѽ<\x19o;]<\x10-<ד<2\x02<}!Ft:*\x02*L<\x03D2{;&\x18#(=˧=lCe;Td<\x1ch5"=r<8<<ď;\x1a!&=r̺<2{o$6:|\x0fJp\x1bo\t\u07fc"=XWW<}3\x13\x01P<\x0fƈD\x0e;뷼t\x17\x0b[=\x041\x04<23&=\x15O+=ib-mޘ;vnV@\x1fڪ\t\x7fMμ>< ˼@pi=oy[<ďMi=V)G=^;V~\x06=o\x1a<&\x12si\x10.\x0f;G=;Pۺ\x0c=?\x158N ^ƙ@Y^M<]=L=~)z7=2S=wI\x07=\x05\x7f2\x07:>8;dR<.^\u05cc]_2]_2<\x13<\x10\x19;<\x10~*3<\x1cEvf»c<[*`A<\x17=\x06(<]Z;%SJ\x18W=\\i\nϼb\tgD\x18~8]\x07<\x10u8=_A<"^\x024\t7\x0bj=w(\x07$=ZF=Ҩ\'zt2Y<+Sؔ\x0b\x1c%Jq?<$ҟ<<<#yKYF0\x1c;vQ\x12=\x0cU}\x06\x01=\x19x;.cXBJļ@:@\x1aX\x19<;\x04Ŧ;K<\x19돶=:\n\x0e\x18<ҫ<\x19yf$=77 dG(\x03\U00089ed9)X61ghEU1I\x02Iռ\t=\x0b\x19f=\x0f<(\x16vh<0f9\'t< =MMRAc*=!(\x00\nU%:Ё;\x01\x1b\x07G\U000dbed8(=py\t\x0e<\x1e\x1b<ȵMۺ>-=ŵ(Y%<\x08a;a»PQ\x0fHSC\r=;!2Ӵ77<\x10\x14\x07RŬ<\x0cO9e\t=h;&\ueef4\x1aq3\'#O^<1<ď3<)Q\x0c\'>$\x1cƼvV;dhȼ=\x12J19>Nk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{25214 total, docs: [Document {'id': 'test_doc:3ca91880-293a-456f-810f-93eed115709a', 'payload': None, 'score': 4.549360532496801, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3957701', 'document_id': 'a20dafeb-ad88-48f1-8da7-46154b879035', '_node_content': '{"id_": "3ca91880-293a-456f-810f-93eed115709a", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a20dafeb-ad88-48f1-8da7-46154b879035", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "hash": "330b3d986df5173a26fe2655459c8d97d5900fcfd7fb8da8c91e323784222a49", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2076, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/ug_bulletin_2023-24.pdf', 'vector': 'ok>]i^6s\x01bڼ@\\\x85\x1a<\\8ab6\x10k\x15\\=\x0e=7`<=;Ԇ;iXnRJB\x18s\x11!*Ż\x1e\x16:\x17YR\r<53Һ@U17VY=8\x12K<\rk=p˱\'x5\x05iM\x0cg=xp="KeF\x0c\x04<#ƀ\x15\x11D;y\x0e=\uf0ec<\x18 ;p\x1eQE)1\x15u\x1e=@\\9ŋfw;Z:<ͼ\x063\x07=\x00G\x1b;|<"BڼPH{DO\x0bt\x00ot;XP= <5j<\x1d\x1a%v< \x041<5\x05qN\x1e\x0e<\x17rL\x1c\x0bR4\x18;+J\x18ݼ\x1a\x1e;At<"\x1a=\n2;*"=kϼ\\h鋴5c\x1fLE\x01$\x10Lzi;B]\x17\x1c$5W!;91<\rѐ\x1c،Vf1ځ;\x13s)=~s=d\x0f>f\x16\x08!=U;\r<\x17=\x12\x13=c4?=g<\x03=\x08<\'2\x1b\x052u;6I .<=ڪ\x11"ݻW\x00-UX;ӛ\x06<\x1fW\x08=A;%ZH?=r(y;=9\x07=\x1b;S\'j\t<\x13\';}\x0b:oW0g1\ri}8;=\x00<\x18==rL<%M=ؒ\x19<9<\x1f\x16=P/!<\x0f]<879*KӍZ\'e<\x07\x15\x16f\x00=u;<2\x1cZ\x1c=;]y_<#;|ڼ\x18z=;g<<\t\x16v͔<"m="B;\x03z|;`\x04I<\\Ѯ=漬*,!;Y2\x15x\x0fg<=v&;/C]Wq2<\x14G;q\uef39tX80;O< <\x13(\x12`m\x06=$<ȏ<{Z=\x0fc:X<\x1eW3=;C\x06:\x10k;ی<0\x14b$=\\\x1ec"o@湭\x0fc+T+_=ړ=3pQ:\x14\x0c<><^*T\x15x;\x10\x14\t=a<\x8bW59\x7fVv<Ŏ<.\x18\x0e=T=͔x<3;_R=\x1eW3=<";:=\x1f<7\t;H<%v$=@};TN\x1eE=2w;F\x10\x10\x08G\x00;E\x16T=pZ\x0c;/;.y;oyDM<"\x1f\x08=n\x07R3?3<̼\ri\riԼ3ڕ:b3:v-EĻs9o3e\x1b;\x061?y\x10<\x13\x02\x1a!䀼ѻs͒S\t<\x11\x1f<@H\x08̪#\x19<==pp\x0c<\x1a\x1b\\\x18', 'text': '# Prerequisite(s): ECON 101. Anti-requisite: PUBPOL 205\n\n# ECON 202 Intermediate Microeconomics II (4 credits)\n\nCalculus-based generalization of the theory of demand and supply developed in Intermediate Microeconomics I. Individual behavior in environments of risk and uncertainty. Introduction to game theory and strategic interaction. Adverse selection, moral hazard, non-competitive market structures, externalities, public goods.\n\nPrerequisite(s): ECON 201; MATH 101 or 105\n\n# ECON 203 Introduction to Econometrics (4 credits)\n\nIntroduction to the theory and practice of econometrics. Estimation, hypothesis testing and model evaluation in the linear regression model. Observational and experimental methods to identify causal effects including instrumental variable and panel data methods. Lectures are supplemented by labs that use STATA.\n\nPrerequisite(s): ECON 101 or SOSC 101; STATS 101\n\n# ECON 204 Intermediate Macroeconomics (4 credits)\n\nIntermediate level treatment of macroeconomic models, fiscal and monetary policy, inflation, unemployment, economic growth.\n\nPrerequisite(s): ECON 101\n\n# ECON 206/COMPSCI 206 Computational Microeconomics (4 credits)\n\nUse of computational techniques to operationalize basic concepts from economics. Expressive marketplaces: combinatorial auctions and exchanges, winner determination problem. Game theory: normal and extensive-form games, equilibrium notions, computing equilibria. Mechanism design: auction theory, automated mechanism design.\n\nPrerequisite(s): MATH 101 or 105; and STATS 101 or MATH 205 or 206; and COMPSCI 101 or COMPSCI 201 or STATS 102\n\n319', 'ref_doc_id': 'c4445319-e5fd-4469-a4be-c55568f91896', 'doc_id': 'c4445319-e5fd-4469-a4be-c55568f91896', 'file_name': 'ug_bulletin_2023-24.pdf', 'last_modified_date': '2023-10-24', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5e676ad4-c30d-41de-a215-02f000ca4183', 'payload': None, 'score': 3.7368841424516113, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3930468', 'document_id': '609400a2-2e30-408b-9d3d-7be31783a56c', '_node_content': '{"id_": "5e676ad4-c30d-41de-a215-02f000ca4183", "embedding": null, "metadata": {"file_path": "/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf", "file_name": "ug_bulletin_ 2024-2025.pdf", "file_type": "application/pdf", "file_size": 3930468, "creation_date": "2024-09-02", "last_modified_date": "2024-09-02"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "609400a2-2e30-408b-9d3d-7be31783a56c", "node_type": "4", "metadata": {"file_path": "/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf", "file_name": "ug_bulletin_ 2024-2025.pdf", "file_type": "application/pdf", "file_size": 3930468, "creation_date": "2024-09-02", "last_modified_date": "2024-09-02"}, "hash": "ef530633b56c0794222125df47408ad9e4fd59dacd94b64d836df1ae72cf7282", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2367, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf', 'vector': '|䢼\x17F(z<Ν\x13$\x14SћI<^:\n<>̼\x06\x00zm_\x17\x14J\x1e<\x19I9l\x1b%5\n\x03\u07bcR=!Vm<\x05=1\x03<6y:9A\x1e=5A=8\x7fJ\x06NV=h><\x18\x11ּT\x0fch<\x148A\x05=\x19h>p\x1a);\x10쐾Xf<\x1f\x07\'5ռqD\x02Ur9u<_\x0eOKw\x04;_8R\r\x03;\x0e%!m-9Ga=3Tr=\\$u\x00;J\x0bʼ\x0c<*w3\x1bη<Ν˼(ּMMKp;\x0bJ<\t<`R<\x0b<փ\x0eƲ<\x193n=\x0e`4ޏsټ|D=ռxH*7\x1dFɖ;G={;u\x06B̼BƼ!te9(<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3Nk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d363a1cb-9c5e-4fb1-9d69-efdfe6556773', 'payload': None, 'score': 719.2383613881026, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '508476', 'document_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', '_node_content': '{"id_": "d363a1cb-9c5e-4fb1-9d69-efdfe6556773", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5eed989b-3617-4479-8daf-3dc7f14d35ee", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "hash": "1531961555db840cdc91ded673cff60dc58a823e4db217e00c42ad46672df04f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4fe06d28-ef28-45a2-9613-f1128c83acba", "node_type": "1", "metadata": {}, "hash": "810202455f44738a4605524507fef8bf9fccc039bed143acfb4bcd157886b452", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 4710, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', 'vector': '@BGp\'drp\x04}̼hԻ5\'\'$q=w;WX:B\x7f\x1a;i\x14=0\x1a2fo\x1dY\x04ņڻwts}ݹ6=S\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 337.1156939543695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=FKYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 74.56712697123471, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`w\x11<<\x18(=\x08`L6ۼP^ּ7\x10Gp\x1d\x1bm<<֢<.G\x10d\x18=ɼ^⇼oѼMȺz۩;ź]D:]=\x00\x18;B;#\x10=N\'\x1a8\x19`_NV@=igoo;\x08<\x1e2<\x07\x13<5%:;.\x0bpD<\x0e_:\x12e5@6Y:\x04J=\x17gB\x01s\x19=bݍ\x1a,\x11J(;\n;WG<\x1f!\x0cr<=\x17\x11\x16\x0c%\x07\x14>w;5%\x1e5;ka\x19E\'m\x15.G;/26P{"=.\x0bp=M(Я\u05fc9=8\x12=><ͮe\x02=.h;\'uD(?=u<*\t?\x02=a|(o;QK\\<\x13`3ļ:l+?\n:\x16\x14<3:ɖ\t켏H=r\x19`=y;j\x0fD\x04,1\x19J\x1c\x11<;պ\'\x08<}u<%\x0c%L+Jpx?={H<\x02W<5:\x15ּx\x0cW\x13=摽V\nʺ=~ %T&=k\x1a\x1d;\x1a;:ē^=?P93\x15<@\x07mf`W:CU:E\x1c==7=\t<]wC7\x1fV<;I\x11\x0f%{e<\x03+\x16\x0c%b\x15|\x1c\x1bQ&:\x14=\\=\x7f<\t\x1c\x1d\x0f\x1cI;3\x16=ڭJ=ƕՔ=\x1e;*<-Z\x07;v\x1c\x0f"A\n9;r;]-<\x14\x013<+\x0f<5\x13\x7f=\x01l]\x07<"=8%8\x08=v}=8%=v}\x0f=\n<\x1b\x03ɻ{;+)\ta㼡\x1ds35.ν\x16\x11:M7<\x7fE<\x1eZ<\x0ccۼ1<*\x15\x159w>\x13/\x7fTݺ8=}\x7f\t*va\r\x1f=V;@@˼^<\x1a<=\x07=3;\r<:9[ύ[3./9C:<:\x1a4:5=,"+<_M\x06:aUI<*l=\x0f%=h \x12<|C[T%]\'=9\x04;-\x1dk\x1aOYϼJT\x15<4bXX=\u0600\x05=k\x07=_<3_\x07\x15<\x06F\x1a', 'text': 'PUBPOL 631K Research Methods\n\nThis course introduces students to basic research methodology for environmental sciences, including both health sciences and social sciences. Topics covered include quantitative and qualitative methods, experimental and quasi-experimental research designs, sampling and sample size determination, survey design and implementation, and the process of publishing academic research. Students will review published research of other scholars and critically evaluate the strengths and weaknesses of the methods they employ in addressing their specific research questions.\n\n\n\n\n\n\n\n\n\nPUBPOL 632K Research Method II\n\nThis course is a graduate-level course on research methods for students in the iMEP Program. In this class, students will study research methods from many disciplines to understand the interdisciplinary nature of environmental policy research. The course focused on research methods used in anthropology, social science, public health, and economics. Students will read a variety of real research papers before class. During class, students will present and formulate discussions on the research question, research method, data source, findings, inference, and policy implications.\n\n\n\n\n\n\n\n\n\nENVIRON 736K Planetary Health and Environmental Epidemiology\n\nStudy the human health impacts of accelerating environmental change through interdisciplinary approaches including environmental science, political science, public health and social science; engage in diverse materials from many types of examples of planetary health research, from nutrition and mental health, to infectious and non-communicable diseases.\n\n\n\n\n\n\n\n\n\nENVIRON 759K Environmental GIS\n\nGeographic Information Systems (GIS) is a computer-based tool that uses spatial data to analyze and solve problems. This course introduces students to the core concepts and latest application of geographic information system in the environment area. It will give an in-depth overview of the key data types (raster and vector files) in this area, data collection and entry, data management, data analysis and output using ArcGIS. This course will also introduce application of GIS in real world problem solving, such as species habitat mapping and conservation planning. Students will be exposed to Google Earth, QGIS and other open source GIS tools.\n\n\n\n\n\n\n\n\n\nENVIRON 806K Environmental Economics II\n\nThis course provides for continued development and practice of skills learned in Statistics and Program Evaluation and Environmental Economics. Students develop conceptual and professional skills related to environmental policy evaluation. The goal is to stimulate critical thinking about today’s environmental problems and the public policies designed to improve them by implementing the theories and principles acquired in class.\n\n\n\n\n\n\n\n\n\n\n### Electives (Online)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nENVIRON 581K Global Environmental Health Problems: Principles and Case Studies\n\nMany environmental problems occur both locally & globally. Having insights and experience from different parts of the world is important for students to gain problem-oriented training. This course will cover fundamental principles on physical & chemical processes related to major environmental problems. These principles will then be integrated to discussions of case studies addressing a specific set of problems. The case studies will involve the participation of invited guest instructors who are experts on specific topics/cases. Depending on preference of guest instructors, they can introduce a case study via online lecturing/chatting or providing a pre-made video.\n\n\n\n\n\n\n\n\n\nENVIRON 640K/PUBPOL585K Climate Change Economics and Policy\n\nThis course explores the economic characteristics of the climate change problem, assesses national and international policy design and implementation issues, and surveys the economic tools necessary to evaluate climate change policies. The course is discussion-oriented requiring high degree of student participation. Course objectives are increased comprehension of economic aspects of climate change and ability to apply tools of economic analysis to climate policy and the responses of firms and households to it. Course designed for graduate and advanced undergraduate students.\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n### Language and Writing Center Courses\n\n\n\n\n\n\n\n\nBefore the start of their first semester, all iMEP students whose native language is anything other than English are required to take a language assessment at DKU. Based on the performance on this exam, students may be required to take English language courses offered by the DKU Language and Culture Center during their first year of study in the iMEP Program. Students will be notified of placement assessment results before the beginning of classes. The oral and/or written English graduate level credit-bearing course(s) are offered in both Fall and Spring semesters. These courses are only offered on a non-graded (Satisfactory/ Unsatisfactory) basis.\n\nIf a student is required to take English language courses, these courses become additional degree requirements beyond what is required for the iMEP Program, and students are required to show satisfactory progress toward completion in their first year of study. These English courses cannot be counted as electives for the iMEP Program.', 'ref_doc_id': '24a09282-a6c7-4a95-b986-2a4a1e0f7a9b', 'doc_id': '24a09282-a6c7-4a95-b986-2a4a1e0f7a9b', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/env.dukekunshan.edu.cn/academics/academic-program/courses/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7500956a-6ec8-4d26-a71d-10fe80fcae58', 'payload': None, 'score': 5.2446321789051655, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '128267', 'document_id': '94dea7b0-9bec-42b1-ad3f-9987e184cec7', '_node_content': '{"id_": "7500956a-6ec8-4d26-a71d-10fe80fcae58", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/majors/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 128267, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/majors/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "94dea7b0-9bec-42b1-ad3f-9987e184cec7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/majors/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 128267, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/majors/index.html"}, "hash": "ad3d55b811acb226a2a3f29c0d2719a60d2fa4012b21d355a2210b77d55d089a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d7680e30-cde2-489f-bb01-3bb59d379ad9", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/majors/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 128267, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/majors/index.html"}, "hash": "4d77c228808831c36658a6798fb12349b8036f9d4e8276d41193ca1f2aa95c48", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "da9a09be-3a07-4568-83b7-3aeb18097912", "node_type": "1", "metadata": {}, "hash": "87953b4e7b5533339658f84d059c89ae4a81da9d7636537e4bbf31455db185d7", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5546, "end_char_idx": 11834, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/majors/index.html', 'vector': ',hRY\x1eS\x05tj\n\x0fȳ\x196\x13:5e8֛\x04B93\x1f)=\x08;`\x1f;g\x13<6J=XU0\x0f=4y;\x00=~%; w]=ǐ<\x03\x0e<\x02<|Y:\x18y\x08U<\t<%\x18\x03𥼚\u05f9Y=iY+=:29YG\x1cF=\x16\x18=`\x1f7\r\x00V<`H:7=06i\r.0+%]=,\x1f=z<8<\x11\x1e;.{=Nk<\x18<\td=\x07<6Q:\x0e\x03uBe}\x13#*!;s6\'=X\x19&=_J\x03<.qӻN<[wS!<\x11\x0e:Q%A<\x14-_*崼(%mb<[\x060+Y;\x1e<\x16\x18=ټ\x0f3<\x10#O\r\x1c\x16p[\x02<ټ\x01\r\x19;swo+ټ\x07#q\x02ļ<7f<\x15<ώ~?B4=qq<\x16a\x1b\x0cNA<_f=\x15\x19\x115<<[<\x16V\x08\x1fݡ\x15\x00=p_vH=\x18\x03A\x1f=W;YM\x08G<\x01!<\x1ci\x1c<<\r\x19\x13|;\x1f;>\x03qybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 22.017761321393312, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 16.909464721736892, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -2024-11-22T07:52:41.468251Z [error ] AssertionError: The number of tool calls in your plan must be no more than 2. [dspy.primitives.assertions] filename=assertions.py lineno=88 -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{17046 total, docs: [Document {'id': 'test_doc:f4d3955b-68c4-4b28-8171-53616f1ffa9c', 'payload': None, 'score': 5.827828127843726, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '41908', 'document_id': '6f6da7b2-438f-4fc7-b74f-85ebc274ea8e', '_node_content': '{"id_": "f4d3955b-68c4-4b28-8171-53616f1ffa9c", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011135595/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 41908, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011135595/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6f6da7b2-438f-4fc7-b74f-85ebc274ea8e", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011135595/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 41908, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011135595/index.html"}, "hash": "2fa6c00f4bb47258b13a380a4e49a902cbf9daddefd7143f47e1474235a2b675", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba58a52b-5674-49ed-bec8-d842d4900629", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011135595/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 41908, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011135595/index.html"}, "hash": "fd82fd714161a240a6a90ddf606a94225ae41a507d822f475e90ffa7f9440ef5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2abdd82b-79be-4b13-8d79-6c3bac8b34f6", "node_type": "1", "metadata": {}, "hash": "41cd8776e5d4b1ec8d89284f5a7335185d7071583ef97525a005ccf249923236", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7105, "end_char_idx": 10469, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011135595/index.html', 'vector': '\x15\x165{\x10ּUaw\x0b\x07\x7fJ(;Y\x15=)\x12\x10<\x17\x1e\x13];\x15\rO$=w\x08\nMl\x17<\\gz;)=<+\nɰĻkEY\x04\x19<+\n!\x0f;\x1d\x02<[\x08;\x0c0\x7fD\x7f<ڄZXY<<\x08p<\x0f\x15\x0eRM<\x1e]\x1c"Br;<\x12=\x0fʀ>3I<ڿ;,=R=~<\x03$;D;\x00<\x100+==\x0faG\x17伆u¼\tBҍ\x14=r8=$ў<\x0b:<\x18\x01Ñ=G\\\x025M<\x02!19;LrP\'ɼ\x124^;\x00;<|\x16迼߾;XD\x07\x0b:\x1e\x1dW\x11켺I\x1d.8^G1X\x01\x13N;$鼦f\x13\tͻ\x14)=\x98,R\n=$/;:+3:raB\x04=ԝ\x12iO&4\rQ= A^킺V<\x1d=\x1eԼ\u05ec\x11;{)f=cӺ7i;H<ټ.\\p<+6=^\x02=2/R&Z\x0e=<^\x02I<\x18G;\x18мo2PL:T\x10z?\x18=B\x1b<墓r=\'g\x1a=\x1dD=H\x19<[C\x10=;\x1c;\x0c^\x155l\x04=\x0b=W\x17:\x1d=9\x07\x080T>^=M<ˣ[S#\x1b =\x0f;*~=˟<\x1f\x05KټVz\t\x02=&t<ֵ\x1d=\x17N\x1e_b"z<\x05Y0<^,b\x1e=Р\\<\x10\x00E@Q^\x17nD\x0eE=\x1f٦㻘՝til#Qjy\u07bc\x06\x04=6E\x0e=MZ;u\x16\x1f\t%&ti<%\x0fz;Р<`\x02켊ߛ<\x13\x1a_]\x1dQ?\x05y<;N;\'\x12:s!<\x19WVw<<)n<\x0b͏\';3<;\\~\x18?<3\x0f<\x0b\t$k\t=@\x16\x1f=;¼F/\x0bp\x11:}z~\x11:QFT;c\x0f\x0b`;ψ=5-G<%=tf\x0fq99\x1a=\x00\x18=.=o2;mh,b\x1e\x1dļDZu=<\x1eO\x02\x1c%\x1dw\x13=Tc+jJ<(;\x1cE<\x06<\x0baBaK}j;p;x\x07UriTc+=}j<\x1b<|:ot<\x1cE:\x02<ʛ\x06̸\x10=\x07<\\<\n=Z\t\x0c\x1br7<:\x02=}\x1f=\x0fq<\x06(ý\x0b<Ԅ\x0cr=>c\x00;=Ȼ\x14}Ȼ.8\x00\x18\x03\x0c2>Z=S\x16#\x19\x16}<=E~\x0f댹.9j\x18=Ӹ\x1d<\x0eB=Y< #Ӹ<\x04#\x00UFƎ\u177c:d%;\x1a42\x0b==H=\r\x0by;4\x0e21&;\x0fּ.8\x00;\x11=q<,P3;戼\x1a=<\\<\x12l\\\x00$<\x04C\x11=:\x1bS i<#l=<}QL<]\x08\u07bb}<#\x00>銼|\x15=PC\x15\n3=/u=%0ռhu\x1a\\;#=8r7=\x0fq;A=\x17g\x17A:q\x00L\x13=W=H\x05n\x1f;:O<]\x08^;|\x15ؼ.8<>\x16\x07\x13fh3\x06\n9;f\x13\x15I<2<,;\x02<5y<\x05\x01<٤h=\x1f="0bJX\x012F\x03cO=sp<(\x1d7;\x02:.9@_0\x1eܐ<\x0f\x1a*=\x0fc\x01\x02z\x1e\x106w:\x1f>ؼn9', 'text': 'ISBN:\n\n 9781501384516 \n\n\n OCLC Number:\n\n 1346848149\n\n\n\n Other Identifiers:\n\n British national bibliography: GBC392749\n\n\n\n System ID:\n\n 011128061\n\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781501384516%2FLC.JPG&oclc=1346848149)](#)\n[Request](https://requests.library.duke.edu/item/011128061)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011128061/email)\n [Text](/catalog/DUKE011128061/sms)\n [Cite](/catalog/DUKE011128061/citation)\n [RIS File](/catalog/DUKE011128061.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011128061.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=The%20life%2C%20death%2C%20and%20afterlife%20of%20the%20record%20store%20%3A%20a%20global%20history&AUTHOR=Arnold%2C%20Gina&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011128061/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:890c6570-6673-47e2-9be0-a600326ba173', 'payload': None, 'score': 5.111859860107163, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '38469', 'document_id': 'ba7bdaee-f963-4ba1-81ee-2a4f57b775b6', '_node_content': '{"id_": "890c6570-6673-47e2-9be0-a600326ba173", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ba7bdaee-f963-4ba1-81ee-2a4f57b775b6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "1f9b49d4285484e8934880d49cc42d7a6600621aa3afa4211b77d365d847f36e", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ed1aaa9b-70e3-4333-a5ed-96f1e4fd0f61", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "ef51b4ceb583db01efb1e601a177c1635b3e9bd0f230bb5a6e3fae3dfc313a65", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fcbb370c-5342-41a3-8a91-1fd3adc0c84d", "node_type": "1", "metadata": {}, "hash": "f915634a970194ba2ed43ce6224005c536e896c2bb6c40c8797015bb4f43eede", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7061, "end_char_idx": 10572, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html', 'vector': '\x03\x18_;]E\x0b\x7fh<\x02s+\\So<\x02\x1d\x19ռ\\\x0b\x1d<\x19ԇ=XQf\x0c&;9P<`\x11=;Լۙ\x03<+<[4ۼM\x0b\r9\x1cV\x0cɺ\x04#C;\x18\'z#;q\x03M\x0b\x1b<<>л"\r=]κڽ!;fk\x1c.UN#^A\x06<,=h<孃\x12\n<=:r=\\\x1e<`\x11=:@萶T<%\rcJ~\x19\t=n=0:\x04>P5\x005/<;;\x16]/H\x02;\x0cI=ľ_O\x16=.2<\x05\u07bc;\u07fc?üi\x07p=:\x0e\x08<"+;\rEwH=l\x174\x1fvO,ë=7\x1aȼ\x02Oa^ӻ\\r\u05fc5=m6\x0c=~\x17Pټ覼&ʼPv\x04=!\x03=|kD.=R@<\x02)<\x02s+=Qi<ڹ\x1bQ<~ȵ\x0b\x077\rTw8\'=\x1fWQ=p\x102A=>;tF;_\x14\x03\x1a.Ӧ\x03ݼ\x12\'ּ$(=\x05;까==\x03=<@g;dD=t⨼*<Ϡ\x1bj\\?\x17%;\\?&W\x14850ϼ7h=\x19+"t:\x12áG<@5݆X=@\x109b;;\x18=9OּM9#f%6D=^5H^<4=Jk\x1am鴼\x7f\x1eC"-\x16\x00Qq\x16=\x025¼W<"\x0f[~=ܠl\x17̏\x17;:Ո;N\r\x0b-z<\x05It⨼捸G\x1e=/=\x0c\x0b\x7fX\x11\x11\x056=(R>= 4ozތs!\x0f\x1ev<\x142R<;>\\?#<6\x14\x1d4oj=\x00<\x1d滒9^\x0c+<<:\x07"=:$q\x02\x065\x1a\x04\x1dJavĤ\x13s\\6ăq\x02<\\O@V\'Q=;\x10%=p\x06;\x1d\x07ܠ;@T=\x1a<ŏ{<\x11fz=r\u05ec̰/<\x1e^B<<8\x0f=f\x1a\x16|r<{Ƽ\x1a\t&\x0c\n)=F\x06;gcp4<\x07e%M\x1c=\x10.\x0e\x1f93\x17=Ĥ=8`[\te\x17=Y\x1fշ\x0feV \x00\x02=+*9tFݼӟ\t\th(C̺8w\x0c[\n"Ϯ!u\x1e', 'text': 'System ID:\n\n 011279812\n\n\n\n\n\nFind related items\n------------------\n\n\n\n\n Series:\n\n [Contemporary studies in idealism.](https://find.library.duke.edu/?q=%22Contemporary+studies+in+idealism.%22&search_field=work_entry)\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781666947427%2FLC.JPG&oclc=1406744966)](#)\n[Request](https://requests.library.duke.edu/item/011279812)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011279812/email)\n [Text](/catalog/DUKE011279812/sms)\n [Cite](/catalog/DUKE011279812/citation)\n [RIS File](/catalog/DUKE011279812.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011279812.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=Kant%20in%20context%20%3A%20the%20historical%20primacy%20of%20the%20transcendental%20dialectic&AUTHOR=Kelly%2C%20Daniel%20Patrick&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n* [Find related items](#related-works)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011279812/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{37880 total, docs: [Document {'id': 'test_doc:e430c2cc-35e4-432a-834d-6acf386ce48b', 'payload': None, 'score': 21.673841835684474, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3930468', 'document_id': '2c35d4fc-96bb-4e95-8795-d3b2656017a6', '_node_content': '{"id_": "e430c2cc-35e4-432a-834d-6acf386ce48b", "embedding": null, "metadata": {"file_path": "/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf", "file_name": "ug_bulletin_ 2024-2025.pdf", "file_type": "application/pdf", "file_size": 3930468, "creation_date": "2024-09-02", "last_modified_date": "2024-09-02"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2c35d4fc-96bb-4e95-8795-d3b2656017a6", "node_type": "4", "metadata": {"file_path": "/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf", "file_name": "ug_bulletin_ 2024-2025.pdf", "file_type": "application/pdf", "file_size": 3930468, "creation_date": "2024-09-02", "last_modified_date": "2024-09-02"}, "hash": "2e28b0e6faba5cc03fa2c0c6993019389763bf44328464358c4d33bfc275def6", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2003, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf', 'vector': '\x1c\'hoOȰI\x11\\;""a;*$|<\x1e;nn\x0ep;\x0e=\r3C<)H\x14q\x16=|KA;\n\x17b=+9\x12";x<+\x06=ӼzgAsaTL\r3$3<Ʀ<-\x19[G=#v9=)=\x039\x01_\x1dDF2,=Vw;;\x14}j$ <\x1fjuD=X;=p3M=0\x13<[Ǽ(8=z -:\x06CS=\x05eJ(s\x1d.\x07Fga\x1dc8J<Gr\x082ϻY;@@+B<\x037*`+<\x19ؼ,KȓX=ͻ\x14:<%<\x19\x1f|&yI\x1eC\x08kVr<"\x1b\x1dl\x1c;Ϻ:;\x00\x0b\x12!\x01=\x1a?87%=mC\x02!*̚<,<./CA_HT`;u:<\x0e%=5=lyB#\x11^2\x01f\x07jHE夼;\x03;w&\x1c<=v\x10;w<]\x1c\x0b:<;xɼI|ZL!a\x18=!F"EK?g./7])<_\t\x08{J\x15/ha@<E<O};\x04E;@=\x02=s\x1e\x1d<_=,:2\x1b+1<̴λ7=e\x13\x15;b\x13Q.4:<Ȼ(;J=\x1bޕP\x12\x176<\x1dk=S=tI\x01a\'\x15=!F=Cp.=\x04\x03ӼҰ<\x1a\ueffb#\x15\x1aGc.nq\r|&=^\x19="\x0f<\\;.>O7<Ƹ;;4\x0e[6;\x17=;;< :\x7f(<\x1b\x100\nH/w9h<\x02;\x07;Ueջ9h@=I=<<<\x0e<ŕw<ۗ\x11\t=\r5G&Pܐ$D=\x12:=z\x7f\x11\x10;\n\r`\x08 \x7fr<"IzZ\x11:S\nV9F:ြ9\x08=p\x16<\u07baݖ<"9\x12`FLۻ\x053PmK<\x053\x10_69\r\x06<_6=3<*\n=у\x12\x0f;Ջ<^T;N\x1aT\x1e.ba\x11F{ݠ2c <\x7f<{A<\x00\x16v\x02(yQ"\x04=\x02\'\x02d2)\x1b=s\x04dr=3ŘQW=\\V*:8ѻŨ:.v<)i<\x0c=D,!Y=cN<\x170=3\x7f0*S-醽z\x01=ı<\x0f.X\x1e;\x13vFV\x7f\r1e=Zt;<|\n<\x10={<9;ZG!;=\x15<~_\x1es=-K;zS\x14\x1d\x16\x02:$O;W\x17=V;\x1a\x17\x00==NRz".\t\x16Gԅ<\x06nd;\tp\x05=6G@"jA0V:[>\x1b\x05,\x0e\x10R0\x1aYn;ؗ\x0cC=ck듽YT*Һ>\'%ί\x0e\x02M=;<8\x00=Ӽl~i<{<;:{8T:8¼Gο<|X\x05b=\x0e\x04;;;<<\x14=~l:\x1eż⠼c\x1ez~<&=\u038d\x06\x050rC=DI[;1:\x12<2\x07=(5=\x01y1=\x06\uef3dj\x16\x08\x1csC\x11-\x11z\x19\x0f\x17am<]&ܼ\x18R39=\x05,\x0f3&ch\x06r+m\x08\x1f\x008=!7\x1d蕑=L;bt3"t~x;l方́<\x14\x07+=H\x0e:a\x04n<-럼<\x18PD=pG<\x12Ay=YZ+pG:\x048xܺ\x16<&o\x00=B@qE=\x1f:#\x003\x04\n=s!\t;\x0e\r#\x03"=Cz<ͦe\\\x1ab\x18SA\x18X\x138?\x1b=T:=\\Ɖ;dVxP;uμ:X[\'\x00:\x03$W\x1d<\x13\x14ۼ2\x16\x0e\x0f\x14<&1=\x01;b=\x1f\x0e9U\x05[=K6\x11\x12=;\x0c\x08;;Ar<\x05) ;H\x12м<;k;1\x0e<:%і=<ؗ\x0cR<9\x17\x05HE";ch;)\x1cw\x12%=az*һ\t=f\x01~|2dF \x10=G-u<9JX6<\x19WLD\x05 \x0b\rz:!#=g<ֳ<4N\x03Z\x0b=5\x0e?R\x00;\r8=k]\u07fc*m<\x0eF=#6<\x16"eK,+\ng^=k;:\x01Z<#\x1cDn;\x1a\x06|Uu<\x1c\x14n\x01\x02ب<\x06h\x03=q*<&{;\x13g7鹼r=1gg\x15=<\x14e]=\x19\x0f<2;`\x17=z\x18\x08<\x13\x14=L4*\tf=3;\'\x7f\x1ai;\x0858;\x01%/:r/<`<\x0f\'G^;i\x17<\x15= @<\x0b"\x009y<\'6\r=4\x03\x1f=ӻl38ټƳ:Ja=k\x0f=E\x018\x03m9$ƴB=\x16< \x1a/;/j\x07<4\x02\'<\x02G\x0b\n{рR\x16;\x1a篼r\x17ݒ;jn\x1b=@$\x16r\x1a=8=\x08\tG\x06*\x04e8=mwH<\x1bR(=\x06\r\x00V\x14\x08\x02 q<\x17;uN\t?j:<7;nn\x0ep;\x0e=\r3C<)H\x14q\x16=|KA;\n\x17b=+9\x12";x<+\x06=ӼzgAsaTL\r3$3<Ʀ<-\x19[G=#v9=)=\x039\x01_\x1dDF2,=Vw;;\x14}j$ <\x1fjuD=X;=p3M=0\x13<[Ǽ(8=z -:\x06CS=\x05eJ(s\x1d.\x07Fga\x1dc8J<Gr\x082ϻY;@@+B<\x037*`+<\x19ؼ,KȓX=ͻ\x14:<%<\x19\x1f|&yI\x1eC\x08kVr<"\x1b\x1dl\x1c;Ϻ:;\x00\x0b\x12!\x01=\x1a?87%=mC\x02!*̚<,<./CA_HT`;u:<\x0e%=5=lyB#\x11^2\x01f\x07jHE夼;\x03;w&\x1c<=v\x10;w<]\x1c\x0b:<;xɼI|ZL!a\x18=!F"EK?g./7])<_\t\x08{J\x15/ha@<E<O};\x04E;@=\x02=s\x1e\x1d<_=,:2\x1b+1<̴λ7=e\x13\x15;b\x13Q.4:<Ȼ(;J=\x1bޕP\x12\x176<\x1dk=S=tI\x01a\'\x15=!F=Cp.=\x04\x03ӼҰ<\x1a\ueffb#\x15\x1aGc.nq\r|&=^\x19="\x0f<\\;.>O7<Ƹ;;4\x0e[6;\x17=;;< :\x7f(<\x1b\x100\nH/w9h<\x02;\x07;Ueջ9h@=I=<<<\x0e<ŕw<ۗ\x11\t=\r5G&Pܐ$D=\x12:=z\x7f\x11\x10;\n\r`\x08 \x7fr<"Iz\x1aֻ!dj\\a*\x15+<\U0004747cq\x19=\x02<\x12E\x02\x15+=!\x02%AL\x15=\x1dr=s]8"<\x0f:\x18#]OfǤo<$<=d\x00H";\x082;3|<\x13ck[`}\x199l!<\t\x10y-\tH=\x12E9\x15@P\x0eM<\x19D<\x15@1\x7fyk<=d=4!;d\x0e}~\x1f{ý$\x12<j/!\x07=d=\x02<[)ү+=n8<[n&a\x07\x10\x12zP<@\x16Fq*=8<\x1c#ߌb\x03V}<\x04\x0b\x192\x1bA= qF16ﮢ;4/R<\x10<\\;VΧ;\x086=xx;Z =\x15+=6Hj<ϋH<\x05\x15:BXB,$.EƼ(_=\x19Z\x0b;ùc=\x0eVITRм{Ȃ\x06/\r\x0b=Y;R\n\x0c<[y<\'J\x19ZK=r=ۓ.yG <\'Ge<\x8d,\x0c)Kx;u#=;aQ9;\x1a\x0f\n="ڼsJ\'19N{\x038bd\x13\x02\x0b9F-Y=a\x1e<ߢ=\x1c<:z%<[2:g\x06ʮ\r<آ\t\x16<{zS㼠\x05i\x0b*\n=[G="\x1ew\x18=\x12ps+ĻZy \nSP\t)\x022=;RM(\x11<\t\x15t<\x1b_=;vY<1BFi\x1b=\x1f<\r5<6mW\x1bE=*=8<آ\x13\x01\'ޠ:;JD&=jX{Wܶ<<ƨ\x07Rϼ\x11!=\x01\x13\x1f;\x02=9n+&\n<<0{\x11мkh.=!L\x10<\x19\x0e nFQ=\x1dީ=\u0557;H\x1e\x7f\x04ּ\x0f==<\x113Swo{<,=%\t=sa\x19TH\x0e~<.B<\x7f=~z;FtkK:\x05,`\x0e꽼;\u0ad5u\x08w];ȼ\x0co:q<;m>\x1e+N}\x18<:2"=\x01!ϼ\x16<\r=\\ʊ<Ȑ\x0f\x10\x1f<\x7f.\x0bR<\x19-4z\n=\x06o\x15;B;=.\r<ڊ\x1bB;>k\x14̎ڼ\x05r{\x11<<آ\x13&竻OegF9%;<\x7f\'L\x1e0BFNI;<\x0c\x08<2;\x01QvY6üw<\x1a_˼NZS&<\x00?\x11y?\rwS<\x15a;WK\x022={W<=h\x08==Ҥ\x0f=\x1d\x19=\x12k$=t={):6*NY,7\u07fb\x7fm\x1bk=x\x17:BA=p<L\x19!ki=.ͷ:<<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nLibrary Spaces\n--------------\n\n \n\n\n\n\n\n\n\n\n\n General Rules \n\n\n\n\n\n Study Rooms & Team Rooms \n\n\n\n\n\n Functional Rooms \n\n\n\n\n\n Wind Finance Lab \n\n\n\n\n\n Multi-Media Booths \n\n\n\n\n\n\n Please follow the general guidelines below to use the Library spaces/rooms:\n\n1. **Open space seats and study rooms are on a first-come, first-served basis**. Please take your personal belongings with you when you need to leave for more than 30 minutes.\n2. Do not use personal belongings to occupy seats. The left items will be cleaned up by library staff and we will not be responsible for any loss.\n3. When using **functional rooms** or places with equipment, please send an email to [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn) to make a reservation, then go to the 1st floor service desk to exchange your ID card for a temporary key card after the reservation is approved. Each reservation is limited to 3 hours with additional 3 hours renewable. Course reservations will be given priority.\n4. Please **keep quiet** in open space, use team/seminar rooms for group discussions.\n5. **Telephone booths** on the 3rd and 4th floors are available for phone calls.\n6. If you need to move around furniture in a particular space, please return it to its original position when you leave.\n7. Please keep the environment clean and don’t litter.\n8. **No eating** **on the 3rd floor and 4th floors.**\n9. You can [check for space availability here](https://dukekunshan.emscloudservice.com/Web/BrowseForSpace.aspx#), but please note you cannot reserve rooms on this site.\n10. Contact to reserve classrooms.\n11. Follow any additional guidelines for other special spaces listed on this page.\n\n\xa0\xa0\xa0\xa0 \n\n\n\n\n\nStudy rooms are on a first-come, first-served basis, and we don’t make reservations. Reservation is required for events and classes in the team rooms.\n\n \n\n\n\n\n\n| **Study Rooms** | | |\n| --- | --- | --- |\n| **Floor** | **Room Number** | **How many people can fit in?** |\n| **2F** | 2103 | 2-3P |\n| 2109 | 2-3P |\n| 2111 | 2-3P |\n| 2117 | 2-3P |\n| 2119 | 2-3P |\n| **3F** | 3101 | 2-3P |\n| 3102 | 2-3P |\n| 3105 | 4-6P |\n| 3106 | 2-3P |\n| 3107 | 2-3P |\n| 3002 | 2-3P |\n| 3003 | 2-3P |\n| 3004 | 2-3P |\n| 3007 | 2-3P |\n| 3111 | 4-6P |\n| 3112 | 4-6P |\n| **4F** | 4101 | 2-3P |\n| 4112 | 4-6P |\n| 4113 | 2-3P |', 'ref_doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d6d27406-84ee-4f2e-8fe9-40d837477efc', 'payload': None, 'score': 8.034300961561675, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '156358', 'document_id': 'b921af15-be3d-4648-a832-9eff128b796a', '_node_content': '{"id_": "d6d27406-84ee-4f2e-8fe9-40d837477efc", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b921af15-be3d-4648-a832-9eff128b796a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "944bdda3371daca1284fd390ca0a29a9d73fc0764ea88d2c55fcc8bb495cf062", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f14b732-8c96-4cc7-aab4-34c23342640b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "b811c1fef340a9b0e4ac9860aaf0bcb4eafbaec57628f2ce4f38eb3f1faa6f9a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36aec92c-b4af-4794-9536-0cf40ffc99bb", "node_type": "1", "metadata": {}, "hash": "9f61e90e3cf6222cad0453557dba29fa4656b2d87ad996c0b95a8bf1221add9a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 38850, "end_char_idx": 43900, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', 'vector': 'ꁽ\x18;ًL;;\n\x0bBXb\x07<\x10.\x1e=FB<1;Ҽ?\x17=\u197bwI|Q;\x12;{eRWŜLüY\x05=،<\x062ҴbEnYg\x17l$\x17\x13=ND1=\r!5"G<\x15\x0eD(!\nh\x1ab\x1d=\x0eV<\x07=h`\u07bc&=\n\x1bd=3u<\x1d;k[:\x04PО퐟\x1an(|<_:=7v<\x15aR\x00Ǒ\x0b<<<X=ԼbL=Bx<\x00f=jZr=\x0258r=<;fK?7)Q\x02\x7f<ܔo,:,\x19C;<;\x03\u05fc@To3\ru\x03=Vt\x02):s\x16=6\x06\x13V eRWVP;@?ޛ;+0;(\n?k%ڍ=*\x13<~ąw\r N\x07=;;ll\x14\x0b7)Q<;lI+"~\x15j\x06\x1e3=&+<@<¼v\x08̢BXg=\x0f=. P\x0c=^9=J<֡ٻ\x06\x172Ҵ:<8"9=!\n*9\x11oŻbLp8\x00\x01v=6b<;ll;RZ\x1e\x11\x00(=m?k%=Pp<', 'text': '* ***Time:*** *10:10-10:30 & 15:00-15:20*\n* ***Location:*** *LIB 3015 Tea House*\n\n \n\n\n\n#### A Brand-New Learning Resource Centre – Your Gateway to Learning\n\n*Xiaojia WU, Assistant College Librarian (System & Facilities), Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nIn this Poster, we invite you to step into the enchanting realm of the Learning Resource Centre, where the pursuit of knowledge has no bounds. Building a brand-new library is to build a knowledge palace for readers, thinkers, and dreamers alike. This poster provides a glimpse into the myriad treasures and opportunities that await you within these hallowed walls.\n\n1. Exploration: To embark on a journey through the vast expanse of literature. To discover books spanning genres, from timeless classics to cutting-edge research.\n2. Innovation: At the Learning Resource Centre, we embrace technology’s transformative power. You can dive into our digital resources, e-books, and interactive learning platforms.\n3. Community: A library is more than just books; it’s a vibrant community. You can attend workshops, book clubs, book fairs and lectures that foster intellectual growth and social connection.\n4. Empowerment: Knowledge is the key to empowerment. Highlights the various educational programs, information literacy instruction services, and career resources that are available at the Learning Resource Centre.\n\n \n\n\n\n#### Learning Support through LibGuides\n\n*Jane ZHANG, Reference Librarian, Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nAs a common practice among libraries, LRC makes program guides to help students of different programs to learn about library resources and services related to their study and research. The program guides enable us to further consolidate our collection to the requirements of program syllabi. Previously we stored program guides as PDF files on UIC’s Moodle – iSpace. With information from course-related books to databases to library services, a guide can be more than 10 pages long, and not very user-friendly. This summer, we officially move the guides to LibGuides. The platform provides us with more flexibility and possibility to present library resources. First, with the “page” function, the sections of the guide are more visible and the organization of the guide is straightforward to the users. Second, LibGuides allows us to add more functionalities for better user experience, including direct linking to the resources, the support of multimedia contents, adding notes or contents without disrupting the flow of reading. Furthermore, the guides are cross-referable, allowing the library to build a complete information literacy program to facilitate self-learning.\n\n \n\n\n\n#### Practices and Challenges in Academic Library Space Projects\n\n*Pin WANG, Team Leader of Library Operation Team in XEC, Xi’an Jiaotong-Liverpool University Library*\n\nThe poster looks at the practices and challenges in academic library space projects. It consists of 5 parts. The first part identifies the user activities in the library, such as collaborative learning, individual study, library classroom learning, socializing, events and exhibitions. The second part shows the functional spaces in the library, including learning commons, group study room, training room, reading pavilion, research commons, outdoor area, exhibition area, etc. The third part summarizes the most recommended practices of library space projects, including communication between librarians and users, frequent meetings with related departments, visits to other libraries to find out good designs, etc. The fourth part tells us the challenges and solutions, such as noise reduction, seat occupation and power outlets. The last part shows the future opportunities of academic library spaces. With the development of artificial intelligence and education reform, academic libraries are facing their challenges. In the future, the library should merge into the innovation ecosystem. Space innovation such as demand-driven and technology-supported labs to enhance user experience may be a very good start.\n\n \n\n\n\n#### Professional Excellence: A Library Assistant’s Growth Path\n\n*Cai YAN, Library Assistant, Duke Kunshan University Library*\n\nThis poster will share what professional qualities a library assistant should possess and how a new library assistant grows in the workplace.\n\n1. Learning by doing: This part will share some examples of how a library assistant learns from doing everyday work.\n2. New library, new challenge: Moving to the new library also brings about new challenges. This part will share the case of the DKU Faculty Works Project about how this display project turns from proposal to reality and the constant process of occurring and solving problems.\n3. The nurturing of leadership: This part will share some experiences in training and organizing student workers, thus shifting from the role of a follower to a leader.', 'ref_doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:75b0644f-1aa4-48e9-8944-0ad15f0edc50', 'payload': None, 'score': 4.472326396705618, 'document_id': 'index.html', '_node_content': '{"id_": "75b0644f-1aa4-48e9-8944-0ad15f0edc50", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "152dfeb0-eda7-4982-885e-b8bd274fd1aa", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c646a76d-1b42-402a-a04b-29eeefc6ee86", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x03c\x05?nTG\x13\x0f;1yӼR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 4.4723263967056175, 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 4.4723263967056175, 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{20008 total, docs: [Document {'id': 'test_doc:1b337161-c7dc-4187-8ccf-3216e1888323', 'payload': None, 'score': 24.949260150649714, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '611475', 'document_id': '83133584-69fb-4093-81b0-4d216b1fdb99', '_node_content': '{"id_": "1b337161-c7dc-4187-8ccf-3216e1888323", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 611475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "83133584-69fb-4093-81b0-4d216b1fdb99", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 611475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html"}, "hash": "6264135d87641ed5a731ba76da73217eb838a32f4c01f1377695b6dbca03b72c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "179d8009-ba26-4fad-9e43-77d59c18092b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 611475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html"}, "hash": "3d598837f30165723eebde6b1cb97e0ed2bd175e3457462917d16389a2a59d59", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "24f686ec-c411-4034-a05e-bb401fcca399", "node_type": "1", "metadata": {}, "hash": "7298c2291e23705fb8b67fbbdcd046d9fe6f0bd606187828dad357bb235679d3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1192, "end_char_idx": 4820, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html', 'vector': 'FV73<{a8R+\x14ڼ5:^i$"NQh;gq\x15<;2;\x1b_=4n탪;X/\x086\x1d4\U00082f08y<[\r:ŀ\'\ue17dʢ ļuh2<ě;e\x1e){W\x16w;){\u05fc<*!|\x1c^Bɼٺ\x15<8;#b.\\\x0b~M\x0fڼ.<\x18\x17MU\x06=o<<==P9\x16w{ag=҇;`\'\\=%to\x14~$<ðB={\x15b<\x1aʿ:j<\x08\nKi;H=)&=G\x10UN<\x07B=E\x03H:b\x05\x161ֻ\x1fu<U;\x0fr;נ?>q \n\x19\x06<\x18T<\x12\x1f=r\x06=\\\n\x0e\ue188N̼RƼ5J<\x0e0̟\x06\x00K=$x&\x00\x19%\t:^\x17=\x1d숻\';༏6;A\x15a\x1f<<~<\x1f<0_e>\x0fs7T;\x1b(U\u07fcR˄\r9<=aҬ<\x17\x13\x04ς[i\x02YG\x11yA=\x0b̉f5=s"\x1c<7<Lj\x12y輙5v_8o6e;gP\x07\x18s7(=Ҭ;\x07.ٹ<\x0c\x1c<\x1b(h=6\x0b\x04p:\u07fb\x1c>=F=6\x0ba^;B8<-Sog<>$K>\x1d`(:4\na;\x1f=$x\x14*6M=\x0c\x08XX;\x10ym\x18k=S\x04;\x14==\t\n<\x02L9\u07bcA\x155ʔSX \x19Y\x07,S469;\ta<4eJ#<^\x17\\мb!\x01ۻ|)=V8;\x0c\x08=ҀΠR<č<\x1cΠ<\x0foI\x1e=eF\x03\x02=Y̟*f|\x7fN=A\x15=1"#b\x0e=O<=oѽw\x11<<\x18(=\x08`L6ۼP^ּ7\x10Gp\x1d\x1bm<<֢<.G\x10d\x18=ɼ^⇼oѼMȺz۩;ź]D:]=\x00\x18;B;#\x10=N\'\x1a8\x19`_NV@=igoo;\x08<\x1e2<\x07\x13<5%:;.\x0bpD<\x0e_:\x12e5@6Y:\x04J=\x17gB\x01s\x19=bݍ\x1a,\x11J(;\n;WG<\x1f!\x0cr<=\x17\x11\x16\x0c%\x07\x14>w;5%\x1e5;ka\x19E\'m\x15.G;/26P{"=.\x0bp=M(Я\u05fc9=8\x12=><ͮe\x02=.h;\'uD(?=u<*\t?\x02=a|(o;QK\\<\x13`3ļ:l+?\n:\x16\x14<3:ɖ\t켏H=r\x19`=y;j\x0fD\x04,1\x19J\x1c\x11<;պ\'\x08<}u<%\x0c%L+Jpx?={H<\x02W<5:\x15ּx\x0cW\x13=摽V\nʺ=~ %T&=k\x1a\x1d;\x1a;:ē^=?P93\x15<@\x07mfZ:OػCw\x15ݲ<>-έ r7Y;PI^\x05\x10<5<(ȉ;:̡_\x1d=\x04\n=@1ż\x1eQdT<\x15%=D<\x1cU\x19=\x18T\x01;cg=\x10tA\x10&\nH.:Bk;w;\x0f<&\x13~\x0eX\x1e\x02=v=>m3Qoϓ\\\t<{l\\T=¼ r7g=\x01>A|1C\x133V|]Z=v=>)Ye+<\x1et<`\x05\r<~\x10=l\x17\x01<6jbu<証\x010\x19N<`P\x04=@T\';[AR\x1ca6\x17\u05fc2<:Uy;(|<\x18Z<+oqJ1\x1a\x16\x1ch^B+ZH<<,<5V=\x07+9j<;\x1e:d\x10>ɏ;\x02[=Ӈ<\x1eoɦ;V\x0f.X\x1eh?=\x1fJ\x12/=\r;;`<,M\x00;1\x1e7\x07^10<\n\x7fTIv=\x18Y\x16\x18;W0^=\x1c\x19<\x13\x0f<$\x0bZ\x00\n<.<6z<_<=\x0cW<9\x0eQ=n\x19<\x1c1=+_<0=o=\x0c\x00a{:{:k\x03"ȵԼw{b\x1e=\x1eʼ\x19>90\'2<,UY<ƸzJ@\x19m\x15=aC\rRϼh\x0bւ\x17=<\x05=\x19LF\x17#<3=B\x1e{\x06Kʌ=c=\x08=$\x1b06\x01=\x08F\x16r\x0e\x1a|=I\x19<;#\x08-]%\x0374\x04\x1b;(cM8=\x08=#t\x1f\x12k<\x0f\n\x06v8\x18X<-(2\x02̈<6;dv<2TI<2==\x10)༃r\x0e.8\x0c〼\x1e=Queᖻ\x08\x17컅\x14==\x03<\x00\r\x1fM\x02=;\x199@-\x17<-Do|;:A<3>\x16HdF2j\x0f\x08?P#);\x05:n\x0bo\';HNO\x06\x1f&\x148=PB\x0eul\n\x13(fV;\x08&<\x1d&˙{!\x02§#q<=k<ߓEPB\x0e=\x1dF<\x14xZ;w_^u6=7;(=V;;cӼF\x02\x19=g<\\4=BּXU1\x7f8\x10췼\x05)\x11=]#<ߓE=\tY<\x18\x02C\x17粼l݉<"ڼK&:ǔͼj\x11\x15\x1e<\x14\t=\x1c<\\pcӺҮѯ<\x14\t=yo:\x1cfܽU^=W<>K\x08<\x02*8\x03<0&<]N=8\x01<"\u05f9=͂\x15!:(\t=xB<ʕ<<\x0b3Ĉ@2=$Ti\u2d7bo=Cn\x03=\x08\x03LJ=\x7f[<Ƽ\x03Ƙ:A\x1cMknݺIqJm<ᣡ=\x034s<\\ԅNH\x1a=\x1b\x1c;;c<{3<\'\x11p\x17ur=S\x19\x0c#;i{w=\x19\x0e):K<@ػ=YY<>F]Q<=kn]=꾲\x03Ƙe\x18?_(5\x03<\x0b\x07\'μeX\x044<2"ʁ1;gK\x1d=Lºq\x17K|bzG5\x0bc\x08lP0+;:o^\x0b;`HN,\x06`\x11#1N\'I\x198=j;\x0c(|;i%n<ŻS/\x02=a:Ic<\x03=&\x13y<6n<{\x11={&\x05;\x1bˮ\x0b\x0bc>r2=j㺈2(Ip=\x0c\x03=JJ=\x12\x19[=6Y<6\\c;=H]=<\x00\r\x1fM\x02=;\x199@-\x17<-Do|;:A<3>\x16HdF2j\x0f\x08?P#);\x05:n\x0bo\';HNO\x06\x1f&\x148=PB\x0eul\n\x13(fV;\x08&<\x1d&˙{!\x02§#q<=k<ߓEPB\x0e=\x1dF<\x14xZ;w_^u6=7;(=V;;cӼF\x02\x19=g<\\4=BּXU1\x7f8\x10췼\x05)\x11=]#<ߓE=\tY<\x18\x02C\x17粼l݉<"ڼK&:ǔͼj\x11\x15\x1e<\x14\t=\x1c<\\pcӺҮѯ<\x14\t=yo:\x1cfܽU^=W<>K\x08<\x02*8\x03<0&<]N=8\x01<"\u05f9=͂\x15!:(\t=xB<ʕ<<\x0b3Ĉ@2=$Ti\u2d7bo=Cn\x03=\x08\x03LJ=\x7f[<Ƽ\x03Ƙ:A\x1cMknݺIqJm<ᣡ=\x034s<\\ԅNH\x1a=\x1b\x1c;;c<{3<\'\x11p\x17ur=S\x19\x0c#;i{w=\x19\x0e):K<@ػ=YY<>F]Q<=kn]=꾲\x03Ƙ<\x00\r\x1fM\x02=;\x199@-\x17<-Do|;:A<3>\x16HdF2j\x0f\x08?P#);\x05:n\x0bo\';HNO\x06\x1f&\x148=PB\x0eul\n\x13(fV;\x08&<\x1d&˙{!\x02§#q<=k<ߓEPB\x0e=\x1dF<\x14xZ;w_^u6=7;(=V;;cӼF\x02\x19=g<\\4=BּXU1\x7f8\x10췼\x05)\x11=]#<ߓE=\tY<\x18\x02C\x17粼l݉<"ڼK&:ǔͼj\x11\x15\x1e<\x14\t=\x1c<\\pcӺҮѯ<\x14\t=yo:\x1cfܽU^=W<>K\x08<\x02*8\x03<0&<]N=8\x01<"\u05f9=͂\x15!:(\t=xB<ʕ<<\x0b3Ĉ@2=$Ti\u2d7bo=Cn\x03=\x08\x03LJ=\x7f[<Ƽ\x03Ƙ:A\x1cMknݺIqJm<ᣡ=\x034s<\\ԅNH\x1a=\x1b\x1c;;c<{3<\'\x11p\x17ur=S\x19\x0c#;i{w=\x19\x0e):K<@ػ=YY<>F]Q<=kn]=꾲\x03Ƙ<6E.7O\x03=3\x19>;w;YR~[=\x02<3<3Z(YԦA=$jK(OLC<ػ}=Wދs\x179u4ż\x00Ekລ|<\x0ek\t\x1a;ӟ-<:Z̈_9;\x0c<dž;_J\t\x02; <\\<\x0c;m\x04Mb\x0b\x0e=̼І\x05S=0j;Fb=\x1b\x0c;\x12\x08V}9=^=`mr\';G"?<<66J=[\x06\x14;\x19.!\x06\x14\x00\x1bLS";E2<\x1a=<~M\x18H/:̈h}p=\x17<2\x11剆p\tF\x0cY=2k><\x1d\x0bE\r<\x01=ΚO=\x06\x14\x001}=?\x02<,S\x07#kD>\x1e=I\to;üF>c_vP\x01V?=>\n<\x07<\x11\x16G\x12;JV<=\x1fQC\t%6ֽp̈<}\x06Ƽ\x0e\x13=\x03ת=9vn=09H\n\x1fӼ8Ɯ;d3\x06qN=y=Y\x01<\x10*݇=Aˏ\x02;=\x18\x04/<\x10J-Tš~zm<"u;.{<_vP<ջ\';v;6\x13`H:@:F<)*=^9"\x08\ta\\;\n/"\u05cc<\x15~D<\\$\x1b=;MѾ\\?\U000e45fcwƼ\x08\x07V"=\x15< ռxƻk伩\r=]1g\x04[=R"_;\x0b&Ϩ\x00B#\x1f9=ż\x0eD:C!=\t\x1a_<=iaG&#=ؑJѼ[oռy7c=\x05Wy.=:<\x1a\x04\x8f49z:<,`<Ԗ<\n䀞:\x19e\r\x7fgJ==\r=:i(\x14<\x05Cs\x1e~.ԗ=v6;mw,=5=Լmw,=\rT;/";$<\x05;pp<\x10!\x18\x02̅=XȻ\'輵pSȋȼtc="Ƽ\r\x14;\x10P\x00[9\x02=?C\x04<6=3do(\x13\x12;-HW=]R<Ǧ\x03qM0$\x0f5=l\x14[svd\t-\x7f>\x0c=F.3A\x08=\x19 =\x1b\x05\x0c<ջs\x1e\x19q{\t=y\'\x11dF=\x01aL<\t<\x0ck=\x14;\t <"\x05=\x06R\x02t\x14<\x1f`ڀ\x01 9;mw,+z<|S\n3A<49|D\x140 =ռtj:C<^\x04;+<\x05<嚼Y;\x1a\x07S;F:ga7P=`d\x04N=\t\x1a_\r7\x13\x076Y+zE\'A<~\x103=\x10x;Ѽzh<@\'K<+EA;\x7fQ*=\tc<.=+=\'xG0;ҙ\x17L2\x0f\u0383Vaz\x16\x1eϼ\x04+9S,\x08=j\x0fZ\x00<(<1t\x03\x05u\x0c*;5\x1c\x078*\x11̻A\x03\x1e<1(ӻ\x1e?m\x08<\x17\x15`\x13*Wf\x010\'$Vjַ=::\'\x01*=\x1f\x11=\x08\x10/=[:; XX3\x18"\x12dN=hp"<\x15\x04XD;s\x0f=i\x14)$\x02ż\x0c\x19 X<\x08;{<ϔ\x16\x03\x05<\x1e\x02<-_\x1aַ\x0b;C.64=%9;:ĺ8T,V;f\x14W=RȮ\x04\x08=i\x1d:2i;ˋ;\x18\x08=JVồ8==\x08\u0378:\x05<ͺР=T\n<\x06<\x1e\x193\x00ˑ\r=\\\x15h<<<\x17;&\x16\x03;CɰF꼫¢<5.a,\x00S \x18\x0f\x7f:< üP\\\x05<ỼM<\x0e\x02=qꗛ;\x054=ȓf\x16\x03=\x19=]\x18\x02,<Ƽ=<\t<\x03\x19\x1e,!=\x01ƼF;\x1a65=d>=\'<Э\x08=Ј<\x17PӖ;\x00B\x065\x02:\x1d؏]5><51)=р<%=;(I\x7fPs:B+\r֞<\x1cW=hQ;;;\x7fu\x0fhc;;rԆ<}kK;B}: a\x13ܼ:\x10\x19=kn.dz\x1b\n\\$<,Nʟ<(!4\x16\x0cx;\x11<<\te<ς:ʟ\x13\x1aQ\x07=m,\x0e\x11=9\'<~<\x1a@|\x17.ʽ_<\r\x03=h;E=x\x0f7]μ\x02ݛ:P<\x7foa<\x1e]>\x18\x1ep<\'l=QIɛ<.<;S9B:z\x1c<ɳǼa\x0fm];|]μ\x16=\x13b;<\\\x03=I=\x1bUus\n\x13z\x18<5紺|\u058b<\x97cO\x13PFPv\x11q0\x0f(q|!7=@pT:F<\x0fi\x1aa\x08\x07;S:<9Y\x1aGK)=\t=h9\x08=̈\x08\x0f:A=<09༞\x16\x1e \x1f<\x075-d\x19\x02\x1b\r҂6=(JK\x14<˩<.=%o;5r%\x0fi=})\nX\x04=XkY<\\xXp\x11=u{\x15=d<μ4Dg\x1eIv=hI<<ؗ9:$hP;\x13=\x159/=2%\x12m:\x18\x1f<\x1fL\x06$=eEq<"ǻQ\x87\x06Q\x1ez=\x1egd,=46\x1a<\\-yϼOĻqY=n\x1f#=;\x06Xy=\x0b\x1c=D8.<;`/\x0b=dW\r=2"=ׯׯTC=mIƓ曥B:\x1c.W`\x04=\x01:<]AK\x0b\x17(OQ\n=);֑C\'0t\x01=}<\x03c<.Q<\x11W4g\x1aFI<\x04.QҼB\x1f]<\x17<\t\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 13.497591013886247, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 12.831541427482865, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 7.139703506132764, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIGKYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 74.56712697123471, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 183.88128761147425, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=F\x10>s\'<\x13\r@;\x16;#d=WV7>\x15"=nJ;\x12{]\x14V\x07 \x02\x03@:Bv\x16=;s<\x03f:ơ;<@85D!\\e7\x06\\RĖO;\x12?\u07fc\'ռ\x16~;Uv;GI4\x1fuN=k>w..\\R\x00<\t¼`*!<\x03\x00+<(@=Qw;<,\x13&=/Y\x04\x0e\x01=QЛRx\x05,p"\r\ue89f<:\x18l#2=;\x16<.;u#vF\x15\x02mul;\x02\x7f;R\x07w;==<Ƹ\x11\rWvSw;X¼.0<\x02;t0=CC@<<\x05\x0f\x1d7<\x15"=\nE<\x1c9=\x14\x19PuN\x06FN/&#aȇ̠<@<\x03\x14=\x16S=\x15;\ue89fe|*l=\x15Q~B\x05\x04\x07=7\ue89f\x06<\x11㻲;;Ӻ0ϼp\x19\x17ykE\x16-δ;F:I?S<:`y<1v|}77\x17<_c\x0f˼x\x1c<\x1a+=/\x1d6\\\\<\r=;RƼOz;\x04\x07=;\uef3d\x01~S\x03\x14<;M;;<<^<\x0f\x04=g<*l<\x12?_5Ai\x14<0ϻw\x15\x05<}i\x06Y;{=ˢS\x13d\x08`V<\x1fA=\x04\x0eW*(=:x7Buٻ6\x1dv=Db<\x1bE;_}:\x83I&\x14$_D5=(\';6\x1dv<\x11eo=%r=F\x04+:L<Ҭc<;5㵺\x0bJ{\x1br<ڋ9_\x7f+<<γ3=ʺ<<\x04H\x13?\x11;^l<3/be<\x08K=\x1eG<$s\x14:\x1dd¼tdӬbT=|a;Z\x04}$=:]c4;ܺ<8dǼ\x023:!\x04=7\x17<2]:;OW\x1c;ëd\\O\x10=;\x85=+9\x1eq3<\x18;vs#k:=фckkI+\x1b=_#\x19s,R]<2\x07\x17\x1b;÷}\x0cԻ|WFI=I?\x1b\r\'\x10=7m;\x14V݃<ӻ<˴-4E\rl?V:Î=γ;R\x1c=\\\x1e/\x14<0\x05|ȼj:<\x18<*=Y<-t;\x02\x1fb\x06<^\x13<\x0cY}\x0c\u0600\x1a:\x01\x05#=/=\x08=Nj|\nv<2imh\x10[J:N\x12:c켔C\nh=Ք=ݍ=p<\x15C/<{ǏL9RqM=\x1b!<\x17#:@<5<0\x06h<\x7f<\x16\x0f9:\r\x0cкX:\x00&=&`]=\x18K\x03_\x02\x0b\x12FwGg<\x04ix>7\x1a",o\x1d\tN")E\\<\x05\n<\x14H3V;\\<\x01>ƻ\x05\x05n\x07=\x17#\x16=ȼ\x05\r3\x0eN;\n=J:=)l;<\x04\x10=\x11&V\x08<"9&<\x168.T7\x08~=s3=/j6\u07fcisVqJ$\x03ʆ9*:\uf237<,ۼ\x158\x05\r87t\x00=kٖ:Z]R7\x04?<\n^I~F<|\x1d\x12s\x1cl\r;1\x13=<\x04E\x1b<|4D=o<͝\x12V=Ӎ=%\x06=%J=\x18k< \x0e\x0f\x1c\x1a\x10c˵<\x15ഗ\x15<\x17\t{~=/+!#\x18\x1b@8\x12Bi<Ƽ5\tc;إK7\x08\x00>DY;)\x19ZOz<\x15=UqJnI<)υ\x10o< <̻\\\x11\nxhO\x17;`߫\x0b0Q#<\'\r=%ɗ-qD;.h!={\x1f\x16<\x18C\x1f;`:\x0ex2<\\So\x03=#PA\x0er!=\x1bټ\x0b=\x198\x12x;W\x01=,=\x028,ኼ,^&\x04R\x12=Rר!\x04ӓ<\x03ZBG<^;$e\nި<~(<\u07fbr\x04Zwn戽8#?<\x12x=6\x05\x14;T!m;Z,κ=)<\tA6G[=\x13bS\x10&', 'text': 'The two cultural pillars of the Spanish and Anglo culture, Miguel de Cervantes and William Shakespeare shared the same times, and almost, the same day of death, April 23, 1616. Both, lived fully, as we do today, in tumultuous and tempestuous times and shared it in the tragedies and comedies coming out of their imagination. We, their heirs have adopted, used, and transformed their legacy -our language. Also, we do share that history, one of imperial dreams and nightmares and the expansion of a global Eurocentric culture that transformed the globe during what we called modernity. They foresaw such forces, those that unleashed our own wild and turbulent times. Art still creates out of Cervantes Don Quitoxe. This paper was commissioned for the first of a number of exhibits produced by the Artists Studio Project (ASP) for the annual Quixote Festiva, a nine month cultural adventure that takes place every year since 2015.Save to library[Download](https://www.academia.edu/attachments/64930199/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=44495782)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[![Research paper thumbnail of Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://attachments.academia-assets.com/49530053/thumbnails/1.jpg)](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)[Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultur... [more](javascript:;) In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultural loss for more than five centuries. Today, within the framework of global policies for open markets, the community has developed new strategies or resistance: documentary video and community radio, public and community based performance, and symbolic uses of ancestral objects are threaded with cosmological knowledge. New media technologies and collective performance are part of the strategies that indigenous organizations in Southern Colombia are practicing in order to close the generational divide, build communities in resistance, share, and make visible their struggle. The emergence of the ACIN\'s Tejido de comunicación and the"kiwe Ten\'za" (the Indigenous Guard) are the result of this process. Developing a communication platform while fighting against resource extraction operations, illegal crops, and land disputes, the tejido and the guard inform and protect Nasa communities targeted by local, national, and transnational forces. The Nasa are actualizing their tactics through a combination of historical means of resistance (military and political), by strengthening their core values, and by processes of autonomy, education, and circulation of inherited means of governance. Miguel Rojas-\xadSotelo is a Colombian art historian, visual artist, media activist, scholar, and curator. He holds a Doctorate (PhD) in Visual Studies, Contemporary Art, and Cultural Theory (U. Pittsburgh, 2009). Miguel worked as visual arts director of the Ministry of Culture of Colombia (1995-\xad2001), building participatory cultural policy for the visual arts in his country, and he works independently as artist, curator, and critic ever since. Currently works and teaches atSave to library[Download](https://www.academia.edu/attachments/49530053/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=23676786)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[!', 'ref_doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/duke.academia.edu/MiguelRojasSotelo/index.html'}, Document {'id': 'test_doc:7ae4106a-10a0-40f8-8cc5-971e807c885e', 'payload': None, 'score': 38.53360199092106, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '235942', 'document_id': '71dea93b-9b52-4783-bcd3-f27c0c643427', '_node_content': '{"id_": "7ae4106a-10a0-40f8-8cc5-971e807c885e", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71dea93b-9b52-4783-bcd3-f27c0c643427", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "hash": "0e1208392f260a647322efa9a480d331435548499b5ad3056d939be3965d5865", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3192, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf', 'vector': '\x16\x1c\x00ռtW듼\x0c]UX."Ѽkũ<\x16߰\x1c\x08ʼQ0\x03;0\x08rxڻI=hk<\x16\'=ˌ<;\r=:C=ݔl;;lW;̂i;Ab={x\u07bbQռ<<\x11\'%;̋\x070*n;c=\x02Ak<\x0cw\x1d\x189E<>7\n=䝁<0.wܿ0\x08.\x0fμ#M\x04C\x18\x1eݹ\x0f==<\x08/<\x1f<{<\x0e,0=>7\x06\x12=yW-g8\x01\x11\t_<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&lN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 14.485480856092394, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{30399 total, docs: [Document {'id': 'test_doc:5dc73c06-0641-476c-ba07-ec3d9ce82991', 'payload': None, 'score': 132.55675331806512, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "5dc73c06-0641-476c-ba07-ec3d9ce82991", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bbb8b0a7-def2-445b-89f5-c7988780b2a1", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "18970c20bf6be058ab8372022d046550e6055d4d81d1b74ea61521b845016ee0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "172eb832-1ba2-43dc-84ec-f4a2c9d0c8c1", "node_type": "1", "metadata": {}, "hash": "19b245eca249d5169e359d1e5960013f3504abb80e219ecd262db78414e59a2e", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 104059, "end_char_idx": 108804, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': 'B\x121\rjB\n;n SO^\'`xOTJ=i%\x13\t,HFL:V-\x18\x02\x17>\x17=f=0!e\x1d=V-\x18=+#A.=\x08qARj% ҼU(\uf04d#E,< <,HFG\x17\x1a8ZxC8\x01bX2K<)\x14<8I;j{<9:<1\x08d;\x03m,=f\x19<\x1ce*;E=~xX2E\x06=[_<\x0fZ\rP\x1f]&z<%\x06+<Ճ_\x00*0=x\x15ܶb/Q<*\x18:qc<:\x15\x08\x00\x01Q\x12>$q=J"-=M%"\\jW\x14U;\x00Rs%<_Z<;\x1a\x12=h\x10(<\x0b\x00K\x15={l\x00=HɻlEs-g<*k;\x03=\x17ܼ\x7fk7\x17\x04\x08v\x03\x1cvz좼t\x1aB\x1b=Ͼ,\x04\x01;ƶokOcB=&?o=?]\x0e\x17=<\nǼ6]\x1fw=\x10\x1eGB\x1b=S>\x1c:F<\x18\x05·P\x11y\x1dbX2QԎN', 'text': 'Citizens of this community commit to reflect upon and uphold these principles in all academic and nonacademic endeavors, and to protect and promote a culture of integrity.\n\nTo uphold the Duke Community Standard:\n\n- I will not lie, cheat, or steal in my academic endeavors;\n- I will conduct myself honorably in all my endeavors; and\n- I will act if the Standard is compromised.\n\nIt is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe Reaffirmation\n\nUpon completion of each academic assignment, students may be expected to reaffirm the above commitment by signing this statement:\n\n“I have adhered to the Duke Community Standard in completing this assignment.”\n\n[Student Signature]\n\nDefinitions\n\nLying, Cheating (including plagiarism), Stealing. Definitions for these terms used in the Duke Community Standard appear at https://studentaffairs.duke.edu/conduct/z-policies/academic-dishonesty-0\n\nApplication of the Community Standard to the Master of Engineering Management Program\n\nThe Duke Community Standard encompasses both academic and nonacademic endeavors. The first part of the pledge focuses on academic endeavors and includes assignments (any work, required or volunteered, submitted for review and/or academic credit) and actions that are taken to complete assignments. It also includes activities associated with a student’s job search since the definition of lying includes “communicating untruths in order to gain an unfair academic or employment advantage.” Some of the aspects of academic endeavors as they apply to master of engineering management students are:\n\n- Group and Individual Work. Please note that in many classes there will be both group work and individual work. Students should be sure they are clear about what level of consultation or collaboration with others is allowed.\n- Studying from old exams, assignments and case studies. Many courses have case studies, exercises, or problems that have been used previously. Students should not use prior semesters’ work to prepare for an exam or assignment unless allowed by the instructor.\n- MEM Program suite, computer laboratory, library, meeting rooms, and other shared resources. There are numerous shared resources that are available to support a student’s studies. Use these so that they will remain in good shape and equally accessible for others.\n- Career Service Resources. Use these so that they will remain equally accessible for others and so that the MEM Program will remain in good standing with Career Services. Abide by Career Center policies found at https://studentaffairs.duke.edu/career/about-us/policies.\n- Implicit Reaffirmation. Some instructors may not require students to include the reaffirmation on every assignment. If the instructor does not require students to write the reaffirmation (“I have adhered to the Duke Community Standard in completing this assignment”) or it is omitted from the assignment, it is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe second part of the Duke Community Standard extends its reach to nonacademic activities undertaken while enrolled as a MEM student. Students are expected to observe:\n\n- all local, state, and federal laws and\n- to abide by Duke policies including university policies on discrimination, harassment (including sexual violence and other forms of sexual misconduct), domestic violence, dating violence, and stalking. Details for these may be found at\n- https://oie.duke.edu/knowledge-base/policies-statements-and-procedures and\n- https://studentaffairs.duke.edu/conduct/z-policies/student-sexual-misconduct-policy-dukes-commitment-title-ix.\n\nJurisdiction\n\n- The MEM Program may respond to any complaint of behavior that occurred within a student’s involvement in the MEM Program, from application to graduation. However, complaints of discrimination, harassment (including sexual harassment which, in turn, includes sexual violence and other forms of sexual misconduct), domestic violence, and stalking will be addressed under the Student Sexual Misconduct Policy (for misconduct by students) or the Policy on Prohibited Discrimination, Harassment, and Related Misconduct (for misconduct by employees or others).\n- Any MEM student is subject to disciplinary action. This includes students who have matriculated to, are currently enrolled in, are on leave from, or have been readmitted (following a dismissal) to programs of the university.\n- With the agreement of the vice president for student affairs and the dean of the Pratt School of Engineering, jurisdiction may be extended to a student who has graduated and is alleged to have committed a violation during his/her MEM career.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c58cedc7-cea5-41b6-bc3b-3a771c4f86d6', 'payload': None, 'score': 89.22829267208752, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '347133', 'document_id': '7979214c-3a83-4371-9c7d-5b3a396437e0', '_node_content': '{"id_": "c58cedc7-cea5-41b6-bc3b-3a771c4f86d6", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7979214c-3a83-4371-9c7d-5b3a396437e0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "68b037e71e4a1ff245a8b811d8fd9bb3d143078a8f45b0130a1cf34eb9ef7896", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf2b9747-ad6a-4006-8d4d-1c44a2e498fd", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "78102f4238ea0c0199c9d290540cf6c0b09dde573d8c3c651955aba49ea65d6d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0d0262fd-5f63-4d3c-a40b-85f68f5e806d", "node_type": "1", "metadata": {}, "hash": "fc841255189697ca2eb6dedd5ea92f4eeb4dbf26140e34f28f8a094c39bc5b37", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5572, "end_char_idx": 10685, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html', 'vector': '/*ܼ9Oڼ\x07.5̧\x04\x15̻\x7fF\x05Ǽhp<."<\x03\x18\x1f=~\x19=Ѕ-\x11i\rERL;St\x1a;+;v{ٻQHżf\x14;<\x1c\u07fc\x0cX7uּǿ<^\t!/b\u05f9jIe=#<3\x04Y<\x1d\x11<\x19\x1c;|͢<\x15!\x07\n߰<%~<\n)-=:\x19^<2W=3\x15=<\'3;{<ǿB<+\x00=\x06M\x1er\u07ba\x13\x05\x0c=b\x0c컗༁}<\r~]uY<9O<8\x06M\x0c\x16;0=rv\ue37d8w̧=QHE;uZ\x15=\x1a=|\x19nh&鼾\x11%;J<\x06Y,/<\x175ƻc=l\x04;\x11\x1e\x10\x00ڼ;\x01e̼cQ- Ʒ.<;g;U;˂Hηn=D`\n=>l2\x01<ܼ\x17/yV1㴽*\x1e˻{ϼ]<\x02Ի\x18=$ \x14c=pΊ%ͼw=%T=R\x0f<:2x-\x16\x163<\x06\x0fӻ\t|a,\x0c4\x04$v{O\x1e\\\x06A\x1aWk;;\x13;u=\x18[;߀\x03\x12鎈3HK;3H<-.;=+v-"N\x1c\x16-M=4\x0b=}\x1e=Ӽ>>܀ѼH\x0fLqD_\x15=9\nm\x11cޢ))9=+a=#<2H<٭\u07fc=\x0ba<>q =?X<\x04%\x06\x0fY\x1c(=2\x0c@&&\x0f<&l,H=\x02<\\B\x07r=Ы;yN<\x14om<\n5ƞ87.=D_!\x15n<2\x04)n(=\x1e\U000fc5e5;:`G{;4`\u07fb\x1b:\x1f=cw4&\r<>$\x00\x01\x14\x102a<.ة]-0"=\x1b<\x16ӵ0R<\x00\x0f;,Z!;Kٮw>=zkdjG<{\x08y:\x0f\x02N<\x02>.=x=*\x02<\x03=\x0fܼ="\x1b<0ǿ<\x14\x0c<\x1fnG;l5Y\x05\x1b4;\x17a\'^ڼg;l\x12\x13\x03=+t=J<6껝<\n\x0b=\x02/:\n\x17:} мc(/OT<\x02!=?䗽;N=ᕼ} )ȼ4\x19=ټ\x07;\x08ռ:^\x06v\x11jŞ&mg2;LoXu\x17\x18><]=\x7fS\x10g<\x01o=V$^-\x18m\'X;꼼K=\tbݼ뽘<\x13rZf:=!_; ;v<:|3!<|,\x07qi,\x03\x1cPLjŞh*^\x19<\x1ap(P<\rټ\x06vmuM9b<ּi9V<\t\x13=AЇ\x04f<\x18\x7f=|I\x05.>+˻;e=+M鹑<[hx=L\x19\'=u<<=%N<;\x06<\u070f0<;ܼ\x19<\x10y<\\;ogso\x1d=\tl=$@;\x01=A"a9ݽ)~=Fu\x10\x01\x07<"a\x0c;=\x7fx;$B\x7fü)\x1e+]w\x10!+M`\\:\x81<\x0e\x1aǼ\x13ܼ\x10VJVGݙ̼-\x07;=\x15O=e<\x0c;@\x0c\x0e< =O*;w<\x17To\x03r<\x01|{9D+*=t\x1d4 \x1f)A,\rW;\x1eؼl\x06&<ʎD\nuAWx;dq-.-\x1df\x17%/<\x01={\x1e{<\x11BŻ7ϼ\'n\x08=Wʕ4 \x07q\x07uK\t=%\x18yO\n;n\x17<8\x02\x18p=7̶<\x0ea;XԼޟ#U\x1dr\x0c#Dr\x104el=N\u05f8!4;8Yw<\x08Oh.2qJ4`2;!.=\x07I<3 H;2;;k[Ĕ_@\x07e\x00=,;] \x11;O<(y\x11Ѽ\x0f暽\'!<5=ĚU0*+=;\x12@=@/e\x0fS˹tH\x04,<5;;_\x18D\x03Dwh=uYm<뛼\x11ѻ\'\n;=\x10d+P=\x19<͒\x0eC=)ڵduǼ>\x0e᯼d.m^VMR\x0e<6ü]-t\x1aк\x07pɼR\x07\x0eL聽=wLew\x11;N\x1f;WK$-W:<=t\x1aиԆXbz<(\x06׀;Y=$G=:;1%;^\x0fμix<\x18T<\x14=N<,o<\x05x<.&;p\x1b`0[v];b\x01^=^<\x02\uf83dpd\x14C<\uf6bc\x1eh\x1f\x0b\r-T<=\x07=\x01\x0eC%=ן<\x05J\x12<2:S\x1b<\x18\x01^!a-Z\x0cO\x1b,;.<8-<\x04Y6\x0f:)Roy}<1i>\t\x17=ܼ=!\x0c\U00048f3cJ=G7<ѓ\nb1G7+^E}$D+м=T\x08<\x15<=\x16<+мΖ\x11iT\x0f=Ɖ2<\x14ؼX)<\x11b\x01;y{弪#\x00g̉w?<ןڦ-\x1b\x08>@\x7f=[z;a2=j|V-*;S*Dm<\x06\x1cں', 'text': '* [Duke alumni network where you can find Duke’s 190,000+ alumni](https://alumni.duke.edu/discover/people)\n* [Duke alumni resources for career support](https://alumni.duke.edu/benefits/career-resources)\n* [Duke Alumni Card](https://alumni.duke.edu/benefits/alumni-card)\n* [Lifetime alumni email account](https://alumni.duke.edu/benefits/alumni-email)\n* [Access to signature events such as Homecoming and Reunions](https://alumni.duke.edu/discover/events?)\n* [Regional DAA alumni chapters](https://alumni.duke.edu/groups?qt-home_groups_logged_in=2)\n* [Library resources](https://alumni.duke.edu/benefits/library-resources)\n* [Educational and travel opportunities](https://alumni.duke.edu/programs/forever-learning)\n* [Communications such as The Blue Note, social media and the award-winning Duke Magazine](https://alumni.duke.edu/magazine)\n\n\n\n\n\n\n\n[Learn More](https://alumni.duke.edu/benefits/alumni-benefits)\n\n\n\n\n\n\n\n\n\n\nDKU EXCLUSIVE BENEFITS\n----------------------\n\n \n\n\n\nDKU EXCLUSIVE BENEFITS\n----------------------\n\n \n\n\n\nImportantly, DKU provides you with the following exclusive benefits.\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\nDKU Virtual Alumni Card\n-----------------------\n\n \n\n\n\n The card is your identification as a member of the DKU alumni community, providing you with access to a host of exclusive benefits. **[Login](https://alumni.dukekunshan.edu.cn/benefits/dku-alumni-card/)** with OneLink ID to view your DKU virtual alumni card.\n\n \n\n\n\n\n\nCampus Access\n-------------\n\n \n\n\n\nWhile you may miss your time here at DKU, you are more than welcome to come back after graduation to catch up with old friends and to relive your memories. Access to the campus is never easier with your virtual alumni card. Just show your virtual alumni card at the entrance! To invite guests with you, please refer to the instructions [**here**](https://newstatic.dukekunshan.edu.cn/operation-files/Instruction-of-DKU-Access-and-Visitor-Management-System-1.pdf).\n\n \n\n\n\n\n\nLibrary Access\n--------------\n\n \n\n\n\nDKU alumni can enjoy free lifetime access to the library building. Click **[here](https://library.dukekunshan.edu.cn/)** to check more DKU Library services.\n\n \n\n\n\n\n\n\n\n\n\nCareer Resources\n----------------\n\n \n\n\n\nFree one-on-one coaching provided by DKU Career Services staff. Contact DKU Career Services at [careerservices@dukekunshan.edu.cn.](mailto:careerservices@dukekunshan.edu.cn)\n\n \n\n\n\n\n\nWriting and Language Studio Access\n----------------------------------\n\n \n\n\n\nDKU alumni are welcome to [make appointments](https://www.dukekunshan.edu.cn/lcc/writing-and-language-studio/) with the Writing and Language Studio (WLS) for coaching on graduate school applications and fellowship applications. Before making your first appointment as an alum, please update your profile by changing your status to “DKU Alum.” Contact [DKU\\_WLS@dukekunshan.edu.cn](mailto:DKU_WLS@dukekunshan.edu.cn) for assistance.\n\n \n\n\n\n\n\nExclusive Campus Discount\n-------------------------\n\n \n\n\n\nYou are granted the same discounts that current students receive on campus. Activate your virtual DKUCard with OneLink ID on the official WeChat account “昆山杜克校友DKU Alumni” to enjoy the discounts when making your payments\\*.\n\n\\*Please note that this service will be available from around the end of 2024.\n\n \n\n\n\n\n\n\n\n\n\nDKU Virtual Alumni Card\n-----------------------\n\n \n\n\n\nWe have launched a virtual alumni card system. The card is your official alumni ID and gives you access to a host of exclusive benefits, including access to the campus and library. [Login](https://alumni.dukekunshan.edu.cn/benefits/dku-alumni-card/) with OneLink ID to view your DKU virtual alumni card.\n\n \n\n\n\n\n\nCampus Access\n-------------\n\n \n\n\n\nWhile you may miss your time here at DKU, you are more than welcome to come back after graduation to catch up with old friends and to relive your memories. Access to the campus is never easier with your virtual alumni card. Just show your virtual alumni card at the entrance\\*. We look forward to meeting you on campus again!\n\n \n\n\n\n\n\n\n\n\n\nLibrary Access\n--------------', 'ref_doc_id': '43ca80ca-1a15-4ecc-8cdd-e8b8586ab568', 'doc_id': '43ca80ca-1a15-4ecc-8cdd-e8b8586ab568', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/benefits/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e9b3eb80-15c3-4921-a9a7-81803ffdcc8b', 'payload': None, 'score': 2.9228303500476995, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '110142', 'document_id': '0c0caad0-5b9b-4e29-9b00-f8fe8ca67f27', '_node_content': '{"id_": "e9b3eb80-15c3-4921-a9a7-81803ffdcc8b", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/about/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 110142, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/about/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0c0caad0-5b9b-4e29-9b00-f8fe8ca67f27", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/about/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 110142, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/about/index.html"}, "hash": "2205fdc7ad55a5503fe4161561d62fc521e79b83830112596f3e78bb85f91901", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "026f6e0c-f365-4c4b-b6a8-a18543443d15", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/about/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 110142, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/about/index.html"}, "hash": "c8867de5212ea05dfe816194ae2c1ae12e4afe0503c97cfd255ba16ee3310716", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3698d27f-8ca5-4fe1-af10-7a37cafddac3", "node_type": "1", "metadata": {}, "hash": "142cbda5a66219a6c912017ec327883badb5052ee89aa14143a4a10e8b05876e", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2479, "end_char_idx": 6597, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/about/index.html', 'vector': '\x0ck>QnjE+z˼\x1e\x1c\x14\x18E=l\x04r\x1fX\x07;\uef32Q\x0fP(=(V\x17\x1b<8<>V\x07\x068\x1c2?E=\x12K&d\x13=Kj\x1c=Jo\x177/~\x1f*V]V=#\'#\x18%m\x1d=ɺvE<&QMK<7\\;\x01༖Ks(t\x18<\x14Abf\U000f61bd\x1e{<\x15w<$l\x12J,HEμJ;\x1c\x07T;2V;ԏ;j\x1a;Z{\x1b=u=\x05\x12k43:CM<\x07\x1c=\x17=Z.O꺸\x02%m<.M<+\x1c=\x1d\\a\x0b=\'j\x07G@<\x02lxR={:\x10~\x07=\nθu<\x07@,\x01\x05yg;5F;\\֘4=\x0c(!B{\x01)<[C4bV;#e=TB:\x11(8UZu<%~m(rFE\x0f\x18Mg\x06 m\x1d\xad\':<=aN\x83<>Qn\x03;\x12\x04=t\x01<.MP<#:g4<91\x01\x08\x06;\x06\x0eȌ=<\x02\rv|<\x10;ߤ<\x05^\x0cj\n|<] <\x0f\x19\u07b7p<]څ<\x16\x02䠙=[7)=܈<=݈<\x02\x1a\x03o=\x12Z&\x1a`ƼA5<:mC<|jgӻ}\\\x0cDe8F=S\x1a=\x13ܻC5\x16\x10=Z}AA\r̻[\x1e>=Te?:\\ܼM<}<@?c=8\x05wh$ -=\\7\x03ܻ\x1fӼч\r<\x12ٺ\x15\x02\x01=8\x1bΞ\x05Ag9F\x0fv\x0bs\x0f&<)JEѼ\x15덽;\x13\x08=\r\x19J\x1cIcO<\x9d\x0eZlN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 14.485480856092394, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{34021 total, docs: [Document {'id': 'test_doc:bb7965cf-f1f5-491a-8e9e-f4a445020834', 'payload': None, 'score': 124.20610177669315, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '14059448', 'document_id': '9062de26-2e99-4ef8-83be-fce73f42201a', '_node_content': '{"id_": "bb7965cf-f1f5-491a-8e9e-f4a445020834", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9062de26-2e99-4ef8-83be-fce73f42201a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "hash": "c83c94e9785880140b7941400c4b3a2a5f285c0c603ac9c7d1d52aa192026347", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba356a65-50a2-48fd-b1fc-f967a9e6d437", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "hash": "4bbbcd119b451fb66d451fc33a8695c59c970047e95a285666822117512c143a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8be234a2-0105-48a9-8e87-18cf52777101", "node_type": "1", "metadata": {}, "hash": "5f71991666afb3f94bb24ec11d8905fec45505977419b92e10bf8505e81e76f5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 43356, "end_char_idx": 48146, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf', 'vector': '-4&\x1d\x1cļ=T;G\x1bN\x0c<,\x19=\x15ȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{12796 total, docs: [Document {'id': 'test_doc:0565997d-7375-4185-8808-0f1a24a2d481', 'payload': None, 'score': 47.449331143376064, 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "0565997d-7375-4185-8808-0f1a24a2d481", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "56580115-5f97-4e69-b6a7-f269291b2307", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "22a7a22291de9eabc9a486ff1fd62fe59240c74137ab6a51af9aa5ec19b11bc4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "75f05425-a154-40db-973d-a626e4336626", "node_type": "1", "metadata": {}, "hash": "c4c8f853bca4407535489a9bcffea6643e05f489374b3504552b5af25b4c64ef", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 133934, "end_char_idx": 138672, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'creation_date': '2024-06-17', 'file_size': '6645174', 'file_type': 'application/pdf', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'vector': 'nbRr@\x02RPI:uN"<\x15Ӽh3;H#K=2X<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b6ż7F<-\x1b<:9Xٜ,d):-\x120T\x05Q?z\x18;\x02=\x05TbJ\x00<9a<<\'%\x03K8\r\x08<\x0eh2<4gR=\x04\u05fbM\x02@Cⱼ&м${$RI= 4;Ҙ<\x1f\x1a\x1f=X/K_\x0ehߏ\r=ٶ<5+;,X=\x10<&\x069=\x01$,0\x0f=PkUm@\x0bx\x07=(."ʺ$<.:缅q=<4o;C1|<*a<6;)\x0ed<\x17_L\x0b<\x1dL=R]+<>7R]+<<>=xrϼ7\r<\x1eX&=<\x01ʟ.\x04\x1c=\x1fr<\'F{:\rk1aB\\(-0B4\x10<|\x16;\x17F{\\&|\x16=`X=hJ<)j6b\x02=(껲{[/eJ/g\x14S\x18aa:1~\x0cP64kn¬<\x0b\x10;,n!\x00;9 H<\x10g\x14<\x1b;Ƽ?=i\u07b8;r#uu{ci<\x14<[v;\x13?=\x12\x13=#h\r"C=;Ԯ\x1bi;B\x19t=w<{\x1bXAi\x1e=E\ry<\x039*\x1d`<\x12[<Ͷ;{\x1b|9<\x1b9k\x1e7\x03{=$G\x04<\x01F\x12=Y\x06\r=yD:\x10l\x11<\x12<黼e3P~\x10r2Ы<\'#<@\x02;AºɁ<\x04<$\x16<\x154-\r=Kq!<0l< W* =&=\x19=~<(\r=VLц\x18I=ޛ<\x11Z\x13(;;;P6\x15;eO\x18\x102o\x13\x7fdˮ-H\x1c\x04iB=\\y<=c\x1cv:\x05۹-b$;im\n\x07=<\x15yUt;ױ;$\x12=~D<:^e(I\x04y\x19\x03YL:-5;\\Cq;\x05;\x1b\x10;ȼ&U\x1cVpG\x15ȿ)=z#:\x0c\rC<֬ hlM3R<\x1d\x1d8747<<䓽C\r\x15<_+炽U\x11;\x1fqY9<\x0e;;\x0ed]L<\x01P;\x0f\x04;|d\x1d=\x7f\x1aDZ<$<>nG}{|Ȼm\x1f\x00yl<\x10w!9T<\x1a;<#=:\x1bt5<\x7f9-\x07=d<){ƶGd 9=7R\r\x00_;\x0c(=B6C;X_,\ueef6/;;/\x00;9=\x1bH\x06<\\<\t=\x19(I)=\x0b<\x0bl\x11<-\x0e_uU<\x1f\x04<#;\x0bsy<5:즤;r+!=Q<+\x0cʼ\x072,?p\x02U\nRl=tzּw$<5;\x0e*\x07\x1dWǝ\x0c[N<~_4\x7f\x11<0\'\x07\x05\x18=BF;<&,=$\x12\x05H_z6<\x13M\x06\x10:Fy\x12\x12;\x11\x02a\x10,=\'aԻ֬<;O9%\x1f\x07ʼ\x10\x0c\x14\x16Ee\x0b=19=\x0285<\x13v<#h\x14\x1f=R:f:eK\x18|ռ<4\x04qѻ5P9\x7f0=\x119G\x15~"[q\t<\x0f=>X\x0b:A<\x0b\x19<|CP-<ؼ"=]L:2Fy<\x0c[N<\x15]P9<]*,n\x0fJ=\x1b\x14;1\x05;:]+F\x13=M j"ؼ\n;c$=\t)\x03=X}\x04=&\x0c!<\x14p\x04\x05\'\x1a@<8;fʼ%\x7f\x02F:O?\x01=^;;-O&\rx\u07fcdŻ\n\x00<7\\<;\x17r\'?¼w.F\x00gpg%ι\x1b;=&\x11$:i\x06)<\x1eļ-OE<\x1c\x04:\x0f\x10̈́< ]:O\n\x19(\t\\\x14)d\x16=*(\x08\x18tv(\x13=ھ<\x12\x0eƾ1/|kL<@<\x13O=\uf05b\x17;2\x03X#=7\x17\x16|T;r\x0cCػUf:K̈́;\x03pxKE=\x1a\x0e=1\x10<@<\x12\\<9\x1a;Լ\x1ew\x16:#<\x08=\x16hѧ<9V)<\x03b˽Mh`ѐ\t*<\x0b\x0b=!=Pd9-r^\x1d<\x1a;\x16=S\x07069I!n<\t=5<\'ɻ$<+=[ƍs\x1cJ<\x0e:\x16<\x0b{Ra;]ͼkl;VȽec#<|~K\x01Z<\x060;ߛӼL<\x01e9%9;\u058c=\x009i&\x0c!\x0ft4<\x11=QY\x18\x0e\x1eʫ\x1d\x1c4<\x114$=\x07\x03=Y\x02\x06<=b]=1<[+=3d:\x7f\x16ÕQ\x18cE\x07ϻlD9@=?-)Ҽ\'EӼ\x01P%]^=C4\x05\x02x=\x19\x12P=<\x14<\x15\x0c \x19M\x0e<\x7f=Rڼr=\t<\x02#=G;\x1f&:0<;o(00<[#\x06=.\x1f;^b\x06\x02<@EƤ<\x07n\x06=\x1bn\x07=\x1e="!<8\x0cۍU\x01W<2:x:9\x15l̟;{\x1dV皑l:NQ\x14\x0b?:\x1f<\t^\x7f\u07fc\x16\x1a&=\x0f>=7Ƽ\x1c<\x13\x14^\x1a\x0e0=g;<=R*|=ܷl\n[V\x0b\x01\x14-<<\x11n!;Ng܁<\x14-\x12=O<\x0c3;|\x1a\x06\x0b\x03\x01:\x15\x03;ߗl\x06\x1d x#=\x11\x0b 9<<5c#\x13{<\x16\x18һ(<\x1e<\x1dV119]\x02d\x1f=\x7f_=\x05!=\x7fBz?u\x04=\x13\x1c\x19;4\x055<мml5t\x01=\x1a\x12伢?Ԏ\tѺ\x7f=Qw\x0c>\x07\x0b7=\x02e\x03ȼ)Bռ4<7<\x14-<$<\x08\x00(M\x11ѢۍU9==%ۻ\x08TMm\x17&<~\x0b\'\x7fNU̼\x02=<\x05#惻\\y\x05\x17*ػ!\x06W~\t\x7fr.<\x10jv9i<\x0e\x1b;c8\x15=/LjRT;n\x1aϼ\x1c\x199<Ļs=SdɹIzT\x0c=9 \x0f-\x13<<=V\x06<<둇^u<9\x03<)ny9yR1ro"(=\x7f\x0f=#E\x11=\x1d<_\r\x1e鲼\x18&K\x03B=ľ<ͼUi/<И\x08I$f;|$=IQ=ϕ9`5<:Eu\x1d\x18v\x07=d\x0fp;\x0e\',ZӼ &:\x06\x19=\x02;-`8;+\x01F=OO\x08:df\x1ew !,;0\n<\x1e5@\x08=ļ<(\x1fO3A\x00<#\x01H\x0eC;c;\x06!\x17Ѽa;h;c<=\x11iS\x7f_nG<͋pNP \x1d=)\x18ܫ:J㻆=|\x17\x1e<\x19=\x0c\t)ɻ\n+js\x16\x04uj\x08bj\x1ddx̼p"<՛U;Py<ȑ"*\x04=2Ǔ\x16\rp=T<ި|ռY7;\nT+<vt\x1a<[;s\x0e\x101<\x1dd\r<|\x7fcA3$I]C:<9a\x03\x08́=\x08V)=\x169ϴn+F-<\x7f^<;I\n\t)Q\x08\x02=p\x00:z~-;\x1b\x04ۼ=e\x1f-:\x05\x0b^= 4;MrJ;uyj:.<\x11\x14v"o\x14*\x1f_ɰ\x17o5;<{G\x1e< O\x12\x1bV&<+\x14=(D<:ܾα\x0fZ;\x0f@<\x06kZD<+Z=Nϻ\x10\x1e\x1cۼb\x13\x1f<}\x05<"<4;)@M=F熽\x19\x1d;\x1b{7\x18Gȼ`b=\'\x1f\x12=\x08\x17V<;M_#3\x06W=\x0fQ<6A;<=\x11\x11!y\x01\x14ƻV;=*\x02\x10<;A=i\x05;\x00\r<0\\;ZM::<$0|љ< NռL<)=\x10\x1ec=\x1a\rG;\x17V}bif\ty\'[ZM\x0fNABn;\x0c=8\x0bר\u05fa}$Z<@=дmՒdF;D;B_<\x1c̼d#=%22=\x10\x1ec(;fh\x137=\x1d;\x1b=Bt;<\x19@\U000d0f02\x1b2<ތ\\q5Lͺ\x118\x031!=L*ө<<"=+%B<~(;t A\x03ZF^\\\x07(;t*л\x1e<\x15\x126<\x05\x15\x0c\n\x02=>3\x00f$A\x01\x16ݺV;be5r+;\r<<^<(U<\x02O̘<Ȁ.I5<`m=O\x18=\x15μB7<8\x0b\x193ϲ^\x0b(Ub=&1H\x1e=p-$PgTj<\x04\x1c=ߔ>Fc=b!<(0\x1e=b<\x14Ki\x05\x15="\x02rs"=D8\x08I{h7\x04\x1e\x1e^\x1a\x0b>V;~(\x04=\x19(=$A\x01Օ\x1dn祼ȻO݄=$yWO\r<:\x1e\x19<\x1cĻ\x18\x01=J\x1d\x1d=\u05f9<~\t=M\x13\x1e\x19C\x12<\x10', 'text': '| | --- | | | --- | --- | | | | | --- | | | --- | --- | | | DKU University-Industry Alliance holds first meeting DKU, in partnership with Kunshan city government’s DKU Development Promotion Center, hosted the first DKU University-Industry Alliance meeting, focused on collaboration and integration in the Yangtze River Delta. The conference brought together DKU scholars and entrepreneurs in finance, automotives, biomedical science and advanced manufacturing in the region to discuss how industry, academia and research can work together to accelerate collaborative innovation, and empower high-quality development. In a roundtable discussion moderated by Xin Li, dean of graduate studies, participants talked about the major benefits of university-industry collaboration, as well as the best models for cooperation and next steps towards facilitating them. | | --- | | | --- | --- | | | | | --- | | | --- | --- | | | Arts and Humanities Division holds its first Major Declaration party\xa0 DKU’s Arts and Humanities Division celebrated its student body with its first Major Declaration party on April 23, providing an opportunity for students and faculty to relax and have some fun before finals week. Both remote and onsite students enjoyed music, games and performances, as well as unleashing their creativity through graffiti art. | | --- | | | --- | --- | | | | | --- | | | --- | --- | | | | | --- | | | --- | --- | | | Office of Career Services launches off-campus mentorship program The Office of Career Services launched an [off-campus mentorship program](https://dukekunshan.edu.cn/en/event/mentorship-program-2021) for the undergraduate Class of 2022, in April. Mentors with varied professional experience are selected from DKU, Duke University and Wuhan University alumni, and paired with students to provide guidance on professional skills and career planning. Students are expected to interact with their mentors three or more times per semester, including face-to-face meetings, job shadowing or remote guidance. | | --- | | | --- | --- | | | Executive Education provides training to Xidian University\xa0 The Office of Executive Education provided training on international liberal arts education to more than 40 mid-level administrators from Xidian University, from April 25 to 28. The event was the first training program of its kind designed for a domestic university, and covered a range of topics including curriculum principles, majors, student life and faculty development. | | --- | | | --- | --- | | | | | --- | | | --- | --- | | | DKU and NYU Shanghai share experiences in teaching and research A team from NYU Shanghai’s mathematics department visited DKU to discuss research, further study and signature work with faculty and students. During the meeting, DKU professors Marcus Werner, Dongmian Zou, Shixin Xu and Xiaoqian Xu shared their research experiences, and junior students Zikang Jia and Yechen Wang talked about their work as undergraduate researchers. | | --- | | | --- | --- | | | | | --- | | | --- | --- | | | | | --- | | | --- | --- | | | Campus Stories | | --- | | | --- | --- | | | DKU releases shortlist of mainland Chinese applicants for fall undergraduate admissions DKU concluded its assessment process for mainland Chinese applicants for the undergraduate class starting in fall 2021, releasing a shortlist of applicants offered admission. The results were posted to the Slate platform on April 29 and emailed to all shortlisted applicants. In addition, the Scholarship and Financial Aid Committee awarded\xa0scholarships to 281 shortlisted applicants based on assessment scores, including 22 who will receive full scholarships of RMB 680,000 (a four-year tuition waiver) and 41 who will receive half scholarships of RMB 340,000 for their undergraduate program.', 'ref_doc_id': '8120162f-4d45-4620-8edd-6add505664f3', 'doc_id': '8120162f-4d45-4620-8edd-6add505664f3', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mailchi.mp/dukekunshan.edu.cn/dku-newsletter-may-6-2021/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:06951253-d02e-44e7-8892-5651e032277c', 'payload': None, 'score': 0.8889641798811051, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '209145', 'document_id': '8fa4feda-fd3e-4c98-a310-8019131fa570', '_node_content': '{"id_": "06951253-d02e-44e7-8892-5651e032277c", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/about/faculty-committee/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 209145, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/about/faculty-committee/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8fa4feda-fd3e-4c98-a310-8019131fa570", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/about/faculty-committee/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 209145, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/about/faculty-committee/index.html"}, "hash": "5606f1e992f373381912ccbe672697178ab9bbee3c0af1122136e031416ec222", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2625bdbd-5ae6-4060-9bb9-4ecb2a46d645", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/about/faculty-committee/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 209145, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/about/faculty-committee/index.html"}, "hash": "2b74e8d0595a89efc998247f69e14d9be4934078efb859bf08d3a83f5c4aebf6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ca9d1c71-d1c7-415d-af86-b3b8b7c358e8", "node_type": "1", "metadata": {}, "hash": "a2536b2367b778ff2107bfd4871eca5fe22890edfe322a6289f4ede09005a9dc", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 4230, "end_char_idx": 7504, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/about/faculty-committee/index.html', 'vector': '\r\x0f\x17\x12gxҼNW;<\u07ba&$98<\x0bf=\u07b8a\x07=Ǒh+A=v*l;\x0c\x03;<\x06\\\x04=\x7fӻ,E\x10dм,9F7=\x16r\x17A=\x14;\n=\x0b:f=\x16=3A<,/hؼh=`=wL=3=\x0cԫE`\x01S\x06:\x07>\'I=I*,ɻ\x15K=<\x05*/<\t;jF\x0bf\x1c\x0b=BeS_Ӻ5$\u07fc\x1c\'%<\x07 u\x01at=<\x01\x15=\x14`ϼQMz\x14;1\x0b+=Ôu=F9o\x1cBl5:`^o@\x16<\x0fɡRM4;\U00061f3e\x0fۼ,<&T:bE<\x12>Ƽ;D}Q3<]EJ.:=s_Մp<뼺\x08<M;\x05I|I=ρ\x17Q<92\x1f=}\tNz\x1c98\x15+*9\x06@M=*9<+&TR|Oug\x10\u07fc"\x0c\x18`F=fٺ<8#\\c\x16꼝(\x0cK\x1cU˹<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0bybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 22.017761321393312, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 16.909464721736892, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -[2024-11-22 07:54:32 +0000] [1108997] [ERROR] Error in ASGI Framework -Traceback (most recent call last): - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/task_group.py", line 27, in _handle - await app(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 51, in __call__ - await self.handle_http(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 83, in handle_http - await sync_spawn(self.run_app, environ, partial(call_soon, send)) - File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run - result = self.fn(*self.args, **self.kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 113, in run_app - for output in response_body: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wsgi.py", line 256, in __next__ - return self._next() - ^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wrappers/response.py", line 32, in _iter_encoded - for item in iterable: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/flask/helpers.py", line 113, in generator - yield from gen - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/backend/agent_app_parellel.py", line 47, in generate - for response in responses_gen.response: - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/core/dspy_classes/synthesizer.py", line 132, in __iter__ - for r in self.llm_completion_gen: -ValueError: generator already executing -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{2099 total, docs: [Document {'id': 'test_doc:d363a1cb-9c5e-4fb1-9d69-efdfe6556773', 'payload': None, 'score': 719.2383613881026, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '508476', 'document_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', '_node_content': '{"id_": "d363a1cb-9c5e-4fb1-9d69-efdfe6556773", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5eed989b-3617-4479-8daf-3dc7f14d35ee", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "hash": "1531961555db840cdc91ded673cff60dc58a823e4db217e00c42ad46672df04f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4fe06d28-ef28-45a2-9613-f1128c83acba", "node_type": "1", "metadata": {}, "hash": "810202455f44738a4605524507fef8bf9fccc039bed143acfb4bcd157886b452", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 4710, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', 'vector': '@BGp\'drp\x04}̼hԻ5\'\'$q=w;WX:B\x7f\x1a;i\x14=0\x1a2fo\x1dY\x04ņڻwts}ݹ6=S\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 337.1156939543695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=F\x10>s\'<\x13\r@;\x16;#d=WV7>\x15"=nJ;\x12{]\x14V\x07 \x02\x03@:Bv\x16=;s<\x03f:ơ;<@85D!\\e7\x06\\RĖO;\x12?\u07fc\'ռ\x16~;Uv;GI4\x1fuN=k>w..\\R\x00<\t¼`*!<\x03\x00+<(@=Qw;<,\x13&=/Y\x04\x0e\x01=QЛRx\x05,p"\r\ue89f<:\x18l#2=;\x16<.;u#vF\x15\x02mul;\x02\x7f;R\x07w;==<Ƹ\x11\rWvSw;X¼.0<\x02;t0=CC@<<\x05\x0f\x1d7<\x15"=\nE<\x1c9=\x14\x19PuN\x06FN/&#aȇ̠<@<\x03\x14=\x16S=\x15;\ue89fe|*l=\x15Q~B\x05\x04\x07=7\ue89f\x06<\x11㻲;;Ӻ0ϼp\x19\x17ykE\x16-δ;F:I?S<:`y<1v|}77\x17<_c\x0f˼x\x1c<\x1a+=/\x1d6\\\\<\r=;RƼOz;\x04\x07=;\uef3d\x01~S\x03\x14<;M;;<<^<\x0f\x04=g<*l<\x12?_5Ai\x14<0ϻw\x15\x05<}i\x06Y;{=ˢS\x13d\x08`V<\x1fA=\x04\x0eW*(=:xlN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 14.485480856092394, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{29792 total, docs: [Document {'id': 'test_doc:ab988190-695e-45db-bfb4-3a599f75e2b2', 'payload': None, 'score': 19.687552465811333, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3957701', 'document_id': '276ad839-68f5-4bd0-90b2-cd068f1f49a8', '_node_content': '{"id_": "ab988190-695e-45db-bfb4-3a599f75e2b2", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "276ad839-68f5-4bd0-90b2-cd068f1f49a8", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "hash": "ef9e6ec93a2d2441740cf40e7eae5e92ab06e0c031b6d9d8ab4b51fc01add46a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2285, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/ug_bulletin_2023-24.pdf', 'vector': 'kV\x19yi\x0f:>6ż7F<-\x1b<:9Xٜ,d):-\x120T\x05Q?z\x18;\x02=\x05TbJ\x00<9a<<\'%\x03K8\r\x08<\x0eh2<4gR=\x04\u05fbM\x02@Cⱼ&м${$RI= 4;Ҙ<\x1f\x1a\x1f=X/K_\x0ehߏ\r=ٶ<5+;,X=\x10<&\x069=\x01$,0\x0f=PkUm@\x0bx\x07=(."ʺ$<.:缅q=<4o;C1|<*a<6;)\x0ed<\x17_L\x0b<\x1dL=R]+<>7R]+<<>=xrϼ7\r<\x1eX&=<\x01ʟ.\x04\x1c=\x1fr<\'F{:\rk1aB\\(-0B4\x10<|\x16;\x17F{\\&|\x16=`X=hJ<)j6b\x02=(껲{[/eJ/g\x14S\x18aa:1~\x0cP64kn¬<\x0b\x10;,n!\x00;9 H<\x10g\x14<\x1b;Ƽ?=i\u07b8;r#uu{ci<\x14<[v;\x13?=\x12\x13=#h\r"C=;Ԯ\x1bi;B\x19t=w<{\x1bXAi\x1e=E\ry<\x039*\x1d`<\x12[<Ͷ;{\x1b|9<\x1b9k\x1e7\x03{=$G\x04<\x01F\x12=Y\x06\r=yD:\x10l\x11<\x12<黼e3P~\x10r2Ы<\'#<@\x02;AºɁ<\x04<$\x16<\x154-\r=Kq!<0l< W* =&=\x19=~<(\r=VLц\x18I=ޛ<\x11Z\x13(;;;P6\x15;eO\x18\x102o\x13\x7fdˮ-H\x1c\x04iB=\\y<=c\x1cv:\x05۹-b$;im\n\x07=<\x15yUt;ױ;$\x12=~D<:^e(I\x04y\x19\x03YL:-5;\\Cq;\x05;\x1b\x10;ȼ&U\x1cVpG\x15ȿ)=z#:\x0c\rC<֬ hlM3R<\x1d\x1d8747<<䓽C\r\x15<_+炽U\x11;\x1fqY9<\x0e;;\x0ed]L<\x01P;\x0f\x04;|d\x1d=\x7f\x1aDZ<$<>nG}{|Ȼm\x1f\x00yl<\x10w!9T<\x1a;<#=:\x1bt5<\x7f9-\x07=d<){ƶGd 9=7R\r\x00_;\x0c(=B6C;X_,\ueef6/;;/\x00;9=\x1bH\x06<\\<\t=\x19(I)=\x0b<\x0bl\x11<-\x0e_uU<\x1f\x04<#;\x0bsy<5:즤;r+!=Q<+\x0cʼ\x072,?p\x02U\nRl=tzּw$<5;\x0e*\x07\x1dWǝ\x0c[N<~_4\x7f\x11<0\'\x07\x05\x18=BF;<&,=$\x12\x05H_z6<\x13M\x06\x10:Fy\x12\x12;\x11\x02a\x10,=\'aԻ֬<;O9%\x1f\x07ʼ\x10\x0c\x14\x16Ee\x0b=19=\x0285<\x13v<#h\x14\x1f=R:f:eK\x18|ռ<4\x04qѻ5P9\x7f0=\x119G\x15~"[q\t<\x0f=>X\x0b:A<\x0b\x19<|CP-<ؼ"=]L:2Fy<\x0c[N<\x15]P9<]*,n\x0fJ=\x1b\x14;1\x05;:]+F\x13=M j"ؼ\n;c$=\t)\x03=X}\x04=&\x0c!<\x14p\x04\x05\'\x1a@<8;fʼ%\x7f\x02F:O?\x01=^;;-O&\rx\u07fcdŻ\n\x00<7\\<;\x17r\'?¼w.F\x00gpg%ι\x1b;=&\x11$:i\x06)<\x1eļ-OE<\x1c\x04:\x0f\x10̈́< ]:O\n\x19(\t\\\x14)d\x16=*(\x08\x18tv(\x13=ھ<\x12\x0eƾ1/|kL<@<\x13O=\uf05b\x17;2\x03X#=7\x17\x16|T;r\x0cCػUf:K̈́;\x03pxKE=\x1a\x0e=1\x10<@<\x12\\<9\x1a;Լ\x1ew\x16:#<\x08=\x16hѧ<9V)<\x03b˽Mh`ѐ\t*<\x0b\x0b=!=Pd9-r^\x1d<\x1a;\x16=S\x07069I!n<\t=5<\'ɻ$<+=[ƍs\x1cJ<\x0e:\x16<\x0b{Ra;]ͼkl;VȽec#<|~K\x01Z<\x060;ߛӼL<\x01e9%9;\u058c=\x009i&\x0c!\x0ft4<\x11=QY\x18\x0e\x1eʫ\x1d\x1c4<\x114$=\x07\x03=Y\x02\x06<=b]=1<[+=3d:\x7f\x16ÕQ\x18cE\x07ϻlD9@=?-)Ҽ\'EӼ\x01P%]^=C4\x05\x02x=\x19\x12P=<\x14<\x15\x0c \x19M\x0e<\x7f=Rڼr=\t<\x02#=G;\x1f&:0<;o(00<[#\x06=.\x1f;^b\x06\x02<@EƤ<\x07n\x06=\x1bn\x07=\x1e="!<8\x0cۍU\x01W<2:x:9\x15l̟;{\x1dV皑l:NQ\x14\x0b?:\x1f<\t^\x7f\u07fc\x16\x1a&=\x0f>=7Ƽ\x1c<\x13\x14^\x1a\x0e0=g;<=R*|=ܷl\n[V\x0b\x01\x14-<<\x11n!;Ng܁<\x14-\x12=O<\x0c3;|\x1a\x06\x0b\x03\x01:\x15\x03;ߗl\x06\x1d x#=\x11\x0b 9<<5c#\x13{<\x16\x18һ(<\x1e<\x1dV119]\x02d\x1f=\x7f_=\x05!=\x7fBz?u\x04=\x13\x1c\x19;4\x055<мml5t\x01=\x1a\x12伢?Ԏ\tѺ\x7f=Qw\x0c>\x07\x0b7=\x02e\x03ȼ)Bռ4<7<\x14-<$<\x08\x00(M\x11ѢۍU9==%ۻ\x08TMm\x17&<~\x0b\'\x7fNU̼\x02=<\x05#惻\\y\x05\x17*ػ!?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 49.6279794043577, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;\x16\x08ڸjo;L=|\x1b\x12~<4vB]ȞI\r\x16Ǽ\t\x14%jF<=3L6\\ 6=3G㼄d\x0fAm=)ϼM\x14gX\n>G<仒\x0c;=\x1d仟3\x13HS0bc=u<\x00\x01p0Iߴ!\x11\x16=\U0008f53cV2<\x073\x0f\x0bЎW<\x1e\x05b<\x164˺k\x1d=ը\x14=l<9~B4#\x18\x15V\x14`r=\x15=.d-\x0f=\x19=If: \x18=\x01]uY抻l\x18ʻ]3[P\x11& v=\x1d;E-uG0=b\x0e=?8@C(5<押 t;;\x1e5;=8Q;:\x14\x11Ѣ;8=NX\x129dwt\x01=OS?=ŦB=ŶIߴqO)0]\x03v:l۞F?=\x033\x150\x12=VCMI\tR<<<<ٽ=`5\x08/x<[*`a\\dDnR<\x04=\x18<%S\t;Iߴ{=\x11\t{\x013;}?\x0e\x1c<%b|;@N5^nqO\x14$\x1e;x\\z,=|\x1b;9A=ڮ<^<\x01;e#i<_1*\x18;:<;R\x01Ec\x00\x07 2U7d\x11={\x051B;+\x01\x1f=(rq;\rt\x07=[:\x03Ey\x0fkF=<7);20茼M\x1f\x0c=^\x10E<ǖü>\x07a3nf\x82nfXȃ=S\x15\x06뻄=$r\x004\x13\x1b|(nf\x02*&);\x13_<\x0bʻG7\x0f\x05=\x0c!:A\x0b=B;n\x1f;=q<0\x0b9؉;m\x16- \x1a_Tp\u07fcv)W?;c\x19\x16B=%HM\x14=S;<;|A4=\x19<\x1fͼz?;\x177\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 45.65767402992056, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u6=Eƺ\x08P=aQ0=\x08r<\x07\\;\x07M=\x04ȇ9\x05\x7f<\x08u\x05/(\x06t5Z\x13<\x08q<Բ\x08:ivV\r\x7fD&j]<\x05\x03<-<\x07U;\x06?<\x05\x0fAۼ\x05$>\x08<\x08H\x08\x07c<;P\x05,$:=\x07Ũ\x12\x04S\t&=\x05\t<\x05h<\x06\x06"?=\x05?#<\x07LiD/\x0eu:\x1b;M\x07S;W^i\r\x1c=\x1biQ\x01=\x0b\x10"\x0e=pY9ZN<"@=f]\x14=Q;;IkA\x0fD˻%\x1cɼ\x0cPS\':s\x17\x03\x13:\x17=\x1dJ4=T<\x07H==0\x0b=\x0f\x16;\x12\x05\x06\x1f\x0fJJ",梅;\x16=z<Ú<0LAza6aʅ=D`Hk&: 4#6=\x16`}݄;:?&<\x03;.\tGW=\n3λO^TCۿ<\x02?=\x0f\x1b("\tb*!\x1b\x01\x1a^;b;Xĺ53\x16<Ú;\x04\x04@$;Q!^\x16k =z\x017<)<\x17[cܻH2=\x11U\x06j\nbuP\x1f(]9\x14c\x1d<\x0c;\rּ\x1dM<\x07ż\x08T<\x0b<\r1@\x05=|ƻr\x02=Ik*<&^9Ӂ<ˇ<μM\x7fHp\x08;`h;\x0c=\x15x\x0175ƻc\t;=6T:7\x14{I;B<6=Ȧ}\x1ek&:EU\x06e.\x18;\x12<.7\x16\x0f\x02a۽ϼ\x18\x05=>?=q<#\\<\x03¼\x12obu:R\x1c*;#=^;З2f9><;t \x18\'lp<>ۿ@zԠ|g\x1f\x05=r;sv~= o\x0cGp@<^1\x15Qs`y;Z\x02=\x19=\x1d\x04=<ب1=9즺Y,Kܾ\x0f=<&\u07bb\x03=\x11\x1f\x13\x1a;6,\x0fo\x08;O\x12~\x10:\tH=\x14G=X\x02\x18"\x0bm,?CB)=e<\nֺ<\x07ft<\x1f\x16<-ʌ=;-\x14\x04;TC:\x1deʼZ;\'kڼ}NP\'+=;i"D\x04Dq;\x0fo=\x1eWuc!㼝\x13;1$%;O\x04=\x1b\x07=`;:;e<\r\x15ؼs\x05M\x02vB=\t#<֝B<7F\'l>:\x00\x0c=z!=NW=̼\x12<\x12I=e˽¼OU\x1b=;\x1cB"=C=ӻ>\x04vS; \x1a73E^<}Չ<$]?u(=\x0b1\x13\x1f&W*+ +c=κZ;tI\x04=;,<}\t;qĊ;\x0fI\\=\x051o2⻌R\x05=\'kڼ"I\'\x13<\x1f=f\x04=S=\xa0\n\n\n\n\n\n\n\n\n Frequently Asked Questions \n\n\n\n\nWhen your student comes to Duke, there are always questions about university life, including selecting the best dining plan. To help select the right dining plan for your student\'s needs, check out the plans described in the "Plan Profiles" section above.\n\nIf you have questions, contact Duke Dining\xa0at 919-660-3900 or\xa0[dining@duke.edu](mailto:dining@duke.edu).\n\n**How does the First-Year Dining Plan work?**\n\nThe First-Year Dining Plan is designed to enhance the \nundergraduate experience. Centered around Marketplace, the main East Campus dining facility, the First-Year Dining Plan provides a wide range of choices and fosters a sense of community through dining.\n\n-BOARD PLAN: Students receive 14 meals per week for dining at Marketplace as follows: \n-5 breakfast meals (1 per day, Monday-Friday) \n-7 dinner meals (1 per day) \n-2 brunch meals (1 per day on Saturday & Sunday) \n-All other meals are purchased by way of Food Points and can be used at any on-campus location,\xa0 Merchants-On-Points (MOPs) vendor, food truck vendor, mobile-ordering, or campus convenience stores.\n\n-If a breakfast meal is missed at Marketplace students may still utilize that meal at The Skillet (Brodhead Center) by 2pm, at Trinity Café from 8:00am-12pm, or for lunch at Marketplace from 11:30am-2:00pm. The swipe equivalency amount is $5.70 and anything over $5.70 will automatically be deducted from the student’s Food Points.', 'ref_doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d28b1dee-0129-4bff-aa4b-713d1852ad80', 'payload': None, 'score': 19.888226658218823, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '81625', 'document_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', '_node_content': '{"id_": "d28b1dee-0129-4bff-aa4b-713d1852ad80", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4b7d8b1e-ea97-4931-9d28-4f74876bafc0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "06d84dfad93dc9440c05a73eecc088556df596178b7b4c3735ddd6cf91a1abea", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b9804bb2-aed2-4e49-8177-a1042b494e41", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "ab6de2f8d496838bc4d558fab517f7136b2dab6b3a3bbbade681d455f1e01718", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43aa2b93-9f7d-442d-b104-cd44eb2584e4", "node_type": "1", "metadata": {}, "hash": "2822754110ae2cd497d63424e85ca2d3e1d42008c583c1b1eccae8d784c2a4a0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2882, "end_char_idx": 6756, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', 'vector': '&ރ%\x07gX\x7f|UCߙb<\n \x02\x17S<)=b\x11Iǀ!\x0c=M;>\n=Ӓ\x02+ î\r{ȼ\x10<]<+=<\x1cMw6\x1d<\x0c<\x03="<&\x03<\x08\x1cN\x11);Ct;\x02ma5\x18;(.;,9;:ޱ&=H:)\x06\x06@wJ\x03\x7fɦ\x14gu\x08<)v=ˍs\x0b=\x1b<\r_Ly;\n\x02|;y<\x12"=).<\x1c%=0l/K;\x1d=BB5t:;<\x18\x0e\x13=4z05\x0fj\x13\x14\x0e+F=y\x19l\x0f=yHg9\r\x1c\x1a=ѭ\x1c<(@\x08:\x08\x0f<\t4\x02V<\x1aOxN~/u1\x17GZ\x12g\x1f\r_=GF~g9C\x04f\n^#\x0e\x188TQ`a5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհa5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհ<\x08,g=Dd;b\x18=\x06a\x13żzv8\x15\x10"=k\x1a=h|r\uf500hٽ\'=+;Cs\x15\x12R\x07=>=Z03;\x06=\x15F=\x11=\x0b<\x13-)7\x1e|;Cw\x16\t8\x11~=\',<\x1c~ؼZ03\x05t8;\x18=5"<+\x11#Qf<)\u07fbrX`z?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 49.6279794043577, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;\x16\x08ڸjo;L=|\x1b\x12~<4vB]ȞI\r\x16Ǽ\t\x14%jF<=3L6\\ 6=3G㼄d\x0fAm=)ϼM\x14gX\n>G<仒\x0c;=\x1d仟3\x13HS0bc=u<\x00\x01p0Iߴ!\x11\x16=\U0008f53cV2<\x073\x0f\x0bЎW<\x1e\x05b<\x164˺k\x1d=ը\x14=l<9~B4#\x18\x15V\x14`r=\x15=.d-\x0f=\x19=If: \x18=\x01]uY抻l\x18ʻ]3[P\x11& v=\x1d;E-uG0=b\x0e=?8@C(5<押 t;;\x1e5;=8Q;:\x14\x11Ѣ;8=NX\x129dwt\x01=OS?=ŦB=ŶIߴqO)0]\x03v:l۞F?=\x033\x150\x12=VCMI\tR<<<<ٽ=`5\x08/x<[*`a\\dDnR<\x04=\x18<%S\t;Iߴ{=\x11\t{\x013;}?\x0e\x1c<%b|;@N5^nqO\x14$\x1e;x\\z,=|\x1b;9A=ڮ<^<\x01;e#i<_1*\x18;:<;R\x01Ec\x00\x07 2U7d\x11={\x051B;+\x01\x1f=(rq;\rt\x07=[:\x03Ey\x0fkF=<7);20茼M\x1f\x0c=^\x10E<ǖü>\x07a3nf\x82nfXȃ=S\x15\x06뻄=$r\x004\x13\x1b|(nf\x02*&);\x13_<\x0bʻG7\x0f\x05=\x0c!:A\x0b=B;n\x1f;=q<0\x0b9؉;m\x16- \x1a_Tp\u07fcv)W?;c\x19\x16B=%HM\x14=S;<;|A4=\x19<\x1fͼz?;\x17<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:110a63df-8b02-4822-b4a9-617ebfd42f5a', 'payload': None, 'score': 271.56002835738695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "110a63df-8b02-4822-b4a9-617ebfd42f5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc1f8a7f-baaa-4dbb-b662-57f13800fc6d", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "42c284bcff1c342571f19d5285c5bdf0c3c2d95e0c64042007d2e2532fa12fcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44f66e02-b2b9-4265-99c9-08ed4732fef3", "node_type": "1", "metadata": {}, "hash": "297fe55bd95dc0e162681bb957aa6d46eb3c30c959b454474a848f22dc63074d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1601297, "end_char_idx": 1605766, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'B\x03sL͜\x13珼|&&a\x11y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/ݳݳ]K_<\x01l<ܵ+<2=5Ǻ\x07\x0b8-\x19hB\x05\x10(\x19Vs<1\x0c<>\u07bcp<\x00g==*\x7f:Ir;$9Vk;\x04?hJ<[pU\x181=2!|>\x10SQ\r异\r\x0e=d`\n\x01p]=\x02<\x1c\x1e>;\x0c\x12=fR<]˻><\x15\x03\x0fR;\x18\t=mGUFѼrI=+H<\x02=i¼B0cD\x11bjjXYZ(=\x0f\x02\\Ԭ:V<\x1f:\x03S\x00=!0\r\x1f溼\x1c;\x07\x12\x14;\x19\x03;7=\x7f\x1eU;ĒR<\x16<<$=\x0b˼A~\x10;ٟ;M>^=C\x19<ؼ+T\x13<=/;q\x18=\t.C6=Ur<~;\x1b\x15=^r[\x12?hʼRWk<`<\x05҄ =\x0eu\r6\t<% 9YZB<\x19}H=\rv;ۆ!\x1a/4< &=\x1cL<<ʐ\x17<\x19V;e,:\x07<&;\x1e4O;9;7t<4M:3=JK\x0c%\x15=T?\x139t\x08+\x11=wQ!}\x1d=+ȼp6\r\x0cmG =<\x071\u07fcJE\r:\\"A0Ycd=?h\x15==X1⻈}V\x06Cs\x7fŻo^|<)<\x05.\x11fP=W\x06^VB<#>?<,_=\x1fA\x16;<?\x15\x08\\<\x10\x10;N <ɘ<ޑ\x02=\x13 ^\x16%]\x14;^4\x1b6\x1bPoћ/P<T;b<ڽ\x1d%="5<\x165\x16\x1d\r/\x0cU<ּ6\x16=j\x19<9`Y=\x17=L\\Q=<<_X<\x08hԼ\x187/\x19T\x1d:`Mh\x17\x18ᦼ\x12 =\x1b`;\x1c=\x1e<\x18M<+\x17\x0bMɄ\x00\x04<:ټgy:E;DR\u07bc2!\x00<˲\\\x0e\x17<\x1cOS=,\x10\x05\x06"\x01TK;:<\x1dջ=Fq\x02PH\x0ew\x0f\x17-<\x11=\x11;\x1bͼ\x1b< =BֻI\'\x0f;$\x01<ഄ\x19U7TK=2ӂ<¦\U00100f0f<*F\x06e\x08H<\x163:M\x1c?뻢Ï\x1e=\x19\'<+ڹÏ\x1e=T\x1b=x;+\x17\x0bn\x12\t\x14=%*<~ج+S\rBV>6ʻ\x11=lU;\x0bl\x1f?\\\x1c1R=\x0c<\x17B\x1eU{<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b獜VX\x18H\x08;w#*\x16vLp,=7#\x15NR>=\x08\x02\x16=\x17H<\x08י;\x16Ƿj:2<1;=96Uʼ7;5λ4\x1bڼ(hk\x10]*=\\;Hi6<&hl=r};u\x03M=gM";7<\x18%=4\x1bZ<ȍU_Ӿm\x18=nC5\x1d;y4=sHe<*\x167˜U<\x08\x11y4\x04<\x0eU\x10ȹ֦;9m=V=-;\x16d1Cw:so;,s\x167=Y\x00:}<\r;HR}\x157;\x12WE<\x1aw?=h<( <;A^\x7f#<4b[=uϺ\x19h\x03&(\x10=9\x08\x1d\x1c\x14f\x173VY;\'\x1c#p=r<6f-^\x15֊5<َ):=Ӻ3;8[9\x1aY2;h\x12=碌J\tM\x15\x0cмSb<4\x1a<\x17H4bۻ\x7fd \x1b\x03\x12\x10\x12\x08=Hz<<$K\x0e\n4A#;o\x03=\t\u07fcG)<<\x14z\x06=vƶ뺭X;\x02;\x05GӼ\x0bm\x06\x1dU<{\x15̼\x05t\x0e\x1abK=>2\x08E:/?}@<\x19=\x1d\u07bb\x056=\x043=*6<\x17MQ=\x13+;|Ղ;O缚Tu{=0=tp\x0c=8n<)a\x7fou<\x0e==3Ox|\x08;C\x05=7\x1bڻ?Y?h<\n\'Q;Wg3<5<(|O?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 42.94798667588227, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;\x07\x7fJ(;Y\x15=)\x12\x10<\x17\x1e\x13];\x15\rO$=w\x08\nMl\x17<\\gz;)=<+\nɰĻkEY\x04\x19<+\n!\x0f;\x1d\x02<[\x08;\x0c0\x7fD\x7f<ڄZXY<<\x08p<\x0f\x15\x0eRM<\x1e]\x1c"Br;<\x12=\x0fʀ>3I<ڿ;,=R=~<\x03$;D;\x00<\x100+==\x0faG\x17伆u¼\tBҍ\x14=r8=$ў<\x0b:<\x18\x01Ñ=G\\\x025M<\x02!19;LrP\'ɼ\x124^;\x00;<|\x16迼߾;XD\x07\x0b:\x1e\x1dW\x11켺I\x1d.8^G1X\x01\x13N;$鼦f\x13\tͻ\x14)=\x98,R\n=$/;:+3:raB\x04=ԝ\x12iO&4\rQ= A^킺V<\x1d=\x1eԼ\u05ec\x11;{)f=cӺ7i;H<ټ.\\p<+6=^\x02=2/R&Z\x0e=<^\x02I<\x18G;\x18мo2PL:T\x10z?\x18=B\x1b<墓r=\'g\x1a=\x1dD=H\x19<[C\x10=;\x1c;\x0c^\x155l\x04=\x0b=W\x17:\x1d=9\x07\x080T>^=M<ˣ[S#\x1b =\x0f;*~=˟<\x1f\x05KټVz\t\x02=&t<ֵ\x1d=\x17N\x1e_b"z<\x05Y0<^,b\x1e=Р\\<\x10\x00E@Q^\x17nD\x0eE=\x1f٦㻘՝til#Qjy\u07bc\x06\x04=6E\x0e=MZ;u\x16\x1f\t%&ti<%\x0fz;Р<`\x02켊ߛ<\x13\x1a_]\x1dQ?\x05y<;N;\'\x12:s!<\x19WVw<<)n<\x0b͏\';3<;\\~\x18?<3\x0f<\x0b\t$k\t=@\x16\x1f=;¼F/\x0bp\x11:}z~\x11:QFT;c\x0f\x0b`;ψ=5-G<%=tf\x0fq99\x1a=\x00\x18=.=o2;mh,b\x1e\x1dļDZu=<\x1eO\x02\x1c%\x1dw\x13=Tc+jJ<(;\x1cE<\x06<\x0baBaK}j;p;x\x07UriTc+=}j<\x1b<|:ot<\x1cE:\x02<ʛ\x06̸\x10=\x07<\\<\n=Z\t\x0c\x1br7<:\x02=}\x1f=\x0fq<\x06(ý\x0b<Ԅ\x0cr=>c\x00;=Ȼ\x14}Ȼ.8\x00\x18\x03\x0c2>Z=S\x16#\x19\x16}<=E~\x0f댹.9j\x18=Ӹ\x1d<\x0eB=Y< #Ӹ<\x04#\x00UFƎ\u177c:d%;\x1a42\x0b==H=\r\x0by;4\x0e21&;\x0fּ.8\x00;\x11=q<,P3;戼\x1a=<\\<\x12l\\\x00$<\x04C\x11=:\x1bS i<#l=<}QL<]\x08\u07bb}<#\x00>銼|\x15=PC\x15\n3=/u=%0ռhu\x1a\\;#=8r7=\x0fq;A=\x17g\x17A:q\x00L\x13=W=H\x05n\x1f;:O<]\x08^;|\x15ؼ.8<>\x16\x07\x13fh3\x06\n9;f\x13\x15I<2<,;\x02<5y<\x05\x01<٤h=\x1f="0bJX\x012F\x03cO=sp<(\x1d7;\x02:.9@_0\x1eܐ<\x0f\x1a*=\x0fc\x01\x02z\x1e\x106w:\x1f>ؼn9', 'text': 'ISBN:\n\n 9781501384516 \n\n\n OCLC Number:\n\n 1346848149\n\n\n\n Other Identifiers:\n\n British national bibliography: GBC392749\n\n\n\n System ID:\n\n 011128061\n\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781501384516%2FLC.JPG&oclc=1346848149)](#)\n[Request](https://requests.library.duke.edu/item/011128061)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011128061/email)\n [Text](/catalog/DUKE011128061/sms)\n [Cite](/catalog/DUKE011128061/citation)\n [RIS File](/catalog/DUKE011128061.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011128061.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=The%20life%2C%20death%2C%20and%20afterlife%20of%20the%20record%20store%20%3A%20a%20global%20history&AUTHOR=Arnold%2C%20Gina&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011128061/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:890c6570-6673-47e2-9be0-a600326ba173', 'payload': None, 'score': 5.111859860107163, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '38469', 'document_id': 'ba7bdaee-f963-4ba1-81ee-2a4f57b775b6', '_node_content': '{"id_": "890c6570-6673-47e2-9be0-a600326ba173", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ba7bdaee-f963-4ba1-81ee-2a4f57b775b6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "1f9b49d4285484e8934880d49cc42d7a6600621aa3afa4211b77d365d847f36e", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ed1aaa9b-70e3-4333-a5ed-96f1e4fd0f61", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "ef51b4ceb583db01efb1e601a177c1635b3e9bd0f230bb5a6e3fae3dfc313a65", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fcbb370c-5342-41a3-8a91-1fd3adc0c84d", "node_type": "1", "metadata": {}, "hash": "f915634a970194ba2ed43ce6224005c536e896c2bb6c40c8797015bb4f43eede", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7061, "end_char_idx": 10572, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html', 'vector': '\x03\x18_;]E\x0b\x7fh<\x02s+\\So<\x02\x1d\x19ռ\\\x0b\x1d<\x19ԇ=XQf\x0c&;9P<`\x11=;Լۙ\x03<+<[4ۼM\x0b\r9\x1cV\x0cɺ\x04#C;\x18\'z#;q\x03M\x0b\x1b<<>л"\r=]κڽ!;fk\x1c.UN#^A\x06<,=h<孃\x12\n<=:r=\\\x1e<`\x11=:@萶T<%\rcJ~\x19\t=n=0:\x04>P5\x005/<;;\x16]/H\x02;\x0cI=ľ_O\x16=.2<\x05\u07bc;\u07fc?üi\x07p=:\x0e\x08<"+;\rEwH=l\x174\x1fvO,ë=7\x1aȼ\x02Oa^ӻ\\r\u05fc5=m6\x0c=~\x17Pټ覼&ʼPv\x04=!\x03=|kD.=R@<\x02)<\x02s+=Qi<ڹ\x1bQ<~ȵ\x0b\x077\rTw8\'=\x1fWQ=p\x102A=>;tF;_\x14\x03\x1a.Ӧ\x03ݼ\x12\'ּ$(=\x05;까==\x03=<@g;dD=t⨼*<Ϡ\x1bj\\?\x17%;\\?&W\x14850ϼ7h=\x19+"t:\x12áG<@5݆X=@\x109b;;\x18=9OּM9#f%6D=^5H^<4=Jk\x1am鴼\x7f\x1eC"-\x16\x00Qq\x16=\x025¼W<"\x0f[~=ܠl\x17̏\x17;:Ո;N\r\x0b-z<\x05It⨼捸G\x1e=/=\x0c\x0b\x7fX\x11\x11\x056=(R>= 4ozތs!\x0f\x1ev<\x142R<;>\\?#<6\x14\x1d4oj=\x00<\x1d滒9^\x0c+<<:\x07"=:$q\x02\x065\x1a\x04\x1dJavĤ\x13s\\6ăq\x02<\\O@V\'Q=;\x10%=p\x06;\x1d\x07ܠ;@T=\x1a<ŏ{<\x11fz=r\u05ec̰/<\x1e^B<<8\x0f=f\x1a\x16|r<{Ƽ\x1a\t&\x0c\n)=F\x06;gcp4<\x07e%M\x1c=\x10.\x0e\x1f93\x17=Ĥ=8`[\te\x17=Y\x1fշ\x0feV \x00\x02=+*9tFݼӟ\t\th(C̺8w\x0c[\n"Ϯ!u\x1e', 'text': 'System ID:\n\n 011279812\n\n\n\n\n\nFind related items\n------------------\n\n\n\n\n Series:\n\n [Contemporary studies in idealism.](https://find.library.duke.edu/?q=%22Contemporary+studies+in+idealism.%22&search_field=work_entry)\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781666947427%2FLC.JPG&oclc=1406744966)](#)\n[Request](https://requests.library.duke.edu/item/011279812)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011279812/email)\n [Text](/catalog/DUKE011279812/sms)\n [Cite](/catalog/DUKE011279812/citation)\n [RIS File](/catalog/DUKE011279812.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011279812.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=Kant%20in%20context%20%3A%20the%20historical%20primacy%20of%20the%20transcendental%20dialectic&AUTHOR=Kelly%2C%20Daniel%20Patrick&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n* [Find related items](#related-works)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011279812/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{18806 total, docs: [Document {'id': 'test_doc:b1769fc2-1cc7-4813-b616-ce3ea9bb95b8', 'payload': None, 'score': 1.5940476948167188, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '102688', 'document_id': '881db5ae-0652-4ed7-86f3-40b97cf53c4f', '_node_content': '{"id_": "b1769fc2-1cc7-4813-b616-ce3ea9bb95b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/academic-advising/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 102688, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/academic-advising/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "881db5ae-0652-4ed7-86f3-40b97cf53c4f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/academic-advising/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 102688, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/academic-advising/index.html"}, "hash": "b5be620b1d392bdd0119b0a0b47d7c1d71c069d068f81b60f66173bd41b3cc03", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7d5db75a-ec6f-4da8-a1dd-0efdc1cb92d6", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/academic-advising/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 102688, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/academic-advising/index.html"}, "hash": "d3a3eacde4480c2dd9e5a0500e7fab9a93cc9fe29e05df1edfb453fd1ed3fd8a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3bd9889c-5e1e-441d-bc9b-0f4947dae445", "node_type": "1", "metadata": {}, "hash": "6b80853eb4b1e83caac15d94d5fd79a2d6273ab7ffaeb1951f178dec2533a17a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2897, "end_char_idx": 6100, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/academic-advising/index.html', 'vector': '4zG\x1d\x00ּD;]\x7f<қ/7L\x1f=5E;<\x08LмR<;"~\x12;[\x0b\x0eoB<|\x02<1қ<\\I=&\x1f=DY=w\x13պ3L\x19yn\x0b:闼4Ӂ<@\x11ϼ=b1\x12<غ\x1a\x1b/\x01\x05=\x0c<\x1c<Ӂ\x0e\\\x19=\x1f[}dgg\rz:ݔ\x12Ӽ5:GB=(7`,;-wX<<=L;&\x13ɣf=I<>I< #_P\x17;ݔs_7=B<\x03c"=\x97\x10=s(#WC\x01*=\x14<\x0c9K<\x0c2H\x1d=Fu[\x0b@/\x00>_\x18<9\x1d~\x01A==I\\z=9=Rp\x10=\x08)ڼ;<\u05fcp\x05E\x00!\'OH\x1d=`ѻ.n<{\x0f䉻-\x7fjF=\x01[~<\x18\x11\x03(_\x19\x02r;"識/\x02j\x16=!\t9c"v-:\n\x10\x1f\x0bZJ\x14c;x\\< ";P%T<\x0f=\x08<$μiJ\x7f=\n\x0bP\x17*PGBnɻül=#ՖE\x19Y=Z(=ڼ\\7ȼs;f=grX\x13f\x068\u07bch\x0b/y<[j:^\x04c\x1c;A\x00=wE\x17y=<_C<;PĎ2%=>\x1e\x7f;g\x08\x08(uM=ڜ \x06\x19=P\x1dDM\x17<;6qB=w$7z8^\x18;b0\nuV=\x08m;J"9\x028un\x1dͲ\x18g#=l;\x08=-K7p=l<,=\x12\x15̃\x05\x1a;\x1f.=;\x05\x18=\x1c\x045<"hU<\x0c\x07\x1cTŔ\x01\t;Qɼ\x08\x17}<\x1d=K1=\x12\rfF\x04-y;GE<[Ƽ6C%;\x18Z.<+<ػ\x00HY\x02<\x19/is\x1d\x0e<9;DR~<n\x01\t\x03\x7f"=y\x10<\x16<1=ջ;@+(7\x11=Fc\x01\x14=:\x15[n*o=b=={=\x1f.ڍFB7\x11%=\\QS\r<5\x008Ł*B=2\x13<\x16=N\x18-\t=a2=\x0e&Gȟp}b;\x0bMX\x18=\x00=馼@\x18U?ʼ<҂\x005y\x02K', 'text': '* [About Us](#)\n\t+ [What We Do](https://academic-advising.dukekunshan.edu.cn/what-we-do/)\n\t+ [Our Team](https://academic-advising.dukekunshan.edu.cn/our-team/)\n\t+ [Faculty Directory](https://faculty.dukekunshan.edu.cn/)\n* [Academic Advising](#)\n\t+ [What is Academic Advising](https://academic-advising.dukekunshan.edu.cn/academic-advising/)\n\t+ [First Year Student? Start Here!](https://academic-advising.dukekunshan.edu.cn/new-students/)\n\t+ [DKU Definitions](https://academic-advising.dukekunshan.edu.cn/dkudefinitions/)\n\t+ [Academic Accommodations](https://academic-advising.dukekunshan.edu.cn/academic-accommodations/)\n\t+ [Academic Integrity](https://ugstudies.dukekunshan.edu.cn/academic-integrity/)\n* [Academic Resource Center](#)\n\t+ [Tutoring](https://academic-advising.dukekunshan.edu.cn/tutoring-service/)\n\t+ [Academic Success Coaching](https://academic-advising.dukekunshan.edu.cn/academic-success-coaching/)\n\t+ [Workshop & Events](https://academic-advising.dukekunshan.edu.cn/events-workshops/)\n\t+ [Peer Tutor Program](https://academic-advising.dukekunshan.edu.cn/peer-tutor-program/)\n\t+ [Peer Mentor Program](https://academic-advising.dukekunshan.edu.cn/peer-mentors-list/)\n* [Resources](#)\n\t+ [Students Resources](https://academic-advising.dukekunshan.edu.cn/resources-for-students/)\n\t+ [Faculty & Staff Resources](https://academic-advising.dukekunshan.edu.cn/resources-for-faculty-staff/)\n\t+ [Pre-Health Resources](https://duke.app.box.com/folder/48799464636?s=87pre13veghzaho133u8zaozzgr9pv9s)\n\t+ [Pre-Law Resources](https://duke.app.box.com/folder/48799879835)\n\t+ [Interesting Upcoming Classes](https://academic-advising.dukekunshan.edu.cn/interesting-upcoming-classes/)\n* [FAQ](#)\n\t+ [Advising FAQs](https://docs.google.com/document/d/1XKuY2rwXBLEYZtM9LDUGFNHgyhVvEmcURKLTWDwscwM/edit?mode=html#heading=h.uqazz4jigo46)\n\t+ [ARC FAQs](https://academic-advising.dukekunshan.edu.cn/faqs-for-arc/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFrequently Asked Questions about ARC Services\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Table of Contents\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n#### What does the ARC do? What if I am not sure if you can help me?\n\n \n\n\n\nThe Academic Resource Center (ARC) is a learning support center within the Office of Undergraduate Advising. Our mission is to provide undergraduate students at Duke Kunshan University (DKU) with quality academic resources that promote inclusive learning and development. Our specialty is providing tutoring and learning support for gateway, sequence, core, and large lecture courses. Our services include [tutoring support](https://www.dukekunshan.edu.cn/academics-advising/tutoring-service/), [academic success coaching](https://www.dukekunshan.edu.cn/academics-advising/academic-success-coaching/), [workshop and events](https://www.dukekunshan.edu.cn/academics-advising/events-workshops/), and [peer tutor program](https://www.dukekunshan.edu.cn/academics-advising/peer-tutor-program/). You can check the webpage of each service for the detailed information. If you are not sure how we can help you, feel free to write us an email or drop by our office for a chat\n\n \n\n\n\n\n[Back to top](#top)\n\n\n\n\n\n\n\n\n\n\n\n\n\n#### Are there student worker opportunities in the ARC?', 'ref_doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'doc_id': 'c93ae41d-e8e0-4f2b-bd3b-3ecc8f7fac1e', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/academic-advising.dukekunshan.edu.cn/faqs-for-arc/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9f2dcbce-79ab-402e-a618-350c14f64d8d', 'payload': None, 'score': 1.388156893752565, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '121552', 'document_id': 'a0652744-0f87-420d-8f28-e14ab647be81', '_node_content': '{"id_": "9f2dcbce-79ab-402e-a618-350c14f64d8d", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/office-of-ug-studies/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 121552, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/office-of-ug-studies/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a0652744-0f87-420d-8f28-e14ab647be81", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/office-of-ug-studies/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 121552, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/office-of-ug-studies/index.html"}, "hash": "4b6c4a3141ef581b60a0c3524f2cfb45fcef2605c23155adf60c6707d1e186c6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d35a851e-a108-42bd-9411-c67a5d9d10ac", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/office-of-ug-studies/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 121552, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/office-of-ug-studies/index.html"}, "hash": "f6f640404cb0aba93330779fcad8b7343da87c54d12652c22ce13adb8870436a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaec9e7a-9f7c-406b-8ae0-ba94e1d1f683", "node_type": "1", "metadata": {}, "hash": "853447eaee461da572ff0a6af6a4c9675e77f9d460426b87a24c5ad3051399e2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2977, "end_char_idx": 6290, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/office-of-ug-studies/index.html', 'vector': '.Ȫ弍蟽)2oگD=\x17]<\x7fD:9U<\n&JA-ws=\x7fk:e4H\x17D=b1;ۼ\'3QM9»h<}~\\<\x10[|;l<=s4<\n:ꆼ;\x01=B)H\x118\t=2\x03<ɻ\x19+=\x06壼P:#5=Cڕ:#յ:CF9p=/<\x12\x08?ꜲZ:\x15L@\x17\r;\x0fc=_z\';?u\x06r\x1f=>;ρ\x0eX:{ǘ-ws&e\x02{RMjOi@<\\Z0\r^p<ȃ7\x14\x1bΦu;\x03\x12\x1b6$:\x08m=p\\C;|\x0c,Mؼ\x1ei<>\n\x1c\x0eTؔ\x07ﵘ3ʼ\x1b=]0m\x10n:m<\x149=w!=e<\'\x07ڈf5s-;P8=\x11sr<=0<\x0fꓼ$;b<1< W<ߌ,_;\x0b\x1f<ޕՅ<躳\x18;W<\nռ\x1d\x0b\x0bVP=*<1m<\x1f\x12\x1e=3;_F<<\x18\x03u;tnһ":\x07λ.(=a{\x0bN<\x10g#=,=\x1e8=n;\x02@;\\$Jc̼V;ּ|b\rU;PM=VPm8<&vo\x16<91`4T\x19:$X=IZ\t~(XcNyV\x14=\x0e=\x04$\x13Y-$eD{Kϼ`tn\x00<[b(4=~<\x16ȏ\x19\x12\t\x0eq=<+\x15=B\x1d<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:a0a9c333-5aa6-4690-8ced-acbdb70ffdd7', 'payload': None, 'score': 418.7958440957953, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '445782', 'document_id': 'ed9f2c0e-969c-4d65-91f3-8f0ac09ed537', '_node_content': '{"id_": "a0a9c333-5aa6-4690-8ced-acbdb70ffdd7", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf", "file_name": "GuidetoCourseDesignAug05.pdf", "file_type": "application/pdf", "file_size": 445782, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ed9f2c0e-969c-4d65-91f3-8f0ac09ed537", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf", "file_name": "GuidetoCourseDesignAug05.pdf", "file_type": "application/pdf", "file_size": 445782, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf"}, "hash": "dbfc1a91db8f1fa3cd720d4556918216f17c2457bb6631327ae069f1cdc375cd", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a06466d3-dd84-4899-b826-11a30c3b3b18", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf", "file_name": "GuidetoCourseDesignAug05.pdf", "file_type": "application/pdf", "file_size": 445782, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf"}, "hash": "3f4680f0a8fad8bcf92b4085dc07a3fd25ba3658f06b87d935975537e90170a9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8c3e5d76-efb1-47cb-ab45-79db81b84231", "node_type": "1", "metadata": {}, "hash": "3745167136951cbad943d342e277f5467af1f4ba9019dab75d9c10bb6487a78f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3937, "end_char_idx": 8375, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2021/09/GuidetoCourseDesignAug05.pdf', 'vector': '7h\x13RS\x13;;\x15V$< 9P\x0e\x1c6=\x1c\x0e`\x1b\x7f5=\\\x16<^<2\x0f<\r@\r*;;=%=c0+>PP蕻`\t=Zv=V:\x10);\x03=2<\x0e`&\x7f<\x15\x00b\x01QO\x00;<|\x16=*Mz<"%Y\x04q]=N>˼\x1c++jk<\x19r٘\'\x10UH۸_\x1cMm>U*ΝkGQ3\x05ԗ<-9=;r\t\x0ctz}\x18;o½V\t\x00ڱ}C\x06rIh+=j&\x03g*[,R\x17!\U000fb31aZ\x0e"<+\x18\t\x1bz\x01=6=Gؼe=nkS=\r<\\\x01PQ˧\x0b=Q3\x05Ĕ҂:\x0b喼\x1b!L#/#u=\x11<\x1bEk\x06^0\x12\x02;ƂV=\x19\x7f.\x12<\x18\x00f=S\x17=q)\x17<>\x1aV<&,<\x1bD^L<移γ{\x03<25<\n=O>=PG\x10(\x11wb\x05\x06NUbC=XsL߫=m\x15KTY<\u07bb;4\n=\x19\x10Ú<@~;ć=MJq$=D2<\x00\x1c=<\x04\x1a\x14H\x0c\x00\x1f<1<+;@&\x05WTx킼_K=r;O#<\x05\u07bc\x04ҋ<\x1b=\x14:<\x08_=\x17<\x1b1<\x03\x19\x7f\x10=)\x14$v6*;/\x1a;\x19vv=\x12=h\x14=b\n=m"=\x05T=; ;\x1bӼB\x1a\x01l\x19\x16\x03=>\x1aF;$#\x1as\x10=Լa"ջA\x1a=\x13;L\x01\r\x7fT<9g;Oǣ9T\u07bf<\x0eH>ɼ\r\x07=\x1b=O>\x06IZ\t>J=c\nMz8\x00y:(B\x10=tȻ풚9`P:CUh:<\x1a=\x1f!\x18W~R6=\x1eF<\x1eF\x17\x19m=5;<;$#<\x08{5\x1dܼ0|_\x15=A?=})]!\x16=\r\x04;\r=2ټϼFȏ=\x11?(<<\x04N<8wv,}_N\x14C!ٛ5\x02;=\x19I\x0e;2;Fh<`\x13:3oȼRԼͼ1Wc6\x1e\x1f\x0fCs=L=ˠT\x19:?`g\x0f=K:KM\x12\nb<#-\tz;=\x1e?\x1c\x00=6<#ϼ^`~\\D_\x0c^i:;\x10\r=gh"z\x1f\x1dZɜ=<˻gCv\x1cC;#&żi\x183eR<؋\x1eA=Za=>V\x04=̞N<|\x11\x15;1\x08̻Ż\x17G8,0L<|=t<<\x05\x1eA:nj9#\x15\x03"0AS;װE="\x10<#WoټW{=ļI<\x04N\x03<=ż\x01\x03Z\x17;1ԕ<\x16e\x02\x10\\9N<6;X~\x08lj\x0eG\x01\x03\'\x1d1=q&=0\x10\x1bcG\x1f=2<@C=7d<4m\x07\n\x18<3<\x19Cy+\x1dϰ;ٛeQ\x03D=n aG":7)<2\x16A\x03\x04N=c\x17̻519Pؼ]83\x0f=i\x19=t$6=y+=c<\tR2\x0eP=w\x07f#<^`<\x05会üF\x19Kϼ@Nn;\x11?9&z\x12\U000bbaf2\x1eA<\x13=\x12\x024;\x0ey<\x10\x18,}S\x06\'==<؋\t\x10M2ɼGɢKDED;1=pCʼDC\x05i\x183=sfn a=<\x1d\x11W<[,=;E<\n\x18u\x1bc;:-\x0brio4.BPbLͼiʝ<}u"x<\x07u_\x0cm)aJx::=\x1e}ֽK=;\x03\u07fb:;<\x1cm\x1f<\x04C<\x0f(=\t]=ȩ=9!+\x12\x17\'Nޒ=\x0cji\x1b;v^\x1aP=NBм\x1e#:Â=\x08\x03\x1d{bj|u#)ֻo9Ǽz§;\x0cZ2UI<\x07B=\x0e\tQ<\x03\x10S=3F>Ur6=\x14/=\x1fo:ꐋQy[$\x07<;:\x03:;=^\r~ʺ\x0bIe;)[=\x0c#<\x1cR<,Y\x1f/H/|=Z\x11;SH\x07=펼\x10l0Tk\x00w~JO\x06\x07xn<\x1bu=\ue9fcgr<=g\x13<\x03ٍ<~\x13\x7f#\x11i<\x1e_\tb\x15<\x19Ev2Yyú;\x04j8\x14DG\x0cRX<\x1c\x18=/\t=ۨ\\\rF\x7f\tW8"=\x1e=1\x01\x16;/+p;߹\u05fb\x14m<1<\x7f\\<;kaw\x0f=B\x01>Tw:&\x0fs\x1c=և"*=}) \x1d&=6<%#I ˔Rq=M\x02<\x07=\x11R\x11l`;%\t\x07<45j=-:H\x1b=N}-=\x11㼻\x01\'=d\x10E¡N=N\x15n#=\x0co;\x7f\x01`a\nx\t~]0 Ev<\x19,+qi\\<\n<\x0fa< i\x14<Ѥ-\tr.t&F<`H<\nӵ<2Y<\x03\x1a><*!\\\x1d:Y\x1a=\x1dT<[e(=\x1eIjo0={;8؞U:', 'text': 'It is conceivable that the individual might even be offered a new contract, as in the case where failure to reappoint is due to the loss of an instructional component in the position, but the individual still performs a valuable service.\n---\n# Guidelines for Adjunct Faculty Appointment at Duke Kunshan University\n\nGeneral Criteria for Adjunct Faculty\n\nIndividuals who are interested in engagement in the DKU community may be considered candidates for an adjunct faculty appointment if they are committed to one of the following four activities at DKU:\n\n1. Teaching a course or guest lecturing on a regular basis at DKU.\n2. Advising DKU students or serving on graduate committees on a continuous basis.\n3. Collaborating on research with DKU faculty, ideally on projects involving DKU students.\n4. Providing strategic advice to DKU at the university level or at the program level, helping raise the visibility of DKU within and outside China.\n\nAll adjunct faculty positions are approved in advance by the Vice Chancellor for Academic Affairs (VCAA), and adjunct faculty can be hired with or without a search. Initial appointment can be made any time.\n\nAppointments may be offered at any of the established ranks or titles for which the person is qualified. The “adjunct” designation precedes the specific rank in the title. The particular rank offered shall be commensurate with the candidate’s current rank in their primary academic appointment elsewhere. If the individual does not have a current primary academic appointment elsewhere, the rank offered will be commensurate with education, experience, and professional distinction.\n\nInitial Appointment Procedure with No Search:\n\n1. In the no search scenario, a unit head (including division chair) in the relevant hiring unit submits a nomination letter to all regular rank faculty in the hiring unit. The hiring unit can be any of the five academic divisions at DKU (UG SS, UG NS, UG AH, LCC, Graduate Program), or an interdisciplinary research center. The letter should state why the candidate merits consideration for adjunct status and should propose the adjunct faculty rank or title (e.g., adjunct assistant professor, adjunct associate professor, adjunct professor, etc.). The nomination letter must be accompanied by the candidate’s CV.\n2. Regular rank faculty in the relevant hiring unit vote on the candidate. If approved by a majority vote of regular rank faculty in the hiring unit, the hiring unit’s recommendation for appointment is submitted in writing by the unit head to the VCAA along with the candidate’s CV.\n\nApproved by the DKU faculty March 22, 2017\n\nVoting should be done anonymously and a quorum of two-thirds of faculty in the hiring unit is required. All faculty eligible to vote at meetings of the Faculty Assembly are regular rank faculty.\n---\n# Initial Appointment Procedure with Search:\n\n|Step|Procedure|\n|---|---|\n|1.|When the hiring unit, in consultation with the VCAA, determines that a search is required, a search committee is nominated by the hiring unit head to initiate and conduct the search. The search committee consists of at least three faculty members in the hiring unit. If any one of the hiring units cannot provide three such members to serve on the committee, the unit head must nominate an expert(s) in the candidate’s field from Duke University or Wuhan University, who will be invited by the VCAA.|\n|2.|The search committee may also choose to nominate additional experts in the candidate’s field from Duke University or Wuhan University to serve on the committee, to provide further quality assurance, but this is not required. The search committee keeps the relevant hiring unit(s) informed as to the progress of the search and draws up a shortlist for their approval.|\n|3.|Following interviews with the short-listed candidates, a selection is made by a majority vote from all regular rank faculty in the hiring unit(s) and the committee presents the recommendation of the hiring unit in writing to the VCAA, along with the candidate’s CV.|\n|4.|The VCAA will forward the hiring unit’s recommendation and candidate’s CV to the Adjunct Appointment Committee (AAC), who will make a final recommendation to the VCAA with a majority vote of 3/5 members.|\n|5.|The VCAA will make a decision on the appointment.', 'ref_doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'file_name': 'FACULTY-HANDBOOK-_2021_V7.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1c87e679-887f-4a0b-b35a-c188f0bcaed8', 'payload': None, 'score': 6.50742353906552, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '193207', 'document_id': 'd5a239be-05cf-45e0-9828-34393051404c', '_node_content': '{"id_": "1c87e679-887f-4a0b-b35a-c188f0bcaed8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d5a239be-05cf-45e0-9828-34393051404c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "hash": "8069a53c337274902b62806d298e9279bc96e16473bbe77769fe70f130122797", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6caff452-949e-40d1-9746-c66f5be65cad", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "hash": "58495177c60795f324bd77fb361e896b2432564f79796a595bdb92dbb9e8ef49", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "047b0129-8c66-445f-8058-67bcf739a63d", "node_type": "1", "metadata": {}, "hash": "768d0d40af3f683dbd2807beb595e2b7e8dddfcb44178481a33e76165e973cba", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2569, "end_char_idx": 7099, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html', 'vector': ']0$ȝ5@tx;\x1c_\x192@+`!<]@\t<<λ떼mT\x0b=\x1d\\T*\ue1bcQl<\\\x16=}E"= \x06<ɼSv<\x0ef\x04\x1d;yvm%<͑;iIz\x1a\x0bH\x12=\x06:<ļ=\x18\x06O!";.0t^\x0e(J<~#\x00\x1b;#=T{yv-;+ȼ0oQ\x11\x11n\\<<\x08d;K\x04;p\u05fcl*=թ,\x02\x0b=,;Tȭ\x02ol\x1a]<;\x1eE\x13Oؼ0Z<&\'\x08Q\x19=\x15Sb\u07bc\x0b;\x15\x11!<\x1d<\x12!Y$<\x1b<\x15ɥ@}<=<}(\x08\x17<|F=ޝ\x02=*O;ȝ5#=,8;\t\x1a!\x00;l\x0cP\x05\x1bCߌ<=;<\x1c\x19p\x13:?k<<:\x1cü-\x00=Z=\x0c8Xd7cR̼4\x0bs\x05\'\x12<5\x06=*\r:1\x14o;u\ta;."<;T,<[:TY<%;~=\x1bc\x00=|\x18;\x05M=\x184~;|\x0eJD;\x16P\x04G\x02d qQ\rD<;+@\U0010be49D=\x14N5ge=<*;*=U<<Լ\x0f;;=8\x7f<ڈP=b< \x10,\x04<_Z\x021t=lܴ꼚\x141<}I+@\x04<|u\x1f.J]\x11\x07,\x12^cX\x1c\x01<Š/\n=\'\x174<\x00j㻚f;\n?}l$ɘ(Ly<\x17=>\x19E\t=\x01\x030!<([:\x1b"<:\ne=\x12=./%\x08%=1<\x1e$=YoZ?;z\x0b/6\x08%\x0f\x15;\x1fV%=_\x1d\x17J.wd<\x7fg}*\x0e<\x1b=Z\x11p0G\'亥<<\x1b^$P:|>_Sh<>B\x11=f<(ݼQ=}< Q~=\x005<\x1bd$b\x06\x084;5ч;\x10t~ռ+A;6d;+\x0b\x05\x0b8\x12:I_-3j2?=j;kYg<;ɻ\x08;\x05v<\x11\x17<<0<\x04A=zlS<^8<+6=p\u07fc\x04ٻ<>=\x10켢a\\\x08\x19I0=Ca&\x0cf<31=\x0b=a!=\x18o4=+Jt=ǪD/D\x07C\x03=\x07<=:\u05fa\x14=5X\x13\x16\r̼\x1bJ_K1=\x06l\x1b0=\x1el:\u07fct/<\rN<>=\x0e\x01\tsJ<\\1\rλnY\x1e1\x17=G;+=~\x03=M2!=\x14M=qa=w\rH<\x1c="<\x062;AZ4?\'Ц<\\=a:Iۻ\x10]թ6<[<\rJ=<\x0f;.[8<\x1fxsx<3\x12\x0f<+>\x1dIW<Ø]\'-\x0b&<\x15X\n;d\x1f<㣽]&z\x7f\n<\x0cZ\x16/\x19\rKoI<Ǫ<\x04z=Ț{y~=:04>=6=\x7f<̬Z0\x05M2s<6KYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 74.56712697123471, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19"L<\x08!5=N:\x03=Ǎ;}\x133=seuR<\x17&\x03<\x12:_Ż\x13h\x0bļo;k<<Ϣt\x19\x102<\x7fƼs#}ț=;crD? =(\x07<<-\x18\nV)K&U\x16=V©jN\x07;ٻ\x1b\x0b\x05>;3\x02=FK<\x02=Bfl~\x1c=&;RA\x01:X=\x02;;iL.=\x06|e<+="LD9ϫm<`J\x13-;\x058м\x02=ئ\x19}\x1eqs;H\x12\x0f[=\x1atwc<\x160:\x18\r>6X[<~<\x04\x10%wV3<\x1eI\\\x07ۼw.;.]A\x19\x16*\x089)\x1at<ǻ\x02@Bfl<\x0c\x064<}/Z\x07\x02ݼ-<\x0eТD\x16\x0e;dư(f;\x04=.*1\x13\u05fcRE<>\\h)K=W/< ?\x1eI\x1f%;[\x7f\x1bux\x11U=3M@<.l&rR/ڼ`=9<24_<%9<\x13\x12\'<Ɣ#=\x0c\'*\x0e0\x1e<\x1bux=\t\x0cڌz<\x0c/\x0c754T\x1bN??=]\x0cǻ!-\r\x0b\rт7up=g\tMouwCx)u=^;y\x16=;d\x06<\x18<\x11\x16\x1c<>;\rCnFu=E6=B^9=Z/1<>\x17\t=m\x11D=_X\x12;1z:Q\x15i<-<\x1buxaL<ӼW%P\x04[I\x0f=kμ;\x13*/Z\x0f:E~&ϷYɼ^cC7<\x008R=L\x14=3C|\x0f";y5a2\x0c\'y5N<;\x06=>>)3\x01"\n=i1=k2k<\u07fcR5<\x02\x065\\><6\x1b\x02=Lvo-\x0f\r=\x1d㼢\x19F\x03¼S\x01>s2\x02Eb;a8=\x14}=c:<\x07\x02=a4<\x7fq.=h<ڼSٞ<\x0f\x1c|=\x12<\x11<^<0>=Eڅ\x15i&;_\x08#]G)=ԛ,\r;5F\x03B[3[3` =Z<\x08&*;\x1b\x0e=.;c\\T\x11s<+SrA<̫O<;\x06 0=\x19=cS<ނλ՟¼+=\x11<><\'\x11!= k^=\\j%+AU=8$<#=\x1c>\x06XF=ڑ~(ڪ\x04\t&\x06vE\x1dK=sHN{<\x00\x1c\x05{^\x18=˗\x04/g,\x05Mdo\'=\x18=\\zTEH`=\'\x00\x16siEU=/eY;0\x7f|]<\n\x02B%\x1eSD=[h)t\x1dG7=M:c\x13u\x19=U2\x06=\x0e\x1fZd,<&2tK<\x05ҿlw\\l.;\x1a:i5PM\x06XF=\x11\x0b<]C\u07bbV+\\I\x19\x0c|=d,=!=D=?Or\x1a6\x10ѷ\x1c\x04/J\\uX;\x14ݹ<<))<\x0eȫ<ȶ<\x13\x03T:;\x1c>\x18CN;Q=\x12~<\x13)\x1f_Q\x15jfD<\x1b^:ozļ=\x00\x12:\x7fN;R~3\x19\x18\x0e=Ůf;InZ@<̳vI\t=Re@\x0c,W\u07fbSKn<\x08cz\x18\x10=\x1a;1@\x04\x12\x02!KC<.M<\x01Jl\x01)pa\x13=\x08\x1c=\x08=\x18\x1d}GIt)\x0e-\x1e\x19\x15Y=V\x12\x00n;<5=ၹ<\n\x00;`<\x11V\x02:Å<.`\x0f<(ս$6<\x11,=\x1ayGG\x01ItOc\x0eѻ<5RD\x1a=>/=q=,t1\x03<\'<2\x15;\x0b6=\x0e;<=\x0f˼~;d&".%\x19=?\t K`3zBVA<\x05\x0b\x05=,7;&<=5\x0b=\x07\x01;cKp\x10Ywټa\x02\x13\x00>;zًmu;ݥ)<></k\x0f\x13홃6\x18/=O~\x15[<{c;-g3\x03\x02;IkT*I\x08\x1cZ\r\x076,6ۏ\x06\r<=ļyB\'<) XN<Ɋ<{%YּJppa\x133$=\x04Ќ{F:Rμـ;\x13i\x0fvm8=\x14\x15<=ɻRe<2<\x1f\x83:\x06<<\x14<]\x07\x1a3w<=\x1f=\x15Ȼ\x0e;QcA<.5\r<آ\t\x16<{zS㼠\x05i\x0b*\n=[G="\x1ew\x18=\x12ps+ĻZy \nSP\t)\x022=;RM(\x11<\t\x15t<\x1b_=;vY<1BFi\x1b=\x1f<\r5<6mW\x1bE=*=8<آ\x13\x01\'ޠ:;JD&=jX{Wܶ<<ƨ\x07Rϼ\x11!=\x01\x13\x1f;\x02=9n+&\n<<0{\x11мkh.=!L\x10<\x19\x0e nFQ=\x1dީ=\u0557;H\x1e\x7f\x04ּ\x0f==<\x113Swo{<,=%\t=sa\x19TH\x0e~<.B<\x7f=~z;FtkK:\x05,`\x0e꽼;\u0ad5u\x08w];ȼ\x0co:q<;m>\x1e+N}\x18<:2"=\x01!ϼ\x16<\r=\\ʊ<Ȑ\x0f\x10\x1f<\x7f.\x0bR<\x19-4z\n=\x06o\x15;B;=.\r<ڊ\x1bB;>k\x14̎ڼ\x05r{\x11<<آ\x13&竻OegF9%;<\x7f\'L\x1e0BFNI;<\x0c\x08<2;\x01QvY6üw<\x1a_˼NZS&<\x00?\x11y?\rwS<\x15a;WK\x022={W<=h\x08==Ҥ\x0f=\x1d\x19=\x12k$=t={):6*NY,7\u07fb\x7fm\x1bk=x\x17:BA=p<L\x19!ki=.ͷ:<<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nLibrary Spaces\n--------------\n\n \n\n\n\n\n\n\n\n\n\n General Rules \n\n\n\n\n\n Study Rooms & Team Rooms \n\n\n\n\n\n Functional Rooms \n\n\n\n\n\n Wind Finance Lab \n\n\n\n\n\n Multi-Media Booths \n\n\n\n\n\n\n Please follow the general guidelines below to use the Library spaces/rooms:\n\n1. **Open space seats and study rooms are on a first-come, first-served basis**. Please take your personal belongings with you when you need to leave for more than 30 minutes.\n2. Do not use personal belongings to occupy seats. The left items will be cleaned up by library staff and we will not be responsible for any loss.\n3. When using **functional rooms** or places with equipment, please send an email to [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn) to make a reservation, then go to the 1st floor service desk to exchange your ID card for a temporary key card after the reservation is approved. Each reservation is limited to 3 hours with additional 3 hours renewable. Course reservations will be given priority.\n4. Please **keep quiet** in open space, use team/seminar rooms for group discussions.\n5. **Telephone booths** on the 3rd and 4th floors are available for phone calls.\n6. If you need to move around furniture in a particular space, please return it to its original position when you leave.\n7. Please keep the environment clean and don’t litter.\n8. **No eating** **on the 3rd floor and 4th floors.**\n9. You can [check for space availability here](https://dukekunshan.emscloudservice.com/Web/BrowseForSpace.aspx#), but please note you cannot reserve rooms on this site.\n10. Contact to reserve classrooms.\n11. Follow any additional guidelines for other special spaces listed on this page.\n\n\xa0\xa0\xa0\xa0 \n\n\n\n\n\nStudy rooms are on a first-come, first-served basis, and we don’t make reservations. Reservation is required for events and classes in the team rooms.\n\n \n\n\n\n\n\n| **Study Rooms** | | |\n| --- | --- | --- |\n| **Floor** | **Room Number** | **How many people can fit in?** |\n| **2F** | 2103 | 2-3P |\n| 2109 | 2-3P |\n| 2111 | 2-3P |\n| 2117 | 2-3P |\n| 2119 | 2-3P |\n| **3F** | 3101 | 2-3P |\n| 3102 | 2-3P |\n| 3105 | 4-6P |\n| 3106 | 2-3P |\n| 3107 | 2-3P |\n| 3002 | 2-3P |\n| 3003 | 2-3P |\n| 3004 | 2-3P |\n| 3007 | 2-3P |\n| 3111 | 4-6P |\n| 3112 | 4-6P |\n| **4F** | 4101 | 2-3P |\n| 4112 | 4-6P |\n| 4113 | 2-3P |', 'ref_doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d6d27406-84ee-4f2e-8fe9-40d837477efc', 'payload': None, 'score': 8.034300961561675, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '156358', 'document_id': 'b921af15-be3d-4648-a832-9eff128b796a', '_node_content': '{"id_": "d6d27406-84ee-4f2e-8fe9-40d837477efc", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b921af15-be3d-4648-a832-9eff128b796a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "944bdda3371daca1284fd390ca0a29a9d73fc0764ea88d2c55fcc8bb495cf062", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f14b732-8c96-4cc7-aab4-34c23342640b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "b811c1fef340a9b0e4ac9860aaf0bcb4eafbaec57628f2ce4f38eb3f1faa6f9a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36aec92c-b4af-4794-9536-0cf40ffc99bb", "node_type": "1", "metadata": {}, "hash": "9f61e90e3cf6222cad0453557dba29fa4656b2d87ad996c0b95a8bf1221add9a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 38850, "end_char_idx": 43900, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', 'vector': 'ꁽ\x18;ًL;;\n\x0bBXb\x07<\x10.\x1e=FB<1;Ҽ?\x17=\u197bwI|Q;\x12;{eRWŜLüY\x05=،<\x062ҴbEnYg\x17l$\x17\x13=ND1=\r!5"G<\x15\x0eD(!\nh\x1ab\x1d=\x0eV<\x07=h`\u07bc&=\n\x1bd=3u<\x1d;k[:\x04PО퐟\x1an(|<_:=7v<\x15aR\x00Ǒ\x0b<<<X=ԼbL=Bx<\x00f=jZr=\x0258r=<;fK?7)Q\x02\x7f<ܔo,:,\x19C;<;\x03\u05fc@To3\ru\x03=Vt\x02):s\x16=6\x06\x13V eRWVP;@?ޛ;+0;(\n?k%ڍ=*\x13<~ąw\r N\x07=;;ll\x14\x0b7)Q<;lI+"~\x15j\x06\x1e3=&+<@<¼v\x08̢BXg=\x0f=. P\x0c=^9=J<֡ٻ\x06\x172Ҵ:<8"9=!\n*9\x11oŻbLp8\x00\x01v=6b<;ll;RZ\x1e\x11\x00(=m?k%=Pp<', 'text': '* ***Time:*** *10:10-10:30 & 15:00-15:20*\n* ***Location:*** *LIB 3015 Tea House*\n\n \n\n\n\n#### A Brand-New Learning Resource Centre – Your Gateway to Learning\n\n*Xiaojia WU, Assistant College Librarian (System & Facilities), Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nIn this Poster, we invite you to step into the enchanting realm of the Learning Resource Centre, where the pursuit of knowledge has no bounds. Building a brand-new library is to build a knowledge palace for readers, thinkers, and dreamers alike. This poster provides a glimpse into the myriad treasures and opportunities that await you within these hallowed walls.\n\n1. Exploration: To embark on a journey through the vast expanse of literature. To discover books spanning genres, from timeless classics to cutting-edge research.\n2. Innovation: At the Learning Resource Centre, we embrace technology’s transformative power. You can dive into our digital resources, e-books, and interactive learning platforms.\n3. Community: A library is more than just books; it’s a vibrant community. You can attend workshops, book clubs, book fairs and lectures that foster intellectual growth and social connection.\n4. Empowerment: Knowledge is the key to empowerment. Highlights the various educational programs, information literacy instruction services, and career resources that are available at the Learning Resource Centre.\n\n \n\n\n\n#### Learning Support through LibGuides\n\n*Jane ZHANG, Reference Librarian, Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nAs a common practice among libraries, LRC makes program guides to help students of different programs to learn about library resources and services related to their study and research. The program guides enable us to further consolidate our collection to the requirements of program syllabi. Previously we stored program guides as PDF files on UIC’s Moodle – iSpace. With information from course-related books to databases to library services, a guide can be more than 10 pages long, and not very user-friendly. This summer, we officially move the guides to LibGuides. The platform provides us with more flexibility and possibility to present library resources. First, with the “page” function, the sections of the guide are more visible and the organization of the guide is straightforward to the users. Second, LibGuides allows us to add more functionalities for better user experience, including direct linking to the resources, the support of multimedia contents, adding notes or contents without disrupting the flow of reading. Furthermore, the guides are cross-referable, allowing the library to build a complete information literacy program to facilitate self-learning.\n\n \n\n\n\n#### Practices and Challenges in Academic Library Space Projects\n\n*Pin WANG, Team Leader of Library Operation Team in XEC, Xi’an Jiaotong-Liverpool University Library*\n\nThe poster looks at the practices and challenges in academic library space projects. It consists of 5 parts. The first part identifies the user activities in the library, such as collaborative learning, individual study, library classroom learning, socializing, events and exhibitions. The second part shows the functional spaces in the library, including learning commons, group study room, training room, reading pavilion, research commons, outdoor area, exhibition area, etc. The third part summarizes the most recommended practices of library space projects, including communication between librarians and users, frequent meetings with related departments, visits to other libraries to find out good designs, etc. The fourth part tells us the challenges and solutions, such as noise reduction, seat occupation and power outlets. The last part shows the future opportunities of academic library spaces. With the development of artificial intelligence and education reform, academic libraries are facing their challenges. In the future, the library should merge into the innovation ecosystem. Space innovation such as demand-driven and technology-supported labs to enhance user experience may be a very good start.\n\n \n\n\n\n#### Professional Excellence: A Library Assistant’s Growth Path\n\n*Cai YAN, Library Assistant, Duke Kunshan University Library*\n\nThis poster will share what professional qualities a library assistant should possess and how a new library assistant grows in the workplace.\n\n1. Learning by doing: This part will share some examples of how a library assistant learns from doing everyday work.\n2. New library, new challenge: Moving to the new library also brings about new challenges. This part will share the case of the DKU Faculty Works Project about how this display project turns from proposal to reality and the constant process of occurring and solving problems.\n3. The nurturing of leadership: This part will share some experiences in training and organizing student workers, thus shifting from the role of a follower to a leader.', 'ref_doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:75b0644f-1aa4-48e9-8944-0ad15f0edc50', 'payload': None, 'score': 4.472326396705618, 'document_id': 'index.html', '_node_content': '{"id_": "75b0644f-1aa4-48e9-8944-0ad15f0edc50", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "152dfeb0-eda7-4982-885e-b8bd274fd1aa", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c646a76d-1b42-402a-a04b-29eeefc6ee86", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x03c\x05?nTG\x13\x0f;1yӼR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 4.4723263967056175, 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 4.4723263967056175, 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{40697 total, docs: [Document {'id': 'test_doc:a31f34ea-d80e-42e7-9a84-a7a3afe3b636', 'payload': None, 'score': 15.25373236482503, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2986689', 'document_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', '_node_content': '{"id_": "a31f34ea-d80e-42e7-9a84-a7a3afe3b636", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7aba813d-dab9-41dc-a97a-993ec69ba196", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "hash": "11ecc01f303036fe2851e08fc6521f4a230e023753a73908adc39b8ec3c08e8d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f11a4917-3c7c-42c2-b59b-8750cc4a60d1", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf", "file_name": "FACULTY-HANDBOOK-_2021_V7.pdf", "file_type": "application/pdf", "file_size": 2986689, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf"}, "hash": "e1950a3b53ea5a2056bec214456ba32965bcfb89ec0958b99ed3aa4469536757", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1612f50f-1d72-44a7-a7e9-73069a8654ce", "node_type": "1", "metadata": {}, "hash": "9f12fedadb6a6f365ca1ddffc20352f368557713f6df43296031e3ac2d3d8156", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 468460, "end_char_idx": 473221, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf', 'vector': '\x7fW6\x1144hrG䟺B\x1d\x03\x13X<"<\x7fQ\x1a=\u0590;\x7f~;\\cOȒCh¹t¼ٻqڼDU8m<.\x03=`=M\x00=<ź\x7f~f<<8g#<\x1dL\x1d\x1fC<\x0ff./\x0f\x1e@G\x1b<\nT<\x05\x19ODVA=x\x05Q\x10e9\x13˼\x1d\x03\x06-N=ZOKG=K\x1fJ(=\x12\x1a\x0f\x0b+<\n\x07=\x01lZ\x0b7PZ;S8=e*\x1e@\x00<\x140=Ojճ*ΫTu;Qf<+ۻ[%<=\x06c0h{\u05fb\x7f\'k<)\x06c;\x1e;\x7f-<\'\x1f=\t\x00;}\r;ijN9\x1d<*\x03/E<9}}\r9Ƽ\x13<7S=<\x10`\x08=E<\x11\x11;sC,<\x01<[Q/<\x15t1=h];DE_O\x16D\x11\x1byA\x08\nT=\x05T\x07\x18`;<\x08`=)\x10=\x10ϺhJG<\x06=; im~u\x1a:=;\x16\x1e0Qp<5)2*\u05fb\x1a\x07~BVC<\x13^=L[;\x05<䟼g=`\x16\u07fb.\rZ\x04\x1c9=\x12Z<\x19<#\x18\x1avN[;S\x1c:\x08=;5Dл\x0bRO=\t\x7ffo$6bkڕ=&W<\x03\x1e=\x0fi<\x13x<ݹ\x0eCS<}<\t=\x0f0<,_\u05fbǵq\x13x2\n8_T켖C\x1d<1512<\x14\x049>\x06\x19ZNnd\x1b\x15<\x12=&\x1eJ=\x7fSbr\x19m\x1a<_\x12Z\x17\x03,컱71>\x13<<\x05 D\x16=ozrj`_\x194;S\'\x0f\x0c\\=_8K<\x19m\x1a;<ۥ;<:"x䰼\x01=\x1de>nm=&\x1e_;tN&+f\t<_N=\x18::ܣ\x06u,&D\nj|d=\x1c=\x04F,\x00R<\x05;\x1b<3qgǵޜl\n;\x04<\x14bH5=\x061\x17\\%\x02<$;\x06\x03,f&1>=\r=3\x00u=ǓS<;\x14M\x15K\x1b=/^\x0b`3EVd!\x0b`\x00CooˊYMǡ$=K\x7f<1Y=\x1f\\:@=\x0f<\x16켟0:=k\x18W\x0f9tFS<\'X=\x11<\x1aYn\x0f;.\x0fߚ<\x11<\x05ͼ\x16\x02;w+E=\x19v=xP:P\x18\x1a\x1b<`\x02ź8\x1e=$g<|._\x15<\'\x14;\x0b\x00\x18;\x05\x15!\'6\x0coՆ<\x10><;%\x05v&<<\x13B\x04?3;˪ϼ\x05\x03\x19^\x19\t;\x06N\\v\x17<]3f#<`\x11mTy<\x0e\x05<.=B=)v;X\x0c";$:\x08?yO9|<\x03:Gxs<\x0f=\\j\x11q7<\x0e<\x13`摼V_\x08vLz=U?\x19#:', 'text': 'Art, Art History, and Visual Studies|\n|Bai Gao|Professor, Sociology|\n|Haiyan Gao|Professor, Physics|\n|Robert Garlick|Assistant Professor, Economics|\n|Anne Garreta|Research Professor, Literature|\n|David Gaspar|Professor, History|\n|Anna Gassman-Pines|Assistant Professor, Public Policy|\n|Henri Gavin|Associate Professor, Civil and Environmental Engineering|\n|Rong Ge|Assistant Professor, Computer Science|\n|Michael Gehm|Associate Professor, Electrical and Computer Engineering|\n|Kata Gellen|Assistant Professor, Germanic Languages and Literature|\n|Charles Gersbach|Associate Professor, Biomedical Engineering|\n|Simon Gervais|Professor, Business Administration|\n|Jayce Getz|Assistant Professor, Mathematics|\n|Jehanne Gheith|Associate Professor, Slavic and Eurasian Studies|\n|Jean Gibert|Assistant Professor, Biology|\n|Christina Gibson-Davis|Associate Professor, Public Policy|\n|Elizabeth Gifford|Assistant Research Professor, Public Policy|\n|Roseen Giles|Assistant Professor, Music|\n|David Gill|Assistant Professor, Marine Science and Conservation|\n|Michael Gillespie|Professor, Political Science|\n|Bryan Gilliam|Professor, Music|\n|Jeffrey Glass|Professor, Electrical and Computer Engineering|\n|Graham Glenday|Professor of the Practice, Public Policy|\n|Lindsey Glickfeld|Assistant Professor, Neurobiology|\n---\n# Thavolia Glymph, Associate Professor, History, and African and African American Studies\n\n# Sarah Goetz, Assistant Professor, Pharmacology and Cancer Biology\n\n# Deborah Gold, Associate Professor, Psychiatry and Behavioral Sciences\n\n# Benjamin Goldstein, Associate Professor, Biostatistics and Bioinformatics\n\n# Zhenqiang (Neil) Gong, Assistant Professor, Electrical and Computer Engineering\n\n# Yiyang Gong, Assistant Professor, Biomedical Engineering\n\n# Jose Gonzalez, Associate Professor, Classical Studies\n\n# Rosa Gonzalez-Guarda, Associate Professor, Nursing\n\n# Mark Goodacre, Professor, Religious Studies\n\n# Raluca Gordan, Assistant Professor, Biostatistics and Bioinformatics, Computer Science\n\n# Maria Gorlatova, Assistant Professor, Electrical and Computer Engineering\n\n# Alfred Goshaw, Professor, Physics\n\n# Kristin Goss, Associate Professor, Public Policy\n\n# John Graham, Professor, Business Administration\n\n# Jorg Grandl, Assistant Professor, Neurobiology\n\n# Bradi Granger, Research Professor, Nursing\n\n# Ruth Grant, Professor, Political Science\n\n# Arno Greenleaf, Professor, Biochemistry\n\n# Henry Greenside, Professor, Physics\n\n# Simon Gregory, Associate Professor, Medicine\n\n# Joseph Grieco, Professor, Political Science\n\n# Paul Griffiths, Professor, Divinity School\n\n# Warren Grill, Professor, Biomedical Engineering\n\n# Jennifer Groh, Professor, Psychology and Neuroscience, Neurobiology\n\n# Matthias Gromeier, Professor, Surgery\n\n# Yongtao (Grant) Guan, Assistant Professor, Biostatistics and Bioinformatics\n\n# Johann Guilleminot, Assistant Professor, Civil and Environmental Engineering\n\n# Rathnayaka Gunasingha, Assistant Professor, Radiology\n\n# Michael Gunn, Professor, Medicine\n\n# Claudia Gunsch, Associate Professor, Civil and Environmental Engineering\n\n# Tong Guo, Assistant Professor, Business Administration\n\n# Michael Gustafson, Associate Professor of the Practice, Electrical and Computer Engineering\n\n# Steven Haase, Associate Professor, Biology\n\n# Malachi Hacohen, Professor, History\n\n# Markos Hadjioannou, Associate Professor, Literature\n\n# Michael Haglund, Professor, Neurosurgery\n\n# Heekyoung Hahn, Assistant Research Professor, Mathematics\n\n# Richard Hain, Professor, Mathematics\n\n# Susan Halabi, Professor, Biostatistics and Bioinformatics\n\n# Laura Hale, Professor, Pathology\n\n# Amy Hall, Associate Professor, Divinity School\n\n# Kenneth Hall, Professor, Mechanical Engineering and Materials Science\n\n# Patrick Halpin, Associate Professor, Marine Science and Conservation\n\n# Gianna Hammer, Assistant Professor, Immunology\n\n# William Hammond, Professor, Community and Family Medicine\n\n# Brent Hanks, Assistant Professor, Medicine\n\n# Mark Hansen, Professor, Literature\n\n# Sara Haravifard, Assistant Professor, Physics\n\n# Michael Hardt, Professor, Literature\n\n# Brian Hare, Professor, Evolutionary Anthropology\n\n# John Harer, Professor,', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:6a0945a9-bd7e-4595-91ee-991ca0679204', 'payload': None, 'score': 12.062670162703043, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '107134', 'document_id': 'c8032c06-aa7f-4f45-ab69-8a521ecd4f9f', '_node_content': '{"id_": "6a0945a9-bd7e-4595-91ee-991ca0679204", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/author/ziheng-wang/page/14/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 107134, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/author/ziheng-wang/page/14/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c8032c06-aa7f-4f45-ab69-8a521ecd4f9f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/author/ziheng-wang/page/14/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 107134, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/author/ziheng-wang/page/14/index.html"}, "hash": "5aed7c497daff4d5b471d1ead3f20b91f30255e23ffcbf60258f0583114db765", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e9f13beb-0ec2-40e0-818d-ed5fa8fc86c9", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/author/ziheng-wang/page/14/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 107134, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/author/ziheng-wang/page/14/index.html"}, "hash": "ece00c11977c70064ed595e6cf3a3a544ed4c7abf81c6b0a98f7ccef3c431d29", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b1a0a691-adc6-4c49-a8a1-35a3056846c1", "node_type": "1", "metadata": {}, "hash": "947e37420cf92be3213eef11d74e26cb30b9c6fd8b6666cde13bc3cfd1891378", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 13482, "end_char_idx": 16458, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/author/ziheng-wang/page/14/index.html', 'vector': 'FPǻmK@\nT,\x14Jbܼiy=.[<_[;S\x0eؕ\x16:ar\x05=ƥ\x0b;&=\x08-<\x0e`)<\x17f7A=<.Z\x00GpNET;m\x17=\nfݼmK:+=q\x18;a>.ŽݦK;d:L<`z8(>ݼu\x08^0<е:;#\x07F\x12O;O¶;e\x01,j\x0b\x053s;,< <8<\x07;YwB=ـR=S<\x0cԼ\x08.<؞%;`\x199\x1e\x1f;=\x15\x01\x0c&\x079<\x0f<\x00\x01:?E\x1fЮDe麲,K<\x1e=Y:}\x02<"6I;V=\x02<\x1b<\x10<3L\x1edPļC<\r\x11\x0b\x053\x13\x00\r^zѻY.;\x17<\x03Qb!B\x13\x00\x19<ـ )\x15\x7f=];\x17\x14;R Oa\x0c=Y;xv\'\x7fe;d§I~><\\o<1\'UX\x08\x1c\x19u\x12=HU<}\r{=="=O\x05n\x11\\:û[fF;SdOp\x1dcg}\x1b3f<\x19h<\n(\x03=\x08\x08\x13\x03;pʃk\x10<ǖ5S%μ\x1d\x16=-3GO=*\x1d+N<="=!:\t\x05=`=]gH8w=Į;\\\x05D=Ċ<^L;ZǼL;"RX=[\t$Ѽ켋a\x00\x1d\x164\x1d;ð@b0Ӽ,7=d\x0f ^z<2=!i<8\x02\x18=\x19=\x08=X\x1fO\x1elc<ϼ5\x0e\x1cM;P<Ż\x1c۶<\x7f\x16;t<=j:g\x0b<\x1d漣\x1b; \x05<;\n\x19G\x19:<ʱ/\x94\x18=*A<}\u0558\x07#!i\x1f\x11X<Ĺ<\x0b^{\x0b:F漃fjVwUʱ)<\x17ໂ"<[DM\x03K[xos\no`\x05<\x0f;\x05\x04;Xлh<;Uؼ\x059\x12<\t;&JW\x16Ӽ0+;&<;̺%Qf=!I\\NU_м\t2#=]x>\x1c\x1f\x0bd\x0f)\x1e\x13\x1a=hհ<\x0b=o(=9<=ػ>\x17Ƌ4\x17<4\r\x007p=\x18[;\x1a=\x1d<\x06⯺\r9/=S\'\x14/`;d\x00=\x14)FEҝ\t=E<=\x1fس<^M|ԼV\x07:\x19-t;\\@\x0b\x1bAO<;5(\x7fb<\\=\x07\x0c<.\x08=|\nbϼ6*;\x1bҼz\x0b:3Xޜ]%N,\x1c<\x1cg=I˼@U<?ۼ\x00a;`:=;启=Oo\x01D6*Ļ6\x12:\x11\x00~\x12n=xF <[Qau\x1b&\x0e=dɺ\x12<@M\x19=:;=ЍI\x05ȱfQT`"\x0b¡mG<\t>jCз<\te=;fz\x16<=<;\'<\x15;e=pQ\x16=(\x02=\x19\x032:]\x14K\x1e;S̔\x13\x1e\r<8p\x03;*;.\x1e):p\x01=o<\x13.4G\x15=\x132=\x02-p\x11<<\r=3p\t=\x13\x13&zw3=O\u05fc_z<鎌Wz(<-pE<\x06\x14\x13R(`2G়֟<\x086zz\x1b\rM=f\x02pżo(^Q\u07fc%=ˈ.;kG:W\u07fc\x17]\x15=w=@w҃\x017=\x15ֻP=C?\x131;=">.\n7f`;=\x1b\x07;P\x10=١~j$l,ć;$\x15\t(\x01SgQ<=DUv\x1d\x7f=\x018ͻl.@<ϲ=T\x9a5;\x01ϩo<\x0e=`=Ѽ8+=ԉ=4#L[5=jɛ;;d<\x12(ļQ\tIN\x7fb=p3/L<\t%۸=kp4\x08@PWDJ&=z<\x05\x1f=25:\x12m<\x03Qt+(FQÔ\x00<2J]\x0e\x1c<\x12&;EA=\nhi\x13<ƹ=5W!:C<\x19rgl\r7\r<,>\x03;ΌN\x08M<ڻ\x18.=o{=?;j"u\x0b\x17;̇;\x144=7\x04zC\x10=\x15ϼތ<\x1f\x0c#=tKF!T};\x00\x0cĂ\x05Aм\x15\x03|\x07<)II\x17v!<\x07Fg@*6;c<\\;0\x03=\x07[8=S<\x1dW<7ekpuH\x1e<\x02<Lۻ\x07[80=\x0b4#\x03H<"i1÷IN\x08ͻ\x08G=!㼭i+D\x07j\x1f<=\x0c\x15UL\r\u05eb[\x07l&+I=:M\x1f\x06eV\x1c;>=(#\'ؼ\x1f<:\x17:e\t<ӡ\x12Y2;>!ci\x16F=ϔ\r\x0e<\x0fӛT=5)\x06=\rl$¼\x0f=<#;l&=tK=H{=0$\x13\x18[\x13a<<<\nN\x05\ueea0<_Q\x18:IHr="<3<)=z\x06];Tr\x1c_=!\x14<', 'text': 'Settings\n\n* [How do I use course settings?](/t5/Instructor-Guide/How-do-I-use-course-settings/ta-p/1267)\n* [How do I set details for a course?](/t5/Instructor-Guide/How-do-I-set-details-for-a-course/ta-p/1037)\n* [How do I change a course name and course code?](/t5/Instructor-Guide/How-do-I-change-a-course-name-and-course-code/ta-p/1234)\n* [How do I add an image to a course card in the Dashboard?](/t5/Instructor-Guide/How-do-I-add-an-image-to-a-course-card-in-the-Dashboard/ta-p/624)\n* [How do I set a time zone for a course?](/t5/Instructor-Guide/How-do-I-set-a-time-zone-for-a-course/ta-p/1295)\n* [How do I change the start and end dates for a course?](/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354)\n* [How do I restrict student access to a course before or after the course dates?](/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269)\n* [How do I change the language preference for a course?](/t5/Instructor-Guide/How-do-I-change-the-language-preference-for-a-course/ta-p/1246)\n* [How do I enable SpeedGrader to launch filtered by student group?](/t5/Instructor-Guide/How-do-I-enable-SpeedGrader-to-launch-filtered-by-student-group/ta-p/947)\n* [How do I enable a grading scheme for a course?](/t5/Instructor-Guide/How-do-I-enable-a-grading-scheme-for-a-course/ta-p/1042)\n* [How do I use grading schemes in a course?](/t5/Instructor-Guide/How-do-I-use-grading-schemes-in-a-course/ta-p/870)\n* [How do I view and manage grading schemes in a course?](/t5/Instructor-Guide/How-do-I-view-and-manage-grading-schemes-in-a-course/ta-p/1188)\n* [How do I add a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-add-a-grading-scheme-in-a-course/ta-p/1054)\n* [How do I duplicate a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-duplicate-a-grading-scheme-in-a-course/ta-p/601384)\n* [How do I edit a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-edit-a-grading-scheme-in-a-course/ta-p/601385)\n* [How do I archive a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-archive-a-grading-scheme-in-a-course/ta-p/601386)\n* [How do I customize visibility options for a course?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-a-course/ta-p/844)\n* [How do I customize visibility options for course content?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-course-content/ta-p/814)\n* [How do I set a Creative Commons license for a course?](/t5/Instructor-Guide/How-do-I-set-a-Creative-Commons-license-for-a-course/ta-p/1059)\n* [How do I include a course in the Public Course Index?](/t5/Instructor-Guide/How-do-I-include-a-course-in-the-Public-Course-Index/ta-p/812)\n* [How do I set a course format?](/t5/Instructor-Guide/How-do-I-set-a-course-format/ta-p/1089)\n* [How do I change the format of a course ePub export file?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'emphasized_text_tags': '["span"]', 'filetype': 'text/html', 'category_depth': '1', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5de98e40-d933-49c2-90eb-c286525861b1', 'payload': None, 'score': 181.29023268042064, 'emphasized_text_contents': '["How do I manage my Canvas notification settings as an instructor?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "5de98e40-d933-49c2-90eb-c286525861b1", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-manag/e-my-Canvas-notification-settings-as-an-instructor/ta-p/1222", "filename": "index.html", "filetype": "text/html"}, "hash": "3d1a042c6d4a1bae721210c0a10127a1615064bd928e2854d5b7c96e2e2f1134", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16302703-378c-45c0-9106-9ad07470f8e3", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "860beb54725152d1658bbd2172b5f691ae88263f5cc891530405e4e0ab8b697e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b26b7f66-993d-49e0-894f-a130d7cd1140", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'k\x0fpB\x15\r\x11\x1d;uYº\x02\x06Bd<\x15;I\t\x7f\x03=U1[}:iKW\x1e=\x0e;{n伢ږ< .\x1eF<\x1260=8ahP\x12<\x0cļW=<=%\x07=kP<>6(=,;*Cܻ@\x03*|ӓ7<\x19\x13\x00=B\x0cZ;MW=\x07\x0bL=\x1dg<\x02\x04<\x12\x1f\x1a\x1e=ڟ\x7fK\x16=\x01I\x1f<\x19\x04q=9Y@p#T`:,q;`%\x14ԡ=R2,\x17;\';)] <.\x1e\x00=4eȻ:;\x12wnʀI*`L9Q+K<\x1c<8=\x14w\x01ؼ\x11=\x1cL=(\x13t!r<*\x13\t=\x15Rh<\x06\x0e=ɱ8}<9N[<\x00=\x1cU:d$N\x13\x1bRh9W<<\x12\x1e;\x1e\x05H^{;!2=+\x1c#\x1dg\x19\x12n\x07"/y;R"缬\x19.\x1eN\\=\'VG\x11mm\ncg9\x1cL1=Ik\x1eA\x13R<\x11<\r,= \x07\x10<8qG\x03dCo\x16\x19\n\x08<\x11w`:=\x073;Y=T\x1a\U000bc5bdKH\x06f\x04NG\x1e<09p<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3ȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{26337 total, docs: [Document {'id': 'test_doc:029cbb7e-f1a5-4110-986a-a3e034b12219', 'payload': None, 'score': 64.9707281433182, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '125074', 'document_id': 'd4a4e28f-068d-4cab-987f-3777c925b71c', '_node_content': '{"id_": "029cbb7e-f1a5-4110-986a-a3e034b12219", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 125074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d4a4e28f-068d-4cab-987f-3777c925b71c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 125074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html"}, "hash": "87d903172cab5e63e588acccbf6904d54b12405998aab4878b57214177366ebf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "04107d69-ed36-45fc-b320-a17a94d6f00f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 125074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html"}, "hash": "b1be4810da2427265981ed1fb15fc5a09284ae8b041afe0af7d51b79d0a8bdc3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2db43102-f6a0-457c-b556-6ca9758d60f2", "node_type": "1", "metadata": {}, "hash": "ba835fc2cf10554f68e9b2336d3d76a01ef0d226a728caece880f882f6e702f7", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9861, "end_char_idx": 13788, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/student_profiles/katherine-bell/index.html', 'vector': 'L}13`Γ\x12l\u07bcݺ`2\uef0d>\x1d@\x19A=\x11\x15;#\x13Z+\x19.E$7;\x1cS\x0f=8\x0f3np\x143+\x1c\nx=Rs\x08=:\\05i2=MRźDi=\x1e<`հƲ\x18\n<\x01C_^:e;|h<\x0c\x0e=<\x7f&@\x1aa<50\x01\\0FR n=$;I\x12[p\x13\x1e+\x05:L@=/`i<Ӏ=}G`μ|!\x17<\x19 <ݽd[/<\x0f#\x02\x00t=\x18}ټ\x0e=F2tS\x14OB,:ۆ<\x04\ueffb\x16.\x04=;uM<\x11<&8<Լ\x16J<<鎎B/g\x17Ȥ6<)\x12W<%+E;\x03\x04;5V=Bz;\x11plM*\r\x06]3okۼU\t\x1e=\x18<`\x08Z+;&BKF5Ț;G_0\x14=HdtTټ\r&< ;\x1alC=?=~\x11\x1f5ֻ\x13\x0f<&#I=Z`\tխ<$3e\x7f<&B;b\x1a[M|=";N=/`<$\x064p;;U<\x0bq9{x\x14M-;\x0c<ǀ9\x14\x05=\x0b\x18;\tH<1_܀;\x1be;\x02=ϼ\x1fH\x020=)9]ZŻ<\x15\x1dN<\x1dIX&;rZ=&%|!\x01^\x1b#=\x02wF\x15o:8ȼɽ=\x03V<\x03[=u&\x0cA^*fV\x1b5=ʻw-%="=:8*f\n\t<(dUN|;O\x19=\x18;"AR\x12"=m\x1a\x14V%5\x08=G\x05\x7f%<\x1a?˼\x0b=SvlǼ<;\x04YXw<;&<|&9\tr\x1f1;ۻ<\x16\'=o˼)Kq<|A;<;lM=}D\x08z&9Z$*x̶]r/T\u05fb\x06hPT=d%=h\x1c{R\t ƺya(\x11:=~䇻V\x06;VgOn9=(d:Ԓ(+9\x06k\x00Q?a=ju\x1c\x1f=*\x15\x10\x16\x15<\nzw\x0ef==49Az/-Tҭ< M[<\x01<]0r<\'o\x07&\x13\x0c)Aub=?aȺ)A\x07ΫSoPpM[=8xJ<\x10<7\x1a<^;t쏼sk<ݼ\x13DO=I\x11=L\x0c<\x12=x=\n-<<<*\x1bb|=(8\x0f<6<\\;f?=\x04=\x05i\x15Ol;\nz8P^^0*\t4E;,\x140VB\n>= ۻ;\x15=?\x19;+qX=ą%T=\x02:Ģ<\x14SQ;]<}\x05\x0fW47|\'=gAE*:ϘO p="<_\x0f=\x1d\x07=n<8g\x1d:\x13\x18<\x00\x05Ik\nv\x05=ż\x1f\x0c<~\u07bbBkHD;ta:L4\x14\t\x1cO<\x17\x003\x1a\x1d7\x01>.\neY*=N=I\x05\u05fa+\tV9m\\<<[<Сn\x1d<\x03\x06%\x13<@=\x03<\r\x0eNq}\'\x1bw^N=>aP=鄒`US\x1dSL\x1eh\x14;\\<\x02LXJUV?8ɥ<~ϟ<\x17=Xb;0\t\x15i\x1b= u!;\x10<%|\x1b\x1d\x00;\x14=\'^jA <8!1鄒Y\x1cdu}<% \x126p#&S=" \x12=\x14\x109; ;W(Ӽ̢;;Z0<>9KY\x15v\x0ci7ۆμ\x11\x0c=12?)7dVerjռ/6A7\x19<"R6;<=z\x1dS;\x15t9s<;ּlihizL\t\x0e\x01x<͝Ҽ\x11\x7f:\\|Fϭ\x1e漵J=eY*=<\uef04_;\x14\x17=i7 u<|s\x1d=̢<_\x0f=\x141\x11=:\x14":8Rfo;\x15}sg\x0e$<\nm\x00\x10=m!;B\x11<\x17\x06=0GJ;bb9Vh\x06"\x1d=\x1fA;\x03⼹(=\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 155.59185874817052, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=F\x10>s\'<\x13\r@;\x16;#d=WV7>\x15"=nJ;\x12{]\x14V\x07 \x02\x03@:Bv\x16=;s<\x03f:ơ;<@85D!\\e7\x06\\RĖO;\x12?\u07fc\'ռ\x16~;Uv;GI4\x1fuN=k>w..\\R\x00<\t¼`*!<\x03\x00+<(@=Qw;<,\x13&=/Y\x04\x0e\x01=QЛRx\x05,p"\r\ue89f<:\x18l#2=;\x16<.;u#vF\x15\x02mul;\x02\x7f;R\x07w;==<Ƹ\x11\rWvSw;X¼.0<\x02;t0=CC@<<\x05\x0f\x1d7<\x15"=\nE<\x1c9=\x14\x19PuN\x06FN/&#aȇ̠<@<\x03\x14=\x16S=\x15;\ue89fe|*l=\x15Q~B\x05\x04\x07=7\ue89f\x06<\x11㻲;;Ӻ0ϼp\x19\x17ykE\x16-δ;F:I?S<:`y<1v|}77\x17<_c\x0f˼x\x1c<\x1a+=/\x1d6\\\\<\r=;RƼOz;\x04\x07=;\uef3d\x01~S\x03\x14<;M;;<<^<\x0f\x04=g<*l<\x12?_5Ai\x14<0ϻw\x15\x05<}i\x06Y;{=ˢS\x13d\x08`V<\x1fA=\x04\x0eW*(=:x>\x1d@\x19A=\x11\x15;#\x13Z+\x19.E$7;\x1cS\x0f=8\x0f3np\x143+\x1c\nx=Rs\x08=:\\05i2=MRźDi=\x1e<`հƲ\x18\n<\x01C_^:e;|h<\x0c\x0e=<\x7f&@\x1aa<50\x01\\0FR n=$;I\x12[p\x13\x1e+\x05:L@=/`i<Ӏ=}G`μ|!\x17<\x19 <ݽd[/<\x0f#\x02\x00t=\x18}ټ\x0e=F2tS\x14OB,:ۆ<\x04\ueffb\x16.\x04=;uM<\x11<&8<Լ\x16J<<鎎B/g\x17Ȥ6<)\x12W<%+E;\x03\x04;5V=Bz;\x11plM*\r\x06]3okۼU\t\x1e=\x18<`\x08Z+;&BKF5Ț;G_0\x14=HdtTټ\r&< ;\x1alC=?=~\x11\x1f5ֻ\x13\x0f<&#I=Z`\tխ<$3e\x7f<&B;b\x1a[M|=";N=/`<$\x064p;;U<\x0bq9{x\x14M-;\x0c<ǀ9\x14\x05=\x0b\x18;\tH<1_܀;\x1be;\x02=ϼ\x1fH\x020=)9]ZŻ<\x15\x1dN<\x1dIX&;rZ=&%|!\x01^\x1b#=\x02wF\x15o:8ȼɽ=\x03V<\x03[=u&\x0cA^*fV\x1b5=ʻw-%="=:8*f\n\t<(dUN|;O\x19=\x18;"AR\x12"=m\x1a\x14V%5\x08=G\x05\x7f%<\x1a?˼\x0b=SvlǼ<;\x04YXw<;&<|&9\tr\x1f1;ۻ<\x16\'=o˼)Kq<|A;<;lM=}D\x08z&9Z$*x̶]r/T\u05fb\x06hPT=d%=h\x1c{R\t ƺya(\x11:=~䇻V\x06;VgOn9=(d:Ԓ(+9\x06k\x00Q?a=ju\x1c\x1f=*\x15\x10\x16\x15<\nzw\x0ef==49Az/-Tҭ< M[<\x01<]0r<\'o\x07&\x13\x0c)Aub=?aȺ)A\x07ΫSoPpM[=8xJ<\x10<7\x1a<^;t쏼sk<ݼ\x13DO=I\x11=L\x0c<\x12=x=\n-<<<*\x1bb|=(8\x0f<6<\\;f?=\x04=\x05i\x15Ol;\nz8P^^0*\t4E;,\x140VB\n>= ۻ;\x15=?\x19;+qX=ą%T=\x02:Ģ<\x14SQ;]<}\x05\x0fW47|\'=gAE*:ϘO p="<_\x0f=\x1d\x07=n<8g\x1d:\x13\x18<\x00\x05Ik\nv\x05=ż\x1f\x0c<~\u07bbBkHD;ta:L4\x14\t\x1cO<\x17\x003\x1a\x1d7\x01>.\neY*=N=I\x05\u05fa+\tV9m\\<<[<Сn\x1d<\x03\x06%\x13<@=\x03<\r\x0eNq}\'\x1bw^N=>aP=鄒`US\x1dSL\x1eh\x14;\\<\x02LXJUV?8ɥ<~ϟ<\x17=Xb;0\t\x15i\x1b= u!;\x10<%|\x1b\x1d\x00;\x14=\'^jA <8!1鄒Y\x1cdu}<% \x126p#&S=" \x12=\x14\x109; ;W(Ӽ̢;;Z0<>9KY\x15v\x0ci7ۆμ\x11\x0c=12?)7dVerjռ/6A7\x19<"R6;<=z\x1dS;\x15t9s<;ּlihizL\t\x0e\x01x<͝Ҽ\x11\x7f:\\|Fϭ\x1e漵J=eY*=<\uef04_;\x14\x17=i7 u<|s\x1d=̢<_\x0f=\x141\x11=:\x14":8Rfo;\x15}sg\x0e$<\nm\x00\x10=m!;B\x11<\x17\x06=0GJ;bb9Vh\x06"\x1d=\x1fA;\x03⼹(=;<\x06_\x0c=T\x08뼻:Ǽtm|Y:ԝ\x11\x00<߅<\x071=DV?b\x04<_~`ݼ\x0em;hW};r\x1f=j"\x17D;=5x=\x16c;&ռh`4=\x17D;$\x08%l\x03=OߛZ=e.O»7`мV;r=k\x1c\x0c\u07b4Si\x11S<ɼ\x1cR7\x0c;O`*=Mf<3\x07\x05:\x00\x15\x1c(=\x07T=T<)W(<:\U0007a4bc\x1ae\x08%9N\x03=c\\F=O~J.m^\x08WY:1\x08}%:\x0c\u05cbbFû\x070=a\x00\x08V(*~{<:<=4<=A<\x15-u\x101-x\x7faޗ<\x12\x19\x13V[\x10cR(qfKZ:\x0b\x06;)W:;\x1f\x0bEt<;,<:_}\x1f\x0b<\x07`]\u07bcv:t\x1e`C6ѼO#;5r=XH\x1cg:<%L<2fm3==X\x10"A;VjؼJ\x16=G\x07ir&\x04)=~\x12d綼^Y¼\x10\x1aqX<\x1d8(t\n紼*<:=~m\x17<{o8\x0e<3I<^9XA\x11g8y\x17\x1260d#\x17v=\x0c=kn\x17=6Ċ0\x04\x01=k W={<=\x0b\x18\x06\x03=\x0e0=\x0e<\x1e*$%,\x1c\r:JĻ+=L J\x10\x12\x01= g08Z=[\tm:\x16\x10\n<˼1\x12X<̌<\x0b< g2;\x10<\x168=͞\x19{<#<]\x1e\x17\x06<(<\x01;\t_=\x02W\x04\x02=$\x13;e\x15\x07<뺮\\H?8<,VI8B5ż\x03=о\x0b7<ܮ4=܇\x1c\x11\x13δ;3<ؼ,\x08ح(=UVù\x1a =:}P\x0fA~ü*=i\x16\x13{M+Hz\x11;N<\x1e=n%\x00\x19c<;ҭ<6e=3"=R\x0c<[TW2J\x04T]*\x13=v\x19@: wPi<\x01Y=\x1e\'\x1e\x04@=9\x7f<<\x02\x07PЏ\x19d<`Yg<#@ukջ=\x13;%>;2n\'\r$+y\x07\x01f\u07fbb5\uef3a\x12;(<\x02=\\<\x114\x111\x04=\x0ev<,\u05fb(\x1b"<[k{\x08&.G=;\x04H;\x05]\t>iY.=k;c<<\x7f<÷gE7;\x00R:vV:<\t\x00=\x11;\x7f:<̘<4;\x16hZ=zʻ᩼e;&b_\'=\x1f4L-2?=Z*\x10<\x116ٺ\x08|&=n3;\'\x17<\x116Y\x0e\n?,\x1dC&)SZ<_:U<\x02B;\x06\x1e*mQn<&;f\x7f:Wg=[U~[,kb<\x0bv\x03EC=^<\x03|=yMS<\x0cBTO\t(Z\x1eD$O=\x01T`b=\x02\x17\x19U_\x08*m\x14/>;zD\x03\x0e傽g벺:\x02Ik7:l\x0b<^s;e>xVRr\x18\x16:)/\x1c\x1d\x00=LQ<&<4H:S\rlQ\uef16O\x15|\x17Y=\x19\x1btH\x7f"<:W<˳<\x0c~$s<:8<\x0e\x1a\x1d<\x15\x10.=a(;8<\x1a\x1c;\x11$3\x1061:`\n_$4˥aЩ<ɻp\x1e=\x11$3)\x06D\x01\x0c!vzN=;5\x18b=\x16<\x12\x1b45vX\x04<\x192\x11ly4\x08<\x0bv<\x17L\x03;+tɼ6=f{ͺP;;KV`\n=Jl\x05=ɇ\nVp6\x1f+;^\x16t=u\x1a<\x03\x1f<\x1a3#=j6c:[\r\x0fc<{C=H2\x19\x7f=\x1ay<\nB\x12;v;;=<\x04z\x04\nXs4<66м\x00JS=(<ø|\x10\x1b\x0cW\x08=a<&<\x08<\x07Lλz;2<֟Ѽh\'\x11f\\<)$5\x13y;A\r=eU\x15=\x17_u x:մ<+=̅<7(<\x18;nd\x07W\x02%\t<9#=΅K>W=l<;\x05;\x143;3\x00\x04\x15\'\x0f=0@:jl}g<\x0c3F<8\x1fq<3ύl\x1aЭ:\x02\u05fcu5Ӽ\x1eU\x05=H\x13\x1c!\x0fqvv\x14<\x1ev<<\'<л\x14M\n\x067+<\x1aIq\x10\r<<2<:OfM\x1a<; =8\x1c<\x0e<;w;S1wѼy><\'+<+dK;DλI\x1f:4s;]4^vY;Ǟ<p\x04\x1f:CS5Rx=\x0f[7\x16\r,<5\x14F<\x1d\x03Ud=xɺX;s*S\x10==0|ցd;nJ}c\x10j̀^vYS3=//<^vY!5\x02-A:$\u038bSb\x14<\x02Щ-#=8춼\x1bL"=Ěu4U;\x08:\x0bspm<`O<\x15vkT<~hg͊\x1a=\x02+p@=Ud<<\x1cf?=\x056,W^o;Rc:`J\x01=k7W7c\x07=tX\x1b=,.Z\x03=<$=q-<\rZm\\=i;\x08K\x1c=;0ɇ<(<ļP\x01%<\x08<;\x06"B;\x14-=3퉼\x1ag~\x1b6\x05Le\x1f=2\x13=\x08\x00\x0c;\x06=>(\x1bk=.\x03\x1f_<} =6mI.Ȳ!DC7;H<+Uȗk\x1dH\x0fȼj<\x14;e-<9t\x1cLB=uT<$\x05zЫ<\x10\x15Iz\x12=\x1bTLHm\x06;\x1d0N2y~<^=\x0eƼYa\x16<\x00!=.>2"<4=q\x19<ź =\x01~\x00=J?<\x12\x07ѼԻk\x0em<5/\x0cj:FL=^;<\x13N\x04=):]\x00:\x15\x0e:JɻZt0S:Er=\rx\x0f<\x16\x14-\x07jcC#<\x0ez+~\x1b<_-Nh~\x1cb<*ݻt\x03\'=<\x13%\x14\x1aP5;!\x0fԱ\x14\x12?\x02={\x1d;ݚ<*]\x17\x0e=!uB=ź AhJ~4u;\x05)n&9?\x12`l6\x18w\x1b\x7f9Zl6=Fd=ͽ:\x03(', 'text': 'Visiting College Students | Summer Session\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Skip to main content](#main-content) \n\n\n[![Duke 100 Centennial logo](https://assets.styleguide.duke.edu/cdn/logos/centennial/duke-centennial-white.svg)](https://100.duke.edu/ "Duke Centennial - Celebrating the past, inspiring the present and looking toward the future")\n\n\n\n\n\n\n\n\n\n\nEnter your keywordsSearch\n\n\n\n\n\n\n\n[Menu](#off-canvas "Menu")\n\n\n\n\n\n\n\n[![logo](/sites/summersession.duke.edu/themes/tts_labs_ctrs/logo.svg)](https://duke.edu/ "Duke University")\n\n\n[Summer Session](/ "Summer Session")\n\n\n\n\n\n\nMain navigation\n---------------\n\n\n* [Duke and DKU Students](/duke-and-dku-students)\n\n\n Open Duke and DKU Students submenu\n \n\n\n\n\n\t+ [Courses](/duke-students/courses)\n\t+ [Calendars](/duke-students/calendars)\n\t+ [Tuition & Fees](/duke-students/tuition-aid)\n\t+ [Summer Session FAQ](/summer-session-faq)\n\t+ [Drop/Add, Withdrawal and Refunds](/duke-students/add-drop)\n\t+ [Housing & Dining](/duke-students/housing-dining)\n\t+ [Register](/duke-students/register)\n* [High School Students](https://summersession.duke.edu/credit-course-options)\n\n\n Open High School Students submenu\n \n\n\n\n\n\t+ [Credit Course Options](/credit-course-options)\n\t+ [Calendar](/calendar-0)\n\t+ [Tuition, Fees & Payment](/tuition-fees-payment)\n\t+ [Drop/Add, Withdrawal and Refunds](/dropadd-withdrawal-and-refunds)\n\t+ [Transcripts & Transfer Credit](/transcripts-transfer-credit)\n\t+ [How to Apply](/how-apply)\n\t+ [FAQ – High School Students](/faq-%E2%80%93-high-school-students)\n\t+ [Language Proficiency - High School](/language-proficiency-high-school)\n\t+ [Policies](/policies)\n* [Visiting College Students](/visiting-college-students)\n\n\n Open Visiting College Students submenu\n \n\n\n\n\n\t+ [Courses](/visiting-college-students/u-s-students/courses)\n\t+ [Calendars](/visiting-college-students/u-s-students/calendars)\n\t+ [Tuition & Fees](/visiting-college-students/u-s-students/tuition-aid)\n\t+ [Visiting Students FAQ](/summer-session-faq-us-visiting-students)\n\t+ [How to Apply](/visiting-college-students/u-s-students/apply)\n\t+ [Language Proficiency](/visiting-college-students/international-summer-scholars/language-proficiency)\n\t+ [Drop/Add, Withdrawal and Refunds](/visiting-college-students/u-s-students/drop-add-withdrawal-and-refunds)\n\t+ [Housing & Dining](/visiting-college-students/u-s-students/housing-dining)\n\t+ [Transcripts](/visiting-college-students/u-s-students/transcripts)\n* [Getting Around Duke](/about-duke)\n\n\n Open Getting Around Duke submenu\n \n\n\n\n\n\t+ [The Duke Campus](/about-duke/duke-campus)\n\t+ [Parking & Transportation](/about-duke/parking-and-transportation)\n\t+ [Your Duke Identity](/about-duke/your-duke-identity)\n\t+ [Your DukeCard](/about-duke/your-dukecard)\n\t+ [Academic Services](/about-duke/academic-services)\n\t+ [Counseling, Advocacy & Health Services](/about-duke/counseling-and-health-services)\n\t+ [Buy Books and Supplies](/about-duke/buy-books-and-supplies)\n\t+ [Technology Help](/about-duke/technology-help)\n\t+ [Duke Libraries](/about-duke/duke-libraries)\n\t+ [Athletic Facilities](/about-duke/athletic-facilities)\n\t+ [Other Duke Programs](/about-duke/other-duke-programs)\n\t+ [Exploring the Local Area](/about-duke/places-to-go-things-to-do)\n* [Contact Us](/contact-us)\n\n\n Open Contact Us submenu', 'ref_doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e432f465-7336-43bf-98c6-3fdbd05f66c9', 'payload': None, 'score': 19.682046632058295, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '72941', 'document_id': '978cc5f7-518d-46c1-9a1e-bd564203f398', '_node_content': '{"id_": "e432f465-7336-43bf-98c6-3fdbd05f66c9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "978cc5f7-518d-46c1-9a1e-bd564203f398", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "hash": "a7cd9e930147aa8e0f3b4488d046ed23e992188b48df2708094d8b6c9da528c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0bd6314a-1e94-4749-9a6e-5da9c1fa0569", "node_type": "1", "metadata": {}, "hash": "c6bce8616e4a8e6d7db737b8856089e976713a4829bc3fe8d3c9ec16aa6bab96", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 17, "end_char_idx": 3353, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/summersession.duke.edu/index.html', 'vector': '̒\x1eϽ𩽲J9TD)[\x02͍輟d\x1f\x0c2=R6p<~G/\x04=5`=NR<]\x03{<"ú}%i"7^<ꚼXQq=tk\x17;A=\x1c?W\x07(\x0f!;J;uf\u07bc;!<&\x170(<=Z\x10\x08G;:\x03_}=2\x00<\x1a<ꕻ<\'D4<*\\讲;NBa<=^v=<\x14=\x171B9a[=\x18h=@V;~\x1evL0/\x04=\x0eQd?ﰻA"\x06<\x01\x11so<[\x1e̼\x7f<-t=\x17=\x1fd;7\x1aR\x0f<#\x05ϼRp\r:@9=b=\'\x10XCۃ=n:<$<(n<ۼkB<`89Tļ\x07Qoq\x15a<4w=d{j,=J%<.\x11T <@1\x1a#\nl;8`$>=w3fZT鼫\x0fR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 86.04144183004362, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 85.79329988783277, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 67.84771553764907, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 66.96360850680638, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{38299 total, docs: [Document {'id': 'test_doc:ee4dbea4-c157-49e7-b3c4-48b8ff97964c', 'payload': None, 'score': 29.75543031689897, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "ee4dbea4-c157-49e7-b3c4-48b8ff97964c", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d2eb495f-74b3-4c40-aee5-0ccb93d5790f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "a7d0e6b1ab04608cf3248fdd19d824aec6ca4ea6197171f0476cc550cb45d50c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {}, "hash": "81597260b102dd3a422da28d182da5cf16d570823aa79ad9fa5e7e8af0f8f67a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 14470, "end_char_idx": 18770, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'bëx<ؼv>R\x058"U8X;s\tlV\\GO=\x05o\x07=̲3PoTm\x1fϢQ=q;;ղ=\x078a\x7f\x05\x90k<\x10P<\x1b]屮%\x07$]==U<~\x01%=]k\x10;<\x0c<\\\u07bb\x1etg\'!m<1a(6~μEQ\x1fs<"<\x06Uκ2\x02p];\x0e=\'-<\x0b\x12=)0;\x17`=C4=Q\n\x02=CǼܹ\x01=p\x14n<Ņ9<\x14I0\x02\x03Yh<<9N\x1d=_==;d\x05<ղ\x06\x11\x12\x13=k;Q\x04M<=\x0cw:\x0fl<\x13BS!\x19MdDaq??h5<))=\x10f[=JKm\'<;!J<\x17&(:źx89<\\sV=j\x041͏-٨=0<+<+\x1f<\r:(p7L7<ڧ0NJOR=\x82;_/\x1b*l\x18;y\x14%F=5;\x14C=O\x05=8\x1d\x07Ir \x03-\nt;\x06\x07ea==a;5\x11=3>tx\x07OҼ(DD3>iG;6\x0f<*й\x16u=P^ܼ8P%v՜:,cIrv^$7@@Z;)<(\\9ݥ<¼\x1d<@r ̼[6=\x0cQk<">VYz;\\s<Ӄ<4g\rPzDy+úo\x1cԶ6+<<%<ͮza5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհa5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհ<\x08,g=Dd;b\x18=\x06a\x13żzv8\x15\x10"=k\x1a=h|r\uf500hٽ\'=+;Cs\x15\x12R\x07=>=Z03;\x06=\x15F=\x11=\x0b<\x13-)7\x1e|;Cw\x16\t8\x11~=\',<\x1c~ؼZ03\x05t8;\x18=5"<+\x11#Qf<)\u07fbrX`z\r<آ\t\x16<{zS㼠\x05i\x0b*\n=[G="\x1ew\x18=\x12ps+ĻZy \nSP\t)\x022=;RM(\x11<\t\x15t<\x1b_=;vY<1BFi\x1b=\x1f<\r5<6mW\x1bE=*=8<آ\x13\x01\'ޠ:;JD&=jX{Wܶ<<ƨ\x07Rϼ\x11!=\x01\x13\x1f;\x02=9n+&\n<<0{\x11мkh.=!L\x10<\x19\x0e nFQ=\x1dީ=\u0557;H\x1e\x7f\x04ּ\x0f==<\x113Swo{<,=%\t=sa\x19TH\x0e~<.B<\x7f=~z;FtkK:\x05,`\x0e꽼;\u0ad5u\x08w];ȼ\x0co:q<;m>\x1e+N}\x18<:2"=\x01!ϼ\x16<\r=\\ʊ<Ȑ\x0f\x10\x1f<\x7f.\x0bR<\x19-4z\n=\x06o\x15;B;=.\r<ڊ\x1bB;>k\x14̎ڼ\x05r{\x11<<آ\x13&竻OegF9%;<\x7f\'L\x1e0BFNI;<\x0c\x08<2;\x01QvY6üw<\x1a_˼NZS&<\x00?\x11y?\rwS<\x15a;WK\x022={W<=h\x08==Ҥ\x0f=\x1d\x19=\x12k$=t={):6*NY,7\u07fb\x7fm\x1bk=x\x17:BA=p<L\x19!ki=.ͷ:<<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nLibrary Spaces\n--------------\n\n \n\n\n\n\n\n\n\n\n\n General Rules \n\n\n\n\n\n Study Rooms & Team Rooms \n\n\n\n\n\n Functional Rooms \n\n\n\n\n\n Wind Finance Lab \n\n\n\n\n\n Multi-Media Booths \n\n\n\n\n\n\n Please follow the general guidelines below to use the Library spaces/rooms:\n\n1. **Open space seats and study rooms are on a first-come, first-served basis**. Please take your personal belongings with you when you need to leave for more than 30 minutes.\n2. Do not use personal belongings to occupy seats. The left items will be cleaned up by library staff and we will not be responsible for any loss.\n3. When using **functional rooms** or places with equipment, please send an email to [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn) to make a reservation, then go to the 1st floor service desk to exchange your ID card for a temporary key card after the reservation is approved. Each reservation is limited to 3 hours with additional 3 hours renewable. Course reservations will be given priority.\n4. Please **keep quiet** in open space, use team/seminar rooms for group discussions.\n5. **Telephone booths** on the 3rd and 4th floors are available for phone calls.\n6. If you need to move around furniture in a particular space, please return it to its original position when you leave.\n7. Please keep the environment clean and don’t litter.\n8. **No eating** **on the 3rd floor and 4th floors.**\n9. You can [check for space availability here](https://dukekunshan.emscloudservice.com/Web/BrowseForSpace.aspx#), but please note you cannot reserve rooms on this site.\n10. Contact to reserve classrooms.\n11. Follow any additional guidelines for other special spaces listed on this page.\n\n\xa0\xa0\xa0\xa0 \n\n\n\n\n\nStudy rooms are on a first-come, first-served basis, and we don’t make reservations. Reservation is required for events and classes in the team rooms.\n\n \n\n\n\n\n\n| **Study Rooms** | | |\n| --- | --- | --- |\n| **Floor** | **Room Number** | **How many people can fit in?** |\n| **2F** | 2103 | 2-3P |\n| 2109 | 2-3P |\n| 2111 | 2-3P |\n| 2117 | 2-3P |\n| 2119 | 2-3P |\n| **3F** | 3101 | 2-3P |\n| 3102 | 2-3P |\n| 3105 | 4-6P |\n| 3106 | 2-3P |\n| 3107 | 2-3P |\n| 3002 | 2-3P |\n| 3003 | 2-3P |\n| 3004 | 2-3P |\n| 3007 | 2-3P |\n| 3111 | 4-6P |\n| 3112 | 4-6P |\n| **4F** | 4101 | 2-3P |\n| 4112 | 4-6P |\n| 4113 | 2-3P |', 'ref_doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d6d27406-84ee-4f2e-8fe9-40d837477efc', 'payload': None, 'score': 8.034300961561675, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '156358', 'document_id': 'b921af15-be3d-4648-a832-9eff128b796a', '_node_content': '{"id_": "d6d27406-84ee-4f2e-8fe9-40d837477efc", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b921af15-be3d-4648-a832-9eff128b796a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "944bdda3371daca1284fd390ca0a29a9d73fc0764ea88d2c55fcc8bb495cf062", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f14b732-8c96-4cc7-aab4-34c23342640b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "b811c1fef340a9b0e4ac9860aaf0bcb4eafbaec57628f2ce4f38eb3f1faa6f9a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36aec92c-b4af-4794-9536-0cf40ffc99bb", "node_type": "1", "metadata": {}, "hash": "9f61e90e3cf6222cad0453557dba29fa4656b2d87ad996c0b95a8bf1221add9a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 38850, "end_char_idx": 43900, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', 'vector': 'ꁽ\x18;ًL;;\n\x0bBXb\x07<\x10.\x1e=FB<1;Ҽ?\x17=\u197bwI|Q;\x12;{eRWŜLüY\x05=،<\x062ҴbEnYg\x17l$\x17\x13=ND1=\r!5"G<\x15\x0eD(!\nh\x1ab\x1d=\x0eV<\x07=h`\u07bc&=\n\x1bd=3u<\x1d;k[:\x04PО퐟\x1an(|<_:=7v<\x15aR\x00Ǒ\x0b<<<X=ԼbL=Bx<\x00f=jZr=\x0258r=<;fK?7)Q\x02\x7f<ܔo,:,\x19C;<;\x03\u05fc@To3\ru\x03=Vt\x02):s\x16=6\x06\x13V eRWVP;@?ޛ;+0;(\n?k%ڍ=*\x13<~ąw\r N\x07=;;ll\x14\x0b7)Q<;lI+"~\x15j\x06\x1e3=&+<@<¼v\x08̢BXg=\x0f=. P\x0c=^9=J<֡ٻ\x06\x172Ҵ:<8"9=!\n*9\x11oŻbLp8\x00\x01v=6b<;ll;RZ\x1e\x11\x00(=m?k%=Pp<', 'text': '* ***Time:*** *10:10-10:30 & 15:00-15:20*\n* ***Location:*** *LIB 3015 Tea House*\n\n \n\n\n\n#### A Brand-New Learning Resource Centre – Your Gateway to Learning\n\n*Xiaojia WU, Assistant College Librarian (System & Facilities), Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nIn this Poster, we invite you to step into the enchanting realm of the Learning Resource Centre, where the pursuit of knowledge has no bounds. Building a brand-new library is to build a knowledge palace for readers, thinkers, and dreamers alike. This poster provides a glimpse into the myriad treasures and opportunities that await you within these hallowed walls.\n\n1. Exploration: To embark on a journey through the vast expanse of literature. To discover books spanning genres, from timeless classics to cutting-edge research.\n2. Innovation: At the Learning Resource Centre, we embrace technology’s transformative power. You can dive into our digital resources, e-books, and interactive learning platforms.\n3. Community: A library is more than just books; it’s a vibrant community. You can attend workshops, book clubs, book fairs and lectures that foster intellectual growth and social connection.\n4. Empowerment: Knowledge is the key to empowerment. Highlights the various educational programs, information literacy instruction services, and career resources that are available at the Learning Resource Centre.\n\n \n\n\n\n#### Learning Support through LibGuides\n\n*Jane ZHANG, Reference Librarian, Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nAs a common practice among libraries, LRC makes program guides to help students of different programs to learn about library resources and services related to their study and research. The program guides enable us to further consolidate our collection to the requirements of program syllabi. Previously we stored program guides as PDF files on UIC’s Moodle – iSpace. With information from course-related books to databases to library services, a guide can be more than 10 pages long, and not very user-friendly. This summer, we officially move the guides to LibGuides. The platform provides us with more flexibility and possibility to present library resources. First, with the “page” function, the sections of the guide are more visible and the organization of the guide is straightforward to the users. Second, LibGuides allows us to add more functionalities for better user experience, including direct linking to the resources, the support of multimedia contents, adding notes or contents without disrupting the flow of reading. Furthermore, the guides are cross-referable, allowing the library to build a complete information literacy program to facilitate self-learning.\n\n \n\n\n\n#### Practices and Challenges in Academic Library Space Projects\n\n*Pin WANG, Team Leader of Library Operation Team in XEC, Xi’an Jiaotong-Liverpool University Library*\n\nThe poster looks at the practices and challenges in academic library space projects. It consists of 5 parts. The first part identifies the user activities in the library, such as collaborative learning, individual study, library classroom learning, socializing, events and exhibitions. The second part shows the functional spaces in the library, including learning commons, group study room, training room, reading pavilion, research commons, outdoor area, exhibition area, etc. The third part summarizes the most recommended practices of library space projects, including communication between librarians and users, frequent meetings with related departments, visits to other libraries to find out good designs, etc. The fourth part tells us the challenges and solutions, such as noise reduction, seat occupation and power outlets. The last part shows the future opportunities of academic library spaces. With the development of artificial intelligence and education reform, academic libraries are facing their challenges. In the future, the library should merge into the innovation ecosystem. Space innovation such as demand-driven and technology-supported labs to enhance user experience may be a very good start.\n\n \n\n\n\n#### Professional Excellence: A Library Assistant’s Growth Path\n\n*Cai YAN, Library Assistant, Duke Kunshan University Library*\n\nThis poster will share what professional qualities a library assistant should possess and how a new library assistant grows in the workplace.\n\n1. Learning by doing: This part will share some examples of how a library assistant learns from doing everyday work.\n2. New library, new challenge: Moving to the new library also brings about new challenges. This part will share the case of the DKU Faculty Works Project about how this display project turns from proposal to reality and the constant process of occurring and solving problems.\n3. The nurturing of leadership: This part will share some experiences in training and organizing student workers, thus shifting from the role of a follower to a leader.', 'ref_doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:75b0644f-1aa4-48e9-8944-0ad15f0edc50', 'payload': None, 'score': 4.472326396705618, 'document_id': 'index.html', '_node_content': '{"id_": "75b0644f-1aa4-48e9-8944-0ad15f0edc50", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "152dfeb0-eda7-4982-885e-b8bd274fd1aa", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c646a76d-1b42-402a-a04b-29eeefc6ee86", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x03c\x05?nTG\x13\x0f;1yӼR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 4.4723263967056175, 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 4.4723263967056175, 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{43507 total, docs: [Document {'id': 'test_doc:2c4c81ee-bde8-49b1-8d01-2b0033ef4b75', 'payload': None, 'score': 114.60981431431884, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "2c4c81ee-bde8-49b1-8d01-2b0033ef4b75", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:26", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ine.dukekunshan.edu.cn/project/your-g/irl-rayray-cross-national-media-content-creation-i/n-cultures-through-the-lens-of-university-students", "filename": "index.html", "filetype": "text/html"}, "hash": "bc47c1f264d861136a121cdf3db84b9a96a9978021ec6b2a6b73b4bc30ad7a3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ae5a82fc-09f5-4ebd-916e-5e983441cb2e", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "c5a0b0aeb9b1d0b8e5a16916bc7ecc855065f27a81457ee096c8d326d3aa7f43", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b69bb5af-6195-49ac-ba00-e0d15f55fe3c", "node_type": "1", "metadata": {}, "hash": "55882c9c41472a69c8dc473d9af35114fdfc02a816745d3d00772647f92731f4", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'c*C\t$ݼ*\x16ݼ4;,l\x06\x1c\x07=jVW\x1cHƻqh:\x07\x15\x1f=WCb;\x17D;=\x0c\x0e\x01\x02&ϻyN=R/;Ż\x1c=e\x07\x1c=T\x196<_O;R=n1e;<\x06_\x0c=T\x08뼻:Ǽtm|Y:ԝ\x11\x00<߅<\x071=DV?b\x04<_~`ݼ\x0em;hW};r\x1f=j"\x17D;=5x=\x16c;&ռh`4=\x17D;$\x08%l\x03=OߛZ=e.O»7`мV;r=k\x1c\x0c\u07b4Si\x11S<ɼ\x1cR7\x0c;O`*=Mf<3\x07\x05:\x00\x15\x1c(=\x07T=T<)W(<:\U0007a4bc\x1ae\x08%9N\x03=c\\F=O~J.m^\x08WY:1\x08}%:\x0c\u05cbbFû\x070=a\x00\x08V(*~{<:<=4<=A<\x15-u\x101-x\x7faޗ<\x12\x19\x13V[\x10cR(qfKZ:\x0b\x06;)W:;\x1f\x0bEt<;,<:_}\x1f\x0b<\x07`]\u07bcv:t\x1e`C6ѼO#;5r=XH\x1cg:<%L<2fm3==X\x10"A;VjؼJ\x16=G\x07ir&\x04)=~\x12d綼^Y¼\x10\x1aqX<\x1d8(t\n紼*<:=~m\x17<{o8\x0e<3I<^9XA\x11g8y\x17\x1260d#\x17v=\x0c=kn\x17=6Ċ0\x04\x01=k W={<=\x0b\x18\x06\x03=\x0e0=\x0e<\x1e*$%,\x1c\r:JĻ+=L J\x10\x12\x01= g08Z=[\tm:\x16\x10\n<˼1\x12X<̌<\x0b< g2;\x10<\x168=͞\x19{<#<]\x1e\x17\x06<(<\x01;\t_=\x02W\x04\x02=$\x13;e\x15\x07<뺮\\H?8<,VI8B5ż\x03=о\x0b7<ܮ4=܇\x1c\x11\x13δ;3<ؼ,\x08ح(=UVù\x1a =:}P\x0fA~ü*=i\x16\x13{M+Hz\x11;N<\x1e=n%\x00\x19c<;ҭ<6e=3"=R\x0c<[TW2J\x04T]*\x13=v\x19@: wPi<\x01Y=\x1e\'\x1e\x04@=9\x7f<<\x02\x07PЏ\x19d<`Yg<#@ukջ=\x13;%>;2n\'\r$+y\x07\x01f\u07fbb5\uef3a\x12;(<\x02=\\<\x114\x111\x04=\x0ev<,\u05fb(\x1b"<[k{\x08&.G=;\x04H;\x05]\t>iY.=k;c<<\x7f<÷gE7;\x00R:vV:<\t\x00=\x11;\x7f:<̘<4;\x16hZ=zʻ᩼e;&b_\'=\x1f4L-2?=Z*\x10<\x116ٺ\x08|&=n3;\'\x17<\x116Y\x0e\n?,\x1dC&<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3=펼\x10l0Tk\x00w~JO\x06\x07xn<\x1bu=\ue9fcgr<=g\x13<\x03ٍ<~\x13\x7f#\x11i<\x1e_\tb\x15<\x19Ev2Yyú;\x04j8\x14DG\x0cRX<\x1c\x18=/\t=ۨ\\\rF\x7f\tW8"=\x1e=1\x01\x16;/+p;߹\u05fb\x14m<1<\x7f\\<;kaw\x0f=B\x01>Tw:&\x0fs\x1c=և"*=}) \x1d&=6<%#I ˔Rq=M\x02<\x07=\x11R\x11l`;%\t\x07<45j=-:H\x1b=N}-=\x11㼻\x01\'=d\x10E¡N=N\x15n#=\x0co;\x7f\x01`a\nx\t~]0 Ev<\x19,+qi\\<\n<\x0fa< i\x14<Ѥ-\tr.t&F<`H<\nӵ<2Y<\x03\x1a><*!\\\x1d:Y\x1a=\x1dT<[e(=\x1eIjo0={;8؞U:', 'text': 'It is conceivable that the individual might even be offered a new contract, as in the case where failure to reappoint is due to the loss of an instructional component in the position, but the individual still performs a valuable service.\n---\n# Guidelines for Adjunct Faculty Appointment at Duke Kunshan University\n\nGeneral Criteria for Adjunct Faculty\n\nIndividuals who are interested in engagement in the DKU community may be considered candidates for an adjunct faculty appointment if they are committed to one of the following four activities at DKU:\n\n1. Teaching a course or guest lecturing on a regular basis at DKU.\n2. Advising DKU students or serving on graduate committees on a continuous basis.\n3. Collaborating on research with DKU faculty, ideally on projects involving DKU students.\n4. Providing strategic advice to DKU at the university level or at the program level, helping raise the visibility of DKU within and outside China.\n\nAll adjunct faculty positions are approved in advance by the Vice Chancellor for Academic Affairs (VCAA), and adjunct faculty can be hired with or without a search. Initial appointment can be made any time.\n\nAppointments may be offered at any of the established ranks or titles for which the person is qualified. The “adjunct” designation precedes the specific rank in the title. The particular rank offered shall be commensurate with the candidate’s current rank in their primary academic appointment elsewhere. If the individual does not have a current primary academic appointment elsewhere, the rank offered will be commensurate with education, experience, and professional distinction.\n\nInitial Appointment Procedure with No Search:\n\n1. In the no search scenario, a unit head (including division chair) in the relevant hiring unit submits a nomination letter to all regular rank faculty in the hiring unit. The hiring unit can be any of the five academic divisions at DKU (UG SS, UG NS, UG AH, LCC, Graduate Program), or an interdisciplinary research center. The letter should state why the candidate merits consideration for adjunct status and should propose the adjunct faculty rank or title (e.g., adjunct assistant professor, adjunct associate professor, adjunct professor, etc.). The nomination letter must be accompanied by the candidate’s CV.\n2. Regular rank faculty in the relevant hiring unit vote on the candidate. If approved by a majority vote of regular rank faculty in the hiring unit, the hiring unit’s recommendation for appointment is submitted in writing by the unit head to the VCAA along with the candidate’s CV.\n\nApproved by the DKU faculty March 22, 2017\n\nVoting should be done anonymously and a quorum of two-thirds of faculty in the hiring unit is required. All faculty eligible to vote at meetings of the Faculty Assembly are regular rank faculty.\n---\n# Initial Appointment Procedure with Search:\n\n|Step|Procedure|\n|---|---|\n|1.|When the hiring unit, in consultation with the VCAA, determines that a search is required, a search committee is nominated by the hiring unit head to initiate and conduct the search. The search committee consists of at least three faculty members in the hiring unit. If any one of the hiring units cannot provide three such members to serve on the committee, the unit head must nominate an expert(s) in the candidate’s field from Duke University or Wuhan University, who will be invited by the VCAA.|\n|2.|The search committee may also choose to nominate additional experts in the candidate’s field from Duke University or Wuhan University to serve on the committee, to provide further quality assurance, but this is not required. The search committee keeps the relevant hiring unit(s) informed as to the progress of the search and draws up a shortlist for their approval.|\n|3.|Following interviews with the short-listed candidates, a selection is made by a majority vote from all regular rank faculty in the hiring unit(s) and the committee presents the recommendation of the hiring unit in writing to the VCAA, along with the candidate’s CV.|\n|4.|The VCAA will forward the hiring unit’s recommendation and candidate’s CV to the Adjunct Appointment Committee (AAC), who will make a final recommendation to the VCAA with a majority vote of 3/5 members.|\n|5.|The VCAA will make a decision on the appointment.', 'ref_doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'file_name': 'FACULTY-HANDBOOK-_2021_V7.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1c87e679-887f-4a0b-b35a-c188f0bcaed8', 'payload': None, 'score': 32.5371176953276, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '193207', 'document_id': 'd5a239be-05cf-45e0-9828-34393051404c', '_node_content': '{"id_": "1c87e679-887f-4a0b-b35a-c188f0bcaed8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d5a239be-05cf-45e0-9828-34393051404c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "hash": "8069a53c337274902b62806d298e9279bc96e16473bbe77769fe70f130122797", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6caff452-949e-40d1-9746-c66f5be65cad", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "hash": "58495177c60795f324bd77fb361e896b2432564f79796a595bdb92dbb9e8ef49", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "047b0129-8c66-445f-8058-67bcf739a63d", "node_type": "1", "metadata": {}, "hash": "768d0d40af3f683dbd2807beb595e2b7e8dddfcb44178481a33e76165e973cba", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2569, "end_char_idx": 7099, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html', 'vector': ']0$ȝ5@tx;\x1c_\x192@+`!<]@\t<<λ떼mT\x0b=\x1d\\T*\ue1bcQl<\\\x16=}E"= \x06<ɼSv<\x0ef\x04\x1d;yvm%<͑;iIz\x1a\x0bH\x12=\x06:<ļ=\x18\x06O!";.0t^\x0e(J<~#\x00\x1b;#=T{yv-;+ȼ0oQ\x11\x11n\\<<\x08d;K\x04;p\u05fcl*=թ,\x02\x0b=,;Tȭ\x02ol\x1a]<;\x1eE\x13Oؼ0Z<&\'\x08Q\x19=\x15Sb\u07bc\x0b;\x15\x11!<\x1d<\x12!Y$<\x1b<\x15ɥ@}<=<}(\x08\x17<|F=ޝ\x02=*O;ȝ5#=,8;\t\x1a!\x00;l\x0cP\x05\x1bCߌ<=;<\x1c\x19p\x13:?k<<:\x1cü-\x00=Z=\x0c8Xd7cR̼4\x0bs\x05\'\x12<5\x06=*\r:1\x14o;u\ta;."<;T,<[:TY<%;~=\x1bc\x00=|\x18;\x05M=\x184~;|\x0eJD;\x16P\x04G\x02d qQ\rD<;+@\U0010be49D=\x14N5ge=<*;*=U<<Լ\x0f;;=8\x7f<ڈP=b< \x10,\x04<_Z\x021t=lܴ꼚\x141<}I+@\x04<|u\x1f.J]\x11\x07,\x12^cX\x1c\x01<Š/\n=\'\x174<\x00j㻚f;\n?}l$ɘ(Ly<\x17=>\x19E\t=\x01\x030!<([:\x1b"<:\ne=\x12=./%\x08%=1<\x1e$=YoZ?;z\x0b/6\x08%\x0f\x15;\x1fV%=_\x1d\x17J.wd<\x7fg}*\x0e<\x1b=Z\x11p0G\'亥<<\x1b^$P:|>_Sh<>B\x11=f<(ݼQ=}< Q~=\x005<\x1bd$b\x06\x084;5ч;\x10t~ռ+A;6d;+\x0b\x05\x0b8\x12:I_-3j2?=j;kYg<;ɻ\x08;\x05v<\x11\x17<<0<\x04A=zlS<^8<+6=p\u07fc\x04ٻ<>=\x10켢a\\\x08\x19I0=Ca&\x0cf<31=\x0b=a!=\x18o4=+Jt=ǪD/D\x07C\x03=\x07<=:\u05fa\x14=5X\x13\x16\r̼\x1bJ_K1=\x06l\x1b0=\x1el:\u07fct/<\rN<>=\x0e\x01\tsJ<\\1\rλnY\x1e1\x17=G;+=~\x03=M2!=\x14M=qa=w\rH<\x1c="<\x062;AZ4?\'Ц<\\=a:Iۻ\x10]թ6<[<\rJ=<\x0f;.[8<\x1fxsx<3\x12\x0f<+>\x1dIW<Ø]\'-\x0b&<\x15X\n;d\x1f<㣽]&z\x7f\n<\x0cZ\x16/\x19\rKoI<Ǫ<\x04z=Ț{y~=:04>=6=\x7f<̬Z0\x05M2s<6_vP\x01V?=>\n<\x07<\x11\x16G\x12;JV<=\x1fQC\t%6ֽp̈<}\x06Ƽ\x0e\x13=\x03ת=9vn=09H\n\x1fӼ8Ɯ;d3\x06qN=y=Y\x01<\x10*݇=Aˏ\x02;=\x18\x04/<\x10J-Tš~zm<"u;.{<_vP<ջ\';v;6\x13`H:@:F<)*=^9"\x08\ta\\;\n/"\u05cc<\x15~D<\\$\x1b=;MѾ\\?\U000e45fcwƼ\x08\x07V"=\x15< ռxƻk伩\r=]1g\x04[=R"_;\x0b&Ϩ\x00B#\x1f9=ż\x0eD:C!=\t\x1a_<=iaG&#=ؑJѼ[oռy7c=\x05Wy.=:<\x1a\x04\x8f49z:<,`<Ԗ<\n䀞:\x19e\r\x7fgJ==\r=:i(\x14<\x05Cs\x1e~.ԗ=v6;mw,=5=Լmw,=\rT;/";$<\x05;pp<\x10!\x18\x02̅=XȻ\'輵pSȋȼtc="Ƽ\r\x14;\x10P\x00[9\x02=?C\x04<6=3do(\x13\x12;-HW=]R<Ǧ\x03qM0$\x0f5=l\x14[svd\t-\x7f>\x0c=F.3A\x08=\x19 =\x1b\x05\x0c<ջs\x1e\x19q{\t=y\'\x11dF=\x01aL<\t<\x0ck=\x14;\t <"\x05=\x06R\x02t\x14<\x1f`ڀ\x01 9;mw,+z<|S\n3A<49|D\x140 =ռtj:C<^\x04;+<\x05<嚼Y;\x1a\x07S;F:ga7P=`d\x04N=\t\x1a_\r7\x13\x076Y+zE\'A<~\x103=\x10x;Ѽzh<@\'K<+EA;\x7fQ*=\tc<.=+=\'xG0;ҙ\x17L2\x0f\u0383Vaz\x16\x1eϼ\x04+9S,\x08=j\x0fZ\x00<(<1t\x03\x05u\x0c*;5\x1c\x078*\x11̻A\x03\x1e<1(ӻ\x1e?m\x08<\x17\x15`\x13*Wf\x010\'$Vjַ=::\'\x01*=\x1f\x11=\x08\x10/=[:; XX3\x18"\x12dN=hp"<\x15\x04XD;s\x0f=i\x14)$\x02ż\x0c\x19 X<\x08;{<ϔ\x16\x03\x05<\x1e\x02<-_\x1aַ\x0b;C.64=%9;:ĺ8T,V;f\x14W=RȮ\x04\x08=i\x1d:2i;ˋ;\x18\x08=JVồ8==\x08\u0378:\x05<ͺР=T\n<\x06<\x1e\x193\x00ˑ\r=\\\x15h<<<\x17;&\x16\x03;CɰF꼫¢<5.a,\x00S \x18\x0f\x7f:< üP\\\x05<ỼM<\x0e\x02=qꗛ;\x054=ȓf\x16\x03=\x19=]\x18\x02,<Ƽ=<\t<\x03\x19\x1e,!=\x01ƼF;\x1a65=d>=\'<Э\x08=Ј<\x17PӖ;\x00B\x065\x02:\x1d؏]5><51)=р<%=;(I\x7fPs:B+\r֞<\x1cW=hQ;;;\x7fu\x0fhc;;rԆ<}kK;B}: a\x13ܼ:\x10\x19=kn.dz\x1b\n\\$<,Nʟ<(!4\x16\x0cx;\x11<<\te<ς:ʟ\x13\x1aQ\x07=m,\x0e\x11=9\'<~<\x1a@|\x17.ʽ_<\r\x03=h;E=x\x0f7]μ\x02ݛ:P<\x7foa<\x1e]>\x18\x1ep<\'l=QIɛ<.<;S9B:z\x1c<ɳǼa\x0fm];|]μ\x16=\x13b;<\\\x03=I=\x1bUus\n\x13z\x18<5紺|\u058b<\x97cO\x13PFPv\x11q0\x0f(q|!7=@pT:F<\x0fi\x1aa\x08\x07;S:<9Y\x1aGK)=\t=h9\x08=̈\x08\x0f:A=<09༞\x16\x1e \x1f<\x075-d\x19\x02\x1b\r҂6=(JK\x14<˩<.=%o;5r%\x0fi=})\nX\x04=XkY<\\xXp\x11=u{\x15=d<μ4Dg\x1eIv=hI<<ؗ9:$hP;\x13=\x159/=2%\x12m:\x18\x1f<\x1fL\x06$=eEq<"ǻQ\x87\x06Q\x1ez=\x1egd,=46\x1a<\\-yϼOĻqY=n\x1f#=;\x06Xy=\x0b\x1c=D8.<;`/\x0b=dW\r=2"=ׯׯTC=mIƓ曥B:\x1c.W`\x04=\x01:<]AK\x0b\x17(OQ\n=);֑C\'0t\x01=}<\x03c<.Q<\x11W4g\x1aFI<\x04.QҼB\x1f]<\x17<\t\x7f;.6=[c\x04RimX̼?\',2l$;=7`;8CՙW(\x07;\x03}==*Fh]<ϒ;MW=\x0bB\x17]lʣ2;~\x13;o\x1e\r; N<3<9o<\x06;<\x9fEm=\x06<\x14\x12LPy:;]<;\x0c\'\x15=\\濺o7=B\x01=[}ú"=q@z:)= \x17=\x1aj&\x18={<\x12\u0eda9<\x02i-<<컌<\x7f;r̮}t\x1e<[cbV\x19F[y"\x1feķ;Z\x0c7=K;f\';ꆃ<:aM;;܅;\x14<>u<\x08!ջhﳼ\x1bH!<=;\x04L\x07잺\x028\x15\x10v;j!\t=経;<ܣ\x06O\x10V)=-<4\x08d\x08S5\x02b=D*\x169\x1f<\x19\r{H{HNºP<\x02 <\x12\x18ʼ\x02<=\x05=\x0c\x1aj<\x01<=\x112~v=B(<\\>\x0c#\x17IR\uf57d<Ƚ\x08V5䶻 \x16<đ=<4=onӂ\x1e̻L):=\x0b;M;\tf4\x19\n)H\x19k\x0c<\x1a<<<@\x1d<\x1fN]ݭ{\u07fb\x02!C=GƋ蹍i=6$\x15;\x1e<}<8D<\u0557\x02\x17\r_7O=O/=*<|\x08C$#<\x0by\x15=~}ֻx<\x1bHl\x19!\x19\n)=H\x1d+(ԣpНn%[;3iB=\x17=HN<\\\t\x01~O7i\r=EL\n=%%<ё\x00P8t<^$=\x00\x12=m^=IR\x0c=\x00=;\x13<=<"<)@C<"==&<ɑjd<\x06<`\x13\x07]B(0\x03H="T}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em;lw!>_=v\x19gu<ۻ\x03\n<\x0e*4ʼ\x1fE\x00\x03VX\x1a=T;a6}<ޙ8=\x0f=\x026PL6\x06;:5:=\x15r b\x19\\μ#="\x179\x14\x1c=5j"\x14If\x14=p\x0b2#=);9\x11;\nm:9\x047SJ<͗\x18OY=F~$\x1f(=-tQܙ\x02q$.;f\x05iK&!\x00s+\x00Q\x11= <<0\x13\x0c\x0e\x1aO=\x17<\x14M`\x0e=<3ְ;5!ȼ=9\x19Ӏ<\x0fB\x15,<\x06\x13K\x0cU;|\x01 ea瀽\x7fU\x12<ԻF<;\x0c\x11==IQ;G2jC\x03=\'F\x10=Hˤ<\x05*=8Pj+\x01[M=W=\x04\x1a=@;3z@J=O\x04;\x15hJ<^=\x1e\x00=Q=1n5\x12<\x1bb\x11<\x07J=\x7f*=[ZU7\x04o@\x1ei\x0cW=d9=c)=*`A<\x17=\x06(<]Z;%SJ\x18W=\\i\nϼb\tgD\x18~8]\x07<\x10u8=_A<"^\x024\t7\x0bj=w(\x07$=ZF=Ҩ\'zt2Y<+Sؔ\x0b\x1c%Jq?<$ҟ<<<#yKYF0\x1c;vQ\x12=\x0cU}\x06\x01=\x19x;.cXBJļ@:@\x1aX\x19<;\x04Ŧ;K<\x19돶=:\n\x0e\x18<ҫ<\x19yf$=77 dG(\x03\U00089ed9)X61ghEU1I\x02Iռ\t=\x0b\x19f=\x0f<(\x16vh<0f9\'t< =MMRAc*=!(\x00\nU%:Ё;\x01\x1b\x07G\U000dbed8(=py\t\x0e<\x1e\x1b<ȵMۺ>-=ŵ(Y%<\x08a;a»PQ\x0fHSC\r=;!2Ӵ77<\x10\x14\x07RŬ<\x0cO9e\t=h;&\ueef4\x1aq3\'#O^<1<ď3<)Q\x0c\'>$\x1cƼvV;dhȼ=\x12J19>\x03=q*<&{;\x13g7鹼r=1gg\x15=<\x14e]=\x19\x0f<2;`\x17=z\x18\x08<\x13\x14=L4*\tf=3;\'\x7f\x1ai;\x0858;\x01%/:r/<`<\x0f\'G^;i\x17<\x15= @<\x0b"\x009y<\'6\r=4\x03\x1f=ӻl38ټƳ:Ja=k\x0f=E\x018\x03m9$ƴB=\x16< \x1a/;/j\x07<4\x02\'<\x02G\x0b\n{рR\x16;\x1a篼r\x17ݒ;jn\x1b=@$\x16r\x1a=8=\x08\tG\x06*\x04e8=mwH<\x1bR(=\x06\r\x00V\x14\x08\x02 q<\x17;uN\t?j:<7;nn\x0ep;\x0e=\r3C<)H\x14q\x16=|KA;\n\x17b=+9\x12";x<+\x06=ӼzgAsaTL\r3$3<Ʀ<-\x19[G=#v9=)=\x039\x01_\x1dDF2,=Vw;;\x14}j$ <\x1fjuD=X;=p3M=0\x13<[Ǽ(8=z -:\x06CS=\x05eJ(s\x1d.\x07Fga\x1dc8J<Gr\x082ϻY;@@+B<\x037*`+<\x19ؼ,KȓX=ͻ\x14:<%<\x19\x1f|&yI\x1eC\x08kVr<"\x1b\x1dl\x1c;Ϻ:;\x00\x0b\x12!\x01=\x1a?87%=mC\x02!*̚<,<./CA_HT`;u:<\x0e%=5=lyB#\x11^2\x01f\x07jHE夼;\x03;w&\x1c<=v\x10;w<]\x1c\x0b:<;xɼI|ZL!a\x18=!F"EK?g./7])<_\t\x08{J\x15/ha@<E<O};\x04E;@=\x02=s\x1e\x1d<_=,:2\x1b+1<̴λ7=e\x13\x15;b\x13Q.4:<Ȼ(;J=\x1bޕP\x12\x176<\x1dk=S=tI\x01a\'\x15=!F=Cp.=\x04\x03ӼҰ<\x1a\ueffb#\x15\x1aGc.nq\r|&=^\x19="\x0f<\\;.>O7<Ƹ;;4\x0e[6;\x17=;;< :\x7f(<\x1b\x100\nH/w9h<\x02;\x07;Ueջ9h@=I=<<<\x0e<ŕw<ۗ\x11\t=\r5G&Pܐ$D=\x12:=z\x7f\x11\x10;\n\r`\x08 \x7fr<"Iz\x1aֻ!dj\\a*\x15+<\U0004747cq\x19=\x02<\x12E\x02\x15+=!\x02%AL\x15=\x1dr=s]8"<\x0f:\x18#]OfǤo<$<=d\x00H";\x082;3|<\x13ck[`}\x199l!<\t\x10y-\tH=\x12E9\x15@P\x0eM<\x19D<\x15@1\x7fyk<=d=4!;d\x0e}~\x1f{ý$\x12<j/!\x07=d=\x02<[)ү+=n8<[n&a\x07\x10\x12zP<@\x16Fq*=8<\x1c#ߌb\x03V}<\x04\x0b\x192\x1bA= qF16ﮢ;4/R<\x10<\\;VΧ;\x086=xx;Z =\x15+=6Hj<ϋH<\x05\x15:BXB,$.EƼ(_=\x19Z\x0b;ùc=\x0eVITRм{Ȃ\x06/\r\x0b=Y;R\n\x0c<[y<\'J\x19ZK=r=ۓ.yG <\'Ge<\x8d,\x0c)Kx;u#=;aQ9;\x1a\x0f\n="ڼsJ\'19N{\x038bd\x13\x02\x0b9F-Y=a\x1e<ߢ=\x1c<:z%<[2:g\x06ʮ7Buٻ6\x1dv=Db<\x1bE;_}:\x83I&\x14$_D5=(\';6\x1dv<\x11eo=%r=F\x04+:L<Ҭc<;5㵺\x0bJ{\x1br<ڋ9_\x7f+<<γ3=ʺ<<\x04H\x13?\x11;^l<3/be<\x08K=\x1eG<$s\x14:\x1dd¼tdӬbT=|a;Z\x04}$=:]c4;ܺ<8dǼ\x023:!\x04=7\x17<2]:;OW\x1c;ëd\\O\x10=;\x85=+9\x1eq3<\x18;vs#k:=фckkI+\x1b=_#\x19s,R]<2\x07\x17\x1b;÷}\x0cԻ|WFI=I?\x1b\r\'\x10=7m;\x14V݃<ӻ<˴-4E\rl?V:Î=γ;R\x1c=\\\x1e/\x14<0\x05|ȼj:<\x18<*=Y<-t;\x02\x1fb\x06<^\x13<\x0cY}\x0c\u0600\x1a:\x01\x05#=/=\x08=Nj|\nv<2imh\x10[J:N\x12:c켔C\nh=Ք=ݍ=p<\x15C/<{ǏL9RqM=\x1b!<\x17#:@<5<0\x06h<\x7f<\x16\x0f9:\r\x0cкX:\x00&=&`]=\x18K\x03_\x02\x0b\x12FwGg<\x04ix>7\x1a",o\x1d\tN")E\\<\x05\n<\x14H3V;\\<\x01>ƻ\x05\x05n\x07=\x17#\x16=ȼ\x05\r3\x0eN;\n=J:=)l;<\x04\x10=\x11&V\x08<"9&<\x168.T7\x08~=s3=/j6\u07fcisVqJ$\x03ʆ9*:\uf237<,ۼ\x158\x05\r87t\x00=kٖ:Z]R7\x04?<\n^I~F<|\x1d\x12s\x1cl\r;1\x13=<\x04E\x1b<|4D=o<͝\x12V=Ӎ=%\x06=%J=\x18k< \x0e\x0f\x1c\x1a\x10c˵<\x15ഗ\x15<\x17\t{~=/+!#\x18\x1b@8\x12Bi<Ƽ5\tc;إK7\x08\x00>DY;)\x19ZOz<\x15=UqJnI<)υ\x10o< <̻\\\x11\nxhO\x17;`߫\x0b0Q#<\'\r=%ɗ-qD;.h!={\x1f\x16<\x18C\x1f;`:\x0ex2<\\So\x03=#PA\x0er!=\x1bټ\x0b=\x198\x12x;W\x01=,=\x028,ኼ,^&\x04R\x12=Rר!\x04ӓ<\x03ZBG<^;$e\nި<~(<\u07fbr\x04Zwn戽8#?<\x12x=6\x05\x14;T!m;Z,κ=)<\tA6G[=\x13bS\x10&', 'text': 'The two cultural pillars of the Spanish and Anglo culture, Miguel de Cervantes and William Shakespeare shared the same times, and almost, the same day of death, April 23, 1616. Both, lived fully, as we do today, in tumultuous and tempestuous times and shared it in the tragedies and comedies coming out of their imagination. We, their heirs have adopted, used, and transformed their legacy -our language. Also, we do share that history, one of imperial dreams and nightmares and the expansion of a global Eurocentric culture that transformed the globe during what we called modernity. They foresaw such forces, those that unleashed our own wild and turbulent times. Art still creates out of Cervantes Don Quitoxe. This paper was commissioned for the first of a number of exhibits produced by the Artists Studio Project (ASP) for the annual Quixote Festiva, a nine month cultural adventure that takes place every year since 2015.Save to library[Download](https://www.academia.edu/attachments/64930199/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=44495782)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[![Research paper thumbnail of Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://attachments.academia-assets.com/49530053/thumbnails/1.jpg)](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)[Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultur... [more](javascript:;) In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultural loss for more than five centuries. Today, within the framework of global policies for open markets, the community has developed new strategies or resistance: documentary video and community radio, public and community based performance, and symbolic uses of ancestral objects are threaded with cosmological knowledge. New media technologies and collective performance are part of the strategies that indigenous organizations in Southern Colombia are practicing in order to close the generational divide, build communities in resistance, share, and make visible their struggle. The emergence of the ACIN\'s Tejido de comunicación and the"kiwe Ten\'za" (the Indigenous Guard) are the result of this process. Developing a communication platform while fighting against resource extraction operations, illegal crops, and land disputes, the tejido and the guard inform and protect Nasa communities targeted by local, national, and transnational forces. The Nasa are actualizing their tactics through a combination of historical means of resistance (military and political), by strengthening their core values, and by processes of autonomy, education, and circulation of inherited means of governance. Miguel Rojas-\xadSotelo is a Colombian art historian, visual artist, media activist, scholar, and curator. He holds a Doctorate (PhD) in Visual Studies, Contemporary Art, and Cultural Theory (U. Pittsburgh, 2009). Miguel worked as visual arts director of the Ministry of Culture of Colombia (1995-\xad2001), building participatory cultural policy for the visual arts in his country, and he works independently as artist, curator, and critic ever since. Currently works and teaches atSave to library[Download](https://www.academia.edu/attachments/49530053/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=23676786)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[!', 'ref_doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/duke.academia.edu/MiguelRojasSotelo/index.html'}, Document {'id': 'test_doc:7ae4106a-10a0-40f8-8cc5-971e807c885e', 'payload': None, 'score': 38.53360199092106, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '235942', 'document_id': '71dea93b-9b52-4783-bcd3-f27c0c643427', '_node_content': '{"id_": "7ae4106a-10a0-40f8-8cc5-971e807c885e", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71dea93b-9b52-4783-bcd3-f27c0c643427", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "hash": "0e1208392f260a647322efa9a480d331435548499b5ad3056d939be3965d5865", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3192, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf', 'vector': '\x16\x1c\x00ռtW듼\x0c]UX."Ѽkũ<\x16߰\x1c\x08ʼQ0\x03;0\x08rxڻI=hk<\x16\'=ˌ<;\r=:C=ݔl;;lW;̂i;Ab={x\u07bbQռ<<\x11\'%;̋\x070*n;c=\x02Ak<\x0cw\x1d\x189E<>7\n=䝁<0.wܿ0\x08.\x0fμ#M\x04C\x18\x1eݹ\x0f==<\x08/<\x1f<{<\x0e,0=>7\x06\x12=yW-g8\x01\x11\t_<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:110a63df-8b02-4822-b4a9-617ebfd42f5a', 'payload': None, 'score': 271.56002835738695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "110a63df-8b02-4822-b4a9-617ebfd42f5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc1f8a7f-baaa-4dbb-b662-57f13800fc6d", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "42c284bcff1c342571f19d5285c5bdf0c3c2d95e0c64042007d2e2532fa12fcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44f66e02-b2b9-4265-99c9-08ed4732fef3", "node_type": "1", "metadata": {}, "hash": "297fe55bd95dc0e162681bb957aa6d46eb3c30c959b454474a848f22dc63074d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1601297, "end_char_idx": 1605766, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'B\x03sL͜\x13珼|&&a\x11y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/ݳݳ]K_<\x01l<ܵ+<2=5Ǻ\x07\x0b8-\x19hB\x05\x10(\x19Vs<1\x0c<>\u07bcp<\x00g==*\x7f:Ir;$9Vk;\x04?hJ<[pU\x181=2!|>\x10SQ\r异\r\x0e=d`\n\x01p]=\x02<\x1c\x1e>;\x0c\x12=fR<]˻><\x15\x03\x0fR;\x18\t=mGUFѼrI=+H<\x02=i¼B0cD\x11bjjXYZ(=\x0f\x02\\Ԭ:V<\x1f:\x03S\x00=!0\r\x1f溼\x1c;\x07\x12\x14;\x19\x03;7=\x7f\x1eU;ĒR<\x16<<$=\x0b˼A~\x10;ٟ;M>^=C\x19<ؼ+T\x13<=/;q\x18=\t.C6=Ur<~;\x1b\x15=^r[\x12?hʼRWk<`<\x05҄ =\x0eu\r6\t<% 9YZB<\x19}H=\rv;ۆ!\x1a/4< &=\x1cL<<ʐ\x17<\x19V;e,:\x07<&;\x1e4O;9;7t<4M:3=JK\x0c%\x15=T?\x139t\x08+\x11=wQ!}\x1d=+ȼp6\r\x0cmG =<\x071\u07fcJE\r:\\"A0Ycd=?h\x15==X1⻈}V\x06Cs\x7fŻo^|<)<\x05.\x11fP=W\x06^VB<#>?<,_=\x1fA\x16;<?\x15\x08\\<\x10\x10;N <ɘ<ޑ\x02=\x13 ^\x16%]\x14;^4\x1b6\x1bPoћ/P<T;b<ڽ\x1d%="5<\x165\x16\x1d\r/\x0cU<ּ6\x16=j\x19<9`Y=\x17=L\\Q=<<_X<\x08hԼ\x187/\x19T\x1d:`Mh\x17\x18ᦼ\x12 =\x1b`;\x1c=\x1e<\x18M<+\x17\x0bMɄ\x00\x04<:ټgy:E;DR\u07bc2!\x00<˲\\\x0e\x17<\x1cOS=,\x10\x05\x06"\x01TK;:<\x1dջ=Fq\x02PH\x0ew\x0f\x17-<\x11=\x11;\x1bͼ\x1b< =BֻI\'\x0f;$\x01<ഄ\x19U7TK=2ӂ<¦\U00100f0f<*F\x06e\x08H<\x163:M\x1c?뻢Ï\x1e=\x19\'<+ڹÏ\x1e=T\x1b=x;+\x17\x0bn\x12\t\x14=%*<~ج+S\rBV>6ʻ\x11=lU;\x0bl\x1f?\\\x1c1R=\x0c<\x17B\x1eU{=hհ<\x0b=o(=9<=ػ>\x17Ƌ4\x17<4\r\x007p=\x18[;\x1a=\x1d<\x06⯺\r9/=S\'\x14/`;d\x00=\x14)FEҝ\t=E<=\x1fس<^M|ԼV\x07:\x19-t;\\@\x0b\x1bAO<;5(\x7fb<\\=\x07\x0c<.\x08=|\nbϼ6*;\x1bҼz\x0b:3Xޜ]%N,\x1c<\x1cg=I˼@U<?ۼ\x00a;`:=;启=Oo\x01D6*Ļ6\x12:\x11\x00~\x12n=xF <[Qau\x1b&\x0e=dɺ\x12<@M\x19=:;=ЍI\x05ȱfQT`"\x0b¡mG<\t>jCз<\te=;fz\x16<=<;\'<\x15;e=pQ\x16=(\x02=\x19\x032:]\x14K\x1e;S̔\x13\x1e\r<8p\x03;*;.\x1e):p\x01=o<\x13.4G\x15=\x132=\x02-p\x11<<\r=3p\t=\x13\x13&zw3=O\u05fc_z<鎌Wz(<-pE<\x06\x14\x13R(`2G়֟<\x086zz\x1b\rM=f\x02pżo(^Q\u07fc%=ˈ.;kG:W\u07fc\x17]\x15=w=@w҃\x017=\x15ֻP=C?\x131;=">.\n7f`;=\x1b\x07;P\x10=١~j$l,ć;$\x15\t(\x01SgQ<=DUv\x1d\x7f=\x018ͻl.@<ϲ=T\x9a5;\x01ϩo<\x0e=`=Ѽ8+=ԉ=4#L[5=jɛ;;d<\x12(ļQ\tIN\x7fb=p3/L<\t%۸=kp4\x08@PWDJ&=z<\x05\x1f=25:\x12m<\x03Qt+(FQÔ\x00<2J]\x0e\x1c<\x12&;EA=\nhi\x13<ƹ=5W!:C<\x19rgl\r7\r<,>\x03;ΌN\x08M<ڻ\x18.=o{=?;j"u\x0b\x17;̇;\x144=7\x04zC\x10=\x15ϼތ<\x1f\x0c#=tKF!T};\x00\x0cĂ\x05Aм\x15\x03|\x07<)II\x17v!<\x07Fg@*6;c<\\;0\x03=\x07[8=S<\x1dW<7ekpuH\x1e<\x02<Lۻ\x07[80=\x0b4#\x03H<"i1÷IN\x08ͻ\x08G=!㼭i+D\x07j\x1f<=\x0c\x15UL\r\u05eb[\x07l&+I=:M\x1f\x06eV\x1c;>=(#\'ؼ\x1f<:\x17:e\t<ӡ\x12Y2;>!ci\x16F=ϔ\r\x0e<\x0fӛT=5)\x06=\rl$¼\x0f=<#;l&=tK=H{=0$\x13\x18[\x13a<<<\nN\x05\ueea0<_Q\x18:IHr="<3<)=z\x06];Tr\x1c_=!\x14<', 'text': 'Settings\n\n* [How do I use course settings?](/t5/Instructor-Guide/How-do-I-use-course-settings/ta-p/1267)\n* [How do I set details for a course?](/t5/Instructor-Guide/How-do-I-set-details-for-a-course/ta-p/1037)\n* [How do I change a course name and course code?](/t5/Instructor-Guide/How-do-I-change-a-course-name-and-course-code/ta-p/1234)\n* [How do I add an image to a course card in the Dashboard?](/t5/Instructor-Guide/How-do-I-add-an-image-to-a-course-card-in-the-Dashboard/ta-p/624)\n* [How do I set a time zone for a course?](/t5/Instructor-Guide/How-do-I-set-a-time-zone-for-a-course/ta-p/1295)\n* [How do I change the start and end dates for a course?](/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354)\n* [How do I restrict student access to a course before or after the course dates?](/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269)\n* [How do I change the language preference for a course?](/t5/Instructor-Guide/How-do-I-change-the-language-preference-for-a-course/ta-p/1246)\n* [How do I enable SpeedGrader to launch filtered by student group?](/t5/Instructor-Guide/How-do-I-enable-SpeedGrader-to-launch-filtered-by-student-group/ta-p/947)\n* [How do I enable a grading scheme for a course?](/t5/Instructor-Guide/How-do-I-enable-a-grading-scheme-for-a-course/ta-p/1042)\n* [How do I use grading schemes in a course?](/t5/Instructor-Guide/How-do-I-use-grading-schemes-in-a-course/ta-p/870)\n* [How do I view and manage grading schemes in a course?](/t5/Instructor-Guide/How-do-I-view-and-manage-grading-schemes-in-a-course/ta-p/1188)\n* [How do I add a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-add-a-grading-scheme-in-a-course/ta-p/1054)\n* [How do I duplicate a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-duplicate-a-grading-scheme-in-a-course/ta-p/601384)\n* [How do I edit a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-edit-a-grading-scheme-in-a-course/ta-p/601385)\n* [How do I archive a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-archive-a-grading-scheme-in-a-course/ta-p/601386)\n* [How do I customize visibility options for a course?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-a-course/ta-p/844)\n* [How do I customize visibility options for course content?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-course-content/ta-p/814)\n* [How do I set a Creative Commons license for a course?](/t5/Instructor-Guide/How-do-I-set-a-Creative-Commons-license-for-a-course/ta-p/1059)\n* [How do I include a course in the Public Course Index?](/t5/Instructor-Guide/How-do-I-include-a-course-in-the-Public-Course-Index/ta-p/812)\n* [How do I set a course format?](/t5/Instructor-Guide/How-do-I-set-a-course-format/ta-p/1089)\n* [How do I change the format of a course ePub export file?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'emphasized_text_tags': '["span"]', 'filetype': 'text/html', 'category_depth': '1', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5de98e40-d933-49c2-90eb-c286525861b1', 'payload': None, 'score': 90.64511634021032, 'emphasized_text_contents': '["How do I manage my Canvas notification settings as an instructor?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "5de98e40-d933-49c2-90eb-c286525861b1", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-manag/e-my-Canvas-notification-settings-as-an-instructor/ta-p/1222", "filename": "index.html", "filetype": "text/html"}, "hash": "3d1a042c6d4a1bae721210c0a10127a1615064bd928e2854d5b7c96e2e2f1134", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16302703-378c-45c0-9106-9ad07470f8e3", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "860beb54725152d1658bbd2172b5f691ae88263f5cc891530405e4e0ab8b697e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b26b7f66-993d-49e0-894f-a130d7cd1140", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'k\x0fpB\x15\r\x11\x1d;uYº\x02\x06Bd<\x15;I\t\x7f\x03=U1[}:iKW\x1e=\x0e;{n伢ږ< .\x1eF<\x1260=8ahP\x12<\x0cļW=<=%\x07=kP<>6(=,;*Cܻ@\x03*|ӓ7<\x19\x13\x00=B\x0cZ;MW=\x07\x0bL=\x1dg<\x02\x04<\x12\x1f\x1a\x1e=ڟ\x7fK\x16=\x01I\x1f<\x19\x04q=9Y@p#T`:,q;`%\x14ԡ=R2,\x17;\';)] <.\x1e\x00=4eȻ:;\x12wnʀI*`L9Q+K<\x1c<8=\x14w\x01ؼ\x11=\x1cL=(\x13t!r<*\x13\t=\x15Rh<\x06\x0e=ɱ8}<9N[<\x00=\x1cU:d$N\x13\x1bRh9W<<\x12\x1e;\x1e\x05H^{;!2=+\x1c#\x1dg\x19\x12n\x07"/y;R"缬\x19.\x1eN\\=\'VG\x11mm\ncg9\x1cL1=Ik\x1eA\x13R<\x11<\r,= \x07\x10<8qG\x03dCo\x16\x19\n\x08<\x11w`:=\x073;Y=T\x1a\U000bc5bdKH\x06f\x04NG\x1e<09pR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 86.04144183004362, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 85.79329988783277, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 67.84771553764907, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 66.96360850680638, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{12432 total, docs: [Document {'id': 'test_doc:d0115143-430e-4f6e-aef7-923890926e3c', 'payload': None, 'score': 12.995274986295126, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '112550', 'document_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', '_node_content': '{"id_": "d0115143-430e-4f6e-aef7-923890926e3c", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "hash": "0726ffc974b24f970bf6421bb51c3ade1de60edd796cf23d140f982f7c10de6e", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ab538701-256d-4eab-8f23-bc2b6ff6d2fa", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "hash": "dae3fb0c2d969c49b50eb5752ffc5029228f3af57c975ad492c0f38f4b03f58f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "705942d2-e4db-4a47-9d46-150d9de5cd08", "node_type": "1", "metadata": {}, "hash": "b7eace9b105576763f42d00293558e93727678f4acf348860de34c7fdd283cb5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6225, "end_char_idx": 10141, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', 'vector': '\'\x11<.#&=?e\x0c\x0e:\\vN9=;;\x04L=\x1b=;o;;gk=\x1b:2üWh3<"7O|11ȇ\x1e\x01=,=Z;$;y⼦\x16?nм\x17\x01>4\x11}=Q=f2C<\x06o\x191\x07)7}\x14Yi\x1bm<;\x7fԳl3:ӻ\u07bbK]]4+ae\x14^:\x13<\x1c\x1d/=\x01{\x7f;hټ\x14<-_\n=;N=6<\x1e8"-\x199,<\x04=_([ 4+\x05,Q%c=&=S;?Q\x00";=OGP<$\n;N%7\x1e=kG1u1Q\x10\x07=\x05u=\x1f:wgn\x1aY\ro<৵=<ͻ6=\x1d\nX<՞,><\\v+>;ȇ<|B˼Q\x12\x0bV{:!<Ǻdtμ<\x07FP8Ꜳ<<\x0b=o\nBT\t#\x1f{՜\x02)=([х;Q<)\x1a;\x15Ƽݳ#\x02\\=MX\x0f\x1e=\r8Ѯ\x15@PK**ռ^T\n<=<`6;J|#k|;<{RZ<_;0;\r;[<3<\x1d<ҼDu<$e;DjxS=!2\x14=w\x1e=:ɼ4o<+e\x12-ûY\\{<\u0601\x0fG\x10\'BU;:=.\x01=\x1c:=TW<\x17ϼ><@\x16=K\x13N9CM;jO=\x05l\x07=\x0f=\x149;Ngd\x00<\u070e;\x05ؼA;\r\x188i\x05=\x16\x0e\rji|=\x0f\t;J-0Z9W=J\x0bAfc<>$8AI?/<5=a~g\x0eBғ7VN$9\x03 ;\x12;\x0f\x16o=M\x11;dY\x0f{p\x12\n\x12f/=,=k\x18=\x1fI;肓\x0bSe<<,\x0f=\x10`f \x0e=T=ꀼ.$=?\x13?L{<\x19DM=$;&Ȼ\x1dk껍ɰ;U:bg=<=QC;3N\x03Aļ8?-莼P\x0f,|F=;ϟ;<])\x1d=\x0ed< 5Rު<Ǽ{⌼\x01\x18<\x12}\x01<@\x198#I=Ŝ9e#;\t[|\x0bKsIJM<\tvr#.E\x07;\x0cŵ\x08:/i5\x0e:\x1b\x0ci<\x10=QWQdb\x02=uJM*;3(=\x82:<6.\x12\x04i\t\t\x13:2\rr\x16=,W;|<\x07\x1d^xzXE=$Re<ū;\x17)<\x0edU\x1dvޑ<\x14\n?\x0b?LA<', 'text': '# Registration Holds\n\nRegistrar holds, bursar holds, advising holds and signature work holds, will not be permitted to register for the following term or make registration changes until all holds have been removed. Students who fail to register during their assigned time slot, regardless of whether such a failure is due to a hold or inaction on the part of the student, will not receive any special accommodation in registering for desired or required courses. Such students might have their graduation date delayed. Students who, for any reason, fail to register for the fall or spring term are placed on involuntary administrative leave of absence and must apply for reinstatement if they wish to return. The deadlines to file return applications, including all required supporting materials, are 5:00 p.m. May 1 (China Standard Time (CST)) for Fall or Summer Term and 5:00 p.m. October 15 (CST) for Spring Term. Late or incomplete applications will not be accepted.\n\n# Course Changes after Classes Begin in the Fall and Spring Terms (Class Drop/Add)\n\nStudents may drop and add courses during the Drop/Add period at their own discretion. Courses dropped during this period do not appear on the official Duke Kunshan transcript. After the Drop/Add period, no course may be added; also, a course may not be changed to, or from, the audit basis. A student may elect to change the grading basis to Credit/No Credit following the deadlines outlined in the section on Credit/No Credit Grading System.\n\n# Withdrawal from a Course\n\nWithdrawing from a course differs from dropping a course. Students may drop a course themselves during the Drop/Add period, and the course does not appear on their official transcript. After the Drop/Add period, students may only withdraw from a course. To withdraw from a course after the Drop/Add period, the student must obtain permission from his or her academic advisor. After the Drop/Add period, students permitted to withdraw from a course receive a designation of W for that course on their academic record. The deadline for requesting withdrawal from a course in a fall/spring term is four weeks prior to the last day of classes for 14-week courses and two weeks prior to the last day of classes for 7-week courses. The deadline applies to course withdrawals for any reason other than medical. Coursework discontinued without the permission of the course instructor and the academic advisor will result in a grade of F.\n\nWithdrawing from a course is permitted in multiple fall/spring terms, as long as a student maintains a course load of at least 16 credits per term (and no more than 10 credits in a session). Withdrawing from a course to an underload (fewer than 16 credits) is generally permitted only once in a fall or spring term. However, a student may begin another term in an underload with certain restrictions (see below). A student may also be permitted to withdraw to an underload more than once if there are significant medical reasons (see below). Students are cautioned that taking an underload may result in a delayed graduation date (see section on Satisfactory Performance Each Term - Term Credit Requirements).\n\nIf a student notes errors in his/her course schedule, he/she should immediately consult with his/her advisor and no later than three days following the end of the drop/add period.', 'ref_doc_id': '1987d9ad-a507-4a2b-8394-3ce5b2a6cd44', 'doc_id': '1987d9ad-a507-4a2b-8394-3ce5b2a6cd44', 'file_name': 'ug_bulletin_ 2024-2025.pdf', 'last_modified_date': '2024-09-02', '_node_type': 'TextNode'}, Document {'id': 'test_doc:50baa88a-3ddd-4e98-9663-d3f70ce452ba', 'payload': None, 'score': 6.436375596727736, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '416951', 'document_id': '3474966a-8933-41c0-8858-18c6c1ff290b', '_node_content': '{"id_": "50baa88a-3ddd-4e98-9663-d3f70ce452ba", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/go.canvas.duke.edu/frequently-asked-questions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 416951, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/go.canvas.duke.edu/frequently-asked-questions/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3474966a-8933-41c0-8858-18c6c1ff290b", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/go.canvas.duke.edu/frequently-asked-questions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 416951, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/go.canvas.duke.edu/frequently-asked-questions/index.html"}, "hash": "e8b30438b1358739d8a2b012a31575187f5c1392dc50734c20116681c380fcd1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8414a3f0-97a0-4c27-8239-c0ac268dff53", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/go.canvas.duke.edu/frequently-asked-questions/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 416951, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/go.canvas.duke.edu/frequently-asked-questions/index.html"}, "hash": "8aa4b9e1f65d660aa326fdc8de980ee2217ddd0c2edef18ab0a3f4f971e6f1e8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "57d8d23e-4cfa-4014-8cee-c2284b775853", "node_type": "1", "metadata": {}, "hash": "b7a2567db29fb2dca84927b9aa25c3225cc4239361dde062519ad3d7c54ad135", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/go.canvas.duke.edu/frequently-asked-questions/index.html', 'vector': 'SY/\x1a%=\x0491nn=\x05<;\x1caG<\x03oPf=\x00A6N)<\x1b9\x00/"A;o=[\x138<ɮ:%%\n䎼\x17\u05fc\r=[R:k;\x19<\x00:мķ\x10=wFBb/+\n>CBb?=\x0f=Ap\x19{)ּ#=$3;\n\x18,:\x04N:uռs:Y}O\\=\x04<\x027=ָ֓ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 44.035522642786624, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 33.818929443473785, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{14195 total, docs: [Document {'id': 'test_doc:c58a1fff-cd0b-4c27-ae1c-480da7da1711', 'payload': None, 'score': 45.657674029920564, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '239154', 'document_id': '8d06b116-4363-40ef-a4f9-c5073ca91fe8', '_node_content': '{"id_": "c58a1fff-cd0b-4c27-ae1c-480da7da1711", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 239154, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8d06b116-4363-40ef-a4f9-c5073ca91fe8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 239154, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html"}, "hash": "195e89a15066a273bc9373e0af4b8402789d77f712d61e88daa8ba422106dd58", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "eb578886-8e3d-43ea-a098-e6bdc15eb74c", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 239154, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html"}, "hash": "fd04cced9ab72d48e68ef75f8560444ab26a1dd36cf09e7b045072bb87dc45ab", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "25552133-aab4-4916-9158-7f5585994cb3", "node_type": "1", "metadata": {}, "hash": "989334c4cb26f97fbdf606e9c7f341d9c97607e6b2e7a65d0acf62b919f09f90", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 13372, "end_char_idx": 16598, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html', 'vector': 'T\x00f\x01;\x06M{\x01۴mL<\x17<+\'7\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 45.65767402992056, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u6=Eƺ\x08P=aQ0=\x08r<\x07\\;\x07M=\x04ȇ9\x05\x7f<\x08u\x05/(\x06t5Z\x13<\x08q<Բ\x08:ivV\r\x7fD&j]<\x05\x03<-<\x07U;\x06?<\x05\x0fAۼ\x05$>\x08<\x08H\x08\x07c<;P\x05,$:=\x07Ũ\x12\x04S\t&=\x05\t<\x05h<\x06\x06"?=\x05?#<\x07LiD/\x0eu:\x1b;M\x07S;W^i\r\x1c=\x1biQ\x01=\x0b\x10"\x0e=pY9ZN<"@=f]\x14=Q;;IkA\x0fD˻%\x1cɼ\x0cPS\':s\x17\x03\x13:\x17=\x1dJ4=T<\x07H==0\x0b=\x0f\x16;\x12\x05\x06\x1f\x0fJJ",梅;\x16=z<Ú<0LAza6aʅ=D`Hk&: 4#6=\x16`}݄;:?&<\x03;.\tGW=\n3λO^TCۿ<\x02?=\x0f\x1b("\tb*!\x1b\x01\x1a^;b;Xĺ53\x16<Ú;\x04\x04@$;Q!^\x16k =z\x017<)<\x17[cܻH2=\x11U\x06j\nbuP\x1f(]9\x14c\x1d<\x0c;\rּ\x1dM<\x07ż\x08T<\x0b<\r1@\x05=|ƻr\x02=Ik*<&^9Ӂ<ˇ<μM\x7fHp\x08;`h;\x0c=\x15x\x0175ƻc\t;=6T:7\x14{I;B<6=Ȧ}\x1ek&:EU\x06e.\x18;\x12<.7\x16\x0f\x02a۽ϼ\x18\x05=>?=q<#\\<\x03¼\x12obu:R\x1c*;#=^;З2f9><;t \x18\'lp<>ۿ@zԠ|g\x1f\x05=r;sv~= o=(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x12=(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x12lN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 14.485480856092394, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{29792 total, docs: [Document {'id': 'test_doc:ab988190-695e-45db-bfb4-3a599f75e2b2', 'payload': None, 'score': 34.45321681516983, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3957701', 'document_id': '276ad839-68f5-4bd0-90b2-cd068f1f49a8', '_node_content': '{"id_": "ab988190-695e-45db-bfb4-3a599f75e2b2", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "276ad839-68f5-4bd0-90b2-cd068f1f49a8", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/ug_bulletin_2023-24.pdf", "file_name": "ug_bulletin_2023-24.pdf", "file_type": "application/pdf", "file_size": 3957701, "creation_date": "2024-09-02", "last_modified_date": "2023-10-24"}, "hash": "ef9e6ec93a2d2441740cf40e7eae5e92ab06e0c031b6d9d8ab4b51fc01add46a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2285, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/ug_bulletin_2023-24.pdf', 'vector': 'kV\x19yi\x0f:>6ż7F<-\x1b<:9Xٜ,d):-\x120T\x05Q?z\x18;\x02=\x05TbJ\x00<9a<<\'%\x03K8\r\x08<\x0eh2<4gR=\x04\u05fbM\x02@Cⱼ&м${$RI= 4;Ҙ<\x1f\x1a\x1f=X/K_\x0ehߏ\r=ٶ<5+;,X=\x10<&\x069=\x01$,0\x0f=PkUm@\x0bx\x07=(."ʺ$<.:缅q=<4o;C1|<*a<6;)\x0ed<\x17_L\x0b<\x1dL=R]+<>7R]+<<>=xrϼ7\r<\x1eX&=<\x01ʟ.\x04\x1c=\x1fr<\'F{:\rk1aB\\(-0B4\x10<|\x16;\x17F{\\&|\x16=`X=hJ<)j6b\x02=(껲{[/eJ/g\x14S\x18aa:1~\x0cP64kn¬<\x0b\x10;,n!\x00;9 H<\x10g\x14<\x1b;Ƽ?=i\u07b8;r#uu{ci<\x14<[v;\x13?=\x12\x13=#h\r"C=;Ԯ\x1bi;B\x19t=w<{\x1bXAi\x1e=E\ry<\x039*\x1d`<\x12[<Ͷ;{\x1b|9<\x1b9k\x1e7\x03{=$G\x04<\x01F\x12=Y\x06\r=yD:\x10l\x11<\x12<黼e3P~\x10r2Ы<\'#<@\x02;AºɁ<\x04<$\x16<\x154-\r=Kq!<0l< W* =&=\x19=~<(\r=VLц\x18I=ޛ<\x11Z\x13(;;;P6\x15;eO\x18\x102o\x13\x7fdˮ-H\x1c\x04iB=\\y<=c\x1cv:\x05۹-b$;im\n\x07=<\x15yUt;ױ;$\x12=~D<:^e(I\x04y\x19\x03YL:-5;\\Cq;\x05;\x1b\x10;ȼ&U\x1cVpG\x15ȿ)=z#:\x0c\rC<֬ hlM3R<\x1d\x1d8747<<䓽C\r\x15<_+炽U\x11;\x1fqY9<\x0e;;\x0ed]L<\x01P;\x0f\x04;|d\x1d=\x7f\x1aDZ<$<>nG}{|Ȼm\x1f\x00yl<\x10w!9T<\x1a;<#=:\x1bt5<\x7f9-\x07=d<){ƶGd 9=7R\r\x00_;\x0c(=B6C;X_,\ueef6/;;/\x00;9=\x1bH\x06<\\<\t=\x19(I)=\x0b<\x0bl\x11<-\x0e_uU<\x1f\x04<#;\x0bsy<5:즤;r+!=Q<+\x0cʼ\x072,?p\x02U\nRl=tzּw$<5;\x0e*\x07\x1dWǝ\x0c[N<~_4\x7f\x11<0\'\x07\x05\x18=BF;<&,=$\x12\x05H_z6<\x13M\x06\x10:Fy\x12\x12;\x11\x02a\x10,=\'aԻ֬<;O9%\x1f\x07ʼ\x10\x0c\x14\x16Ee\x0b=19=\x0285<\x13v<#h\x14\x1f=R:f:eK\x18|ռ<4\x04qѻ5P9\x7f0=\x119G\x15~"[q\t<\x0f=>X\x0b:A<\x0b\x19<|CP-<ؼ"=]L:2Fy<\x0c[N<\x15]P9<]*,n\x0fJ=\x1b\x14;1\x05;:]+F\x13=M j"ؼ\n;c$=\t)\x03=X}\x04=&\x0c!<\x14p\x04\x05\'\x1a@<8;fʼ%\x7f\x02F:O?\x01=^;;-O&\rx\u07fcdŻ\n\x00<7\\<;\x17r\'?¼w.F\x00gpg%ι\x1b;=&\x11$:i\x06)<\x1eļ-OE<\x1c\x04:\x0f\x10̈́< ]:O\n\x19(\t\\\x14)d\x16=*(\x08\x18tv(\x13=ھ<\x12\x0eƾ1/|kL<@<\x13O=\uf05b\x17;2\x03X#=7\x17\x16|T;r\x0cCػUf:K̈́;\x03pxKE=\x1a\x0e=1\x10<@<\x12\\<9\x1a;Լ\x1ew\x16:#<\x08=\x16hѧ<9V)<\x03b˽Mh`ѐ\t*<\x0b\x0b=!=Pd9-r^\x1d<\x1a;\x16=S\x07069I!n<\t=5<\'ɻ$<+=[ƍs\x1cJ<\x0e:\x16<\x0b{Ra;]ͼkl;VȽec#<|~K\x01Z<\x060;ߛӼL<\x01e9%9;\u058c=\x009i&\x0c!\x0ft4<\x11=QY\x18\x0e\x1eʫ\x1d\x1c4<\x114$=\x07\x03=Y\x02\x06<=b]=1<[+=3d:\x7f\x16ÕQ\x18cE\x07ϻlD9@=?-)Ҽ\'EӼ\x01P%]^=C4\x05\x02x=\x19\x12P=<\x14<\x15\x0c \x19M\x0e<\x7f=Rڼr=\t<\x02#=G;\x1f&:0<;o(00<[#\x06=.\x1f;^b\x06\x02<@EƤ<\x07n\x06=\x1bn\x07=\x1e="!<8\x0cۍU\x01W<2:x:9\x15l̟;{\x1dV皑l:NQ\x14\x0b?:\x1f<\t^\x7f\u07fc\x16\x1a&=\x0f>=7Ƽ\x1c<\x13\x14^\x1a\x0e0=g;<=R*|=ܷl\n[V\x0b\x01\x14-<<\x11n!;Ng܁<\x14-\x12=O<\x0c3;|\x1a\x06\x0b\x03\x01:\x15\x03;ߗl\x06\x1d x#=\x11\x0b 9<<5c#\x13{<\x16\x18һ(<\x1e<\x1dV119]\x02d\x1f=\x7f_=\x05!=\x7fBz?u\x04=\x13\x1c\x19;4\x055<мml5t\x01=\x1a\x12伢?Ԏ\tѺ\x7f=Qw\x0c>\x07\x0b7=\x02e\x03ȼ)Bռ4<7<\x14-<$<\x08\x00(M\x11ѢۍU9==%ۻ\x08TMm\x17&<~\x0b\'\x7fNU̼\x02=<\x05#惻\\y\x05\x17*ػ!R_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 86.04144183004362, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 85.79329988783277, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 67.84771553764907, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 66.96360850680638, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{28999 total, docs: [Document {'id': 'test_doc:7aeaee4e-aa8a-4d85-8f33-6b89e738acfd', 'payload': None, 'score': 66.94926018822981, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '80081', 'document_id': '8e6d553f-ced5-40bd-986b-a781a3a1ee9f', '_node_content': '{"id_": "7aeaee4e-aa8a-4d85-8f33-6b89e738acfd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/majors/data-science/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 80081, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/majors/data-science/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8e6d553f-ced5-40bd-986b-a781a3a1ee9f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/majors/data-science/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 80081, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/majors/data-science/index.html"}, "hash": "8ea007f04639893ff4c0cccfd942ec390a3b5d5ba18878438f8f62f618409876", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e59dd33b-f2a8-4a94-8e04-04a2f097e133", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/majors/data-science/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 80081, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/majors/data-science/index.html"}, "hash": "e499005991af740992609486cf8e34ac02d1db064185f65d3f44d4cc47a287d7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e1a44151-67b3-4bc4-9591-55e7b7977ef2", "node_type": "1", "metadata": {}, "hash": "f0fba0da3b9df2998106a9fe93a15ded1422c4a6b829b1eaefe8248afc1e5460", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5542, "end_char_idx": 9399, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/majors/data-science/index.html', 'vector': 'O\x0f5\x03\x15;ڬ[Y\x17k\x01;˫<\x1a\x15<+}Z[=Y& \x16\x08;\x14\x17f\x06&<Ĵ\x01٤Yl\'<\x0c\x1c=(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x12p<."<\x03\x18\x1f=~\x19=Ѕ-\x11i\rERL;St\x1a;+;v{ٻQHżf\x14;<\x1c\u07fc\x0cX7uּǿ<^\t!/b\u05f9jIe=#<3\x04Y<\x1d\x11<\x19\x1c;|͢<\x15!\x07\n߰<%~<\n)-=:\x19^<2W=3\x15=<\'3;{<ǿB<+\x00=\x06M\x1er\u07ba\x13\x05\x0c=b\x0c컗༁}<\r~]uY<9O<8\x06M\x0c\x16;0=rv\ue37d8w̧=QHE;uZ\x15=\x1a=|\x19nh&鼾\x11%;J<\x06Y,/<\x175ƻc=l\x04;\x11\x1e\x10\x00ڼ;\x01e̼cQ- Ʒ.<;g;U;˂Hηn=D`\n=>l2\x01<ܼ\x17/yV1㴽*\x1e˻<:\x03=F\r\x1aѻ&ؼ;77W\x1cLڼ:w2=k|=\r\x05(:«Jυ<ss<,\x14)\x13=ps\x00:ooG5ѹW=g\x91<\x01=#\x11$v\nr,OżZjb=<\x10<\x0c\U0003c6dd/=ZQC<1<.W9~@ɝ<\x18/\x0b\x1dO&}SD+<3*}p\x15ļ];/v{bP=P/<<&<\x1f=xғ;h5\x14s$1=M<<:\r=\x11=E;;\x19\'M<\x1f%5\x15p\x10"\t\x114=\x0c<<7=\x12=cؼd;,M:<\x1bK3\x01p <ț=#k4x\x17x;LM\x18Rs=\x1dyo3\x05\x01chNG<\x11>B\x0ci;w\x10.\x0cf`<\x11e:X\x1f<[q\x1d=<\r=>W ##e\x0cw77\x0b(<=$<\x0e\x1d\x0b(\u05fc\x18Ӛf\x0c=5%aƼQ:\x16\x0f=냑2\x15`=\x11-<\x15ժ=e\x0c;a9=;IO\x12vn\x0f=\nL3P<2\x15𪍼+\x1a<<(\u07fcq!=\x0c±\x14=tCn\x04=RH=睼9B=\x12HPc=־=)kQI\x1dac;\x10H=\t;e;IPp\x12>eH\x12=\x065=&<5\'\x1d\n\r\x0c\x05/rb3\x00=ٛ<$\x1ezּ\x12;>\x0cf0L:Nj<\x0ecai<\x06PV\x15\x14=t+\x08=oC\n;<\x018D<\uf53csŅ6{\x04<꼅\x1b\x1cs\x01=\x02=s?Qll=\x02k\x03 üZ]=#K<3\t<=\x9fɼ-\x04\x1bK:mXi<\x16<\x13;;<;\x13\x11<\x06!;C\x0b=|`/(s\x05f0=Ր<\x11S\x08\n<_I=0U^\x10\x1d{:\x11,-<{\x10F=\x06˼SK<=^<\\\u038btTр5<\x17穻G"D\x07M<(=\x0b\x17\x08=&DN)E4B=@ټP\x7f4m<֕]o\x1a;D;Dq\x0f%kp*"<\x1b=<\x1e\x18#=\x16\x1b%;\t<,z;x^`<\x082=vu\x15~ͼ;pw=q&;6>J=6\x07\x07\x1c<-uG=SKAk[=,u\x11,=&Dλ͝-c"Ch=/#K56>Jޚ\x03gGO؟=q;ʼ\x1aK\x15N-u&:;]\x00\x13=6ۡ<\x19=a89=E8=;x;M\x1bA=J4^;(y;+\x10<\x1ev}Uaɡ\x15v<>\x07M=E\'=:<\x06(B\x15\x1d< ,Q\x0c<', 'text': '50 no. 4, 11-12, and Cole, S. and Kiss, E. (2000), “What Can we do About Student Cheating?” About Campus, vol. 5, no.2, 5-12.\n\n48\n---\n# Academic Integrity Policies\n\nAll DKU students are responsible for adhering to the Duke Kunshan University (DKU) Community Standard as set forth in the DKU Student Handbook and the DKU Undergraduate Programs Bulletin. Students are responsible for maintaining high standards of academic honesty and personal integrity in all matters, including reporting the results of their studies and research, completing assignments, and taking quizzes, tests, and examinations. When confronted with a possible violation of academic integrity, it is important that faculty members deal fairly and consistently with students.\n\nThe University’s disciplinary process is independent of, and in addition to, an instructor’s decision on how to grade academically dishonest work. Instructors are expected to communicate with students their policy regarding grading of an academically dishonest assignment (e.g., zero on the assignment, reduced/failing grade for the course, or other approach). An instructor may only implement this penalty if the student has accepted responsibility for academic dishonesty (by accepting the penalty) or has been found responsible for such through the proceedings of the Graduate Academic Review Board or Undergraduate Academic Review Board (UARB).\n\nAny case reviewed by either the Graduate Academic Review Board or the UARB shall be kept strictly confidential and only those parties involved in investigating and resolving the case should know the details of the case and its resolution.\n\nViolations of academic integrity that occur while the student is residing at Duke University or other institution (for example, during a study-abroad program) will be handled by the host institution according to the host institution’s policies, although DKU reserves the option to investigate the case and impose additional penalties if such action is deemed warranted.\n\n# Academic Integrity: Graduate Program Policies\n\nStudents and faculty in the DKU graduate programs are subject to the regulations and procedures of the Duke University Graduate School, as set forth in the Graduate School Student Handbook; the Fuqua School of Business, as set forth in the Fuqua School of Business Bulletin; the Nicholas School of the Environment, as set forth in the Nicholas School Honor Code; and the Pratt School of Engineering as set forth in the Pratt School of Engineering Professional Programs Bulletin, whichever is appropriate to the program in question.\n\nIn the case of the MSc. Medical Physics and Global Health programs, the matter would be referred to the Duke Graduate School. In the case of the Master of Management Studies program, the matter would be referred to the Fuqua School of Business. In the case of the Electrical and Computer Engineering program, the matter would be referred to the Pratt School of Engineering. In the case of the International Master of Environmental Policy, the matter would be referred to the Nicholas School of the Environment.\n---\nFor cases involving graduate students, faculty members should consult with the Director for Graduate Programs at DKU, who maintains a record and determines if there have been previous violations. Minor, first-time infractions (those that would not be grounds for suspension or more severe censure if proven true) may be resolved between the faculty member and the student. In more serious cases, cases that are not the first infraction, or in cases when the student is dissatisfied with the resolution, the program’s Director requests an investigation within seven business days and informs the student that he/she is under investigation. The investigation is carried out by the DKU Graduate Academic Review Board.\n\nCurrently the DKU Graduate Academic Review Board consists of three DKU graduate programs’ Directors of Graduate or Professional Studies and two graduate students and was appointed by and presided over by the Associate Dean of Graduate Programs (Director of Graduate Programs in the future). Members of the Graduate Academic Review Board serve a two year term. Serious and complex cases regarding academic integrity that are passed on to the Director of Graduate Programs will be reviewed by all the members of the Graduate Academic Review Board within 20 business days, who will make a collective decision concerning the next steps. If the case is brought to the Graduate Academic Review Board at the end of a semester, they should complete their review within 20 days of the beginning of the following semester at the latest. In a case where such an extended review may prevent a student from graduating on time, the Graduate Academic Review Board may proceed without the input of the student members.', 'ref_doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'file_name': 'FACULTY-HANDBOOK-_2021_V7.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:8e31613d-0bba-4ba5-9c9d-120516d3dbbe', 'payload': None, 'score': 1.7953201183529741, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '137010', 'document_id': '9981ae24-9eaf-4831-868b-85e16a8f17e2', '_node_content': '{"id_": "8e31613d-0bba-4ba5-9c9d-120516d3dbbe", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/mainsite/2024/03/25103820/The-academic-integrity-policy-in-the-undergraduate-program.pdf", "file_name": "The-academic-integrity-policy-in-the-undergraduate-program.pdf", "file_type": "application/pdf", "file_size": 137010, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/mainsite/2024/03/25103820/The-academic-integrity-policy-in-the-undergraduate-program.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9981ae24-9eaf-4831-868b-85e16a8f17e2", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/mainsite/2024/03/25103820/The-academic-integrity-policy-in-the-undergraduate-program.pdf", "file_name": "The-academic-integrity-policy-in-the-undergraduate-program.pdf", "file_type": "application/pdf", "file_size": 137010, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/mainsite/2024/03/25103820/The-academic-integrity-policy-in-the-undergraduate-program.pdf"}, "hash": "f1bf8c8fb0caa8a3eb22c6c90a6150ce872a3333835ba547e54a7d3f46c023b4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f94ca704-67e4-49d9-8334-f86858c68d08", "node_type": "1", "metadata": {}, "hash": "84729fef74101b1eff5679f925526735c5c17878fa05f4f0d041baac9122970e", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 4914, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/mainsite/2024/03/25103820/The-academic-integrity-policy-in-the-undergraduate-program.pdf', 'vector': '\x7f\x0b㼧I%7\x0euYdPrǙ\x19{-Ox=\x12H=G[<=\x15̼M=A<\x15L\x00;\x7fY=g;\nxYP<\x1d<\x10"i<2\x0eGB;oda=\x19¼\x01x\x0bWû,P\x01=NҼWwɻ\u0530\x07ོ<\x03=r*=->=h}<=[\x1fc\x18<\x1dN/\x15;~ڗ<_K(\x03\x18n1=O<\x1bJ\\U\x0bpk,*KSK\x0c;ЖX=$̻\x14iZo<-O&{.<\x11L\x19H\x07-=\x024\x0bBkom;Ĕºn7\x1f=p>2p\x14;L-=g\x11`$=Z=%\x11\x1d=?ջ\u05fa\x08|\x1c=\x125\x7f=V=\x01E\x0e\\xI6\x15\x141<\r\x05\x12)Ryм=\\7g3De<\r\u07bb\x10λH<~Vq\'\x17\x0c;\rw;q\'\x1e+<\x17aޖ<#.-=\x05b.d<;$=Hp+=\x05ba|ƌ\x08|\x1c"\x05=L$n={NY;ܼD;c=<ٮ;Z=H:\x03\u07b8bb˼tQ )V!<\x11~Vv\x01Z\x1d\r;\r;XxOTJ=i%\x13\t,HFL:V-\x18\x02\x17>\x17=f=0!e\x1d=V-\x18=+#A.=\x08qARj% ҼU(\uf04d#E,< <,HFG\x17\x1a8ZxC8\x01bX2K<)\x14<8I;j{<9:<1\x08d;\x03m,=f\x19<\x1ce*;E=~xX2E\x06=[_<\x0fZ\rP\x1f]&z<%\x06+<Ճ_\x00*0=x\x15ܶb/Q<*\x18:qc<:\x15\x08\x00\x01Q\x12>$q=J"-=M%"\\jW\x14U;\x00Rs%<_Z<;\x1a\x12=h\x10(<\x0b\x00K\x15={l\x00=HɻlEs-g<*k;\x03=\x17ܼ\x7fk7\x17\x04\x08v\x03\x1cvz좼t\x1aB\x1b=Ͼ,\x04\x01;ƶokOcB=&?o=?]\x0e\x17=<\nǼ6]\x1fw=\x10\x1eGB\x1b=S>\x1c:F<\x18\x05·P\x11y\x1dbX2QԎN', 'text': 'Citizens of this community commit to reflect upon and uphold these principles in all academic and nonacademic endeavors, and to protect and promote a culture of integrity.\n\nTo uphold the Duke Community Standard:\n\n- I will not lie, cheat, or steal in my academic endeavors;\n- I will conduct myself honorably in all my endeavors; and\n- I will act if the Standard is compromised.\n\nIt is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe Reaffirmation\n\nUpon completion of each academic assignment, students may be expected to reaffirm the above commitment by signing this statement:\n\n“I have adhered to the Duke Community Standard in completing this assignment.”\n\n[Student Signature]\n\nDefinitions\n\nLying, Cheating (including plagiarism), Stealing. Definitions for these terms used in the Duke Community Standard appear at https://studentaffairs.duke.edu/conduct/z-policies/academic-dishonesty-0\n\nApplication of the Community Standard to the Master of Engineering Management Program\n\nThe Duke Community Standard encompasses both academic and nonacademic endeavors. The first part of the pledge focuses on academic endeavors and includes assignments (any work, required or volunteered, submitted for review and/or academic credit) and actions that are taken to complete assignments. It also includes activities associated with a student’s job search since the definition of lying includes “communicating untruths in order to gain an unfair academic or employment advantage.” Some of the aspects of academic endeavors as they apply to master of engineering management students are:\n\n- Group and Individual Work. Please note that in many classes there will be both group work and individual work. Students should be sure they are clear about what level of consultation or collaboration with others is allowed.\n- Studying from old exams, assignments and case studies. Many courses have case studies, exercises, or problems that have been used previously. Students should not use prior semesters’ work to prepare for an exam or assignment unless allowed by the instructor.\n- MEM Program suite, computer laboratory, library, meeting rooms, and other shared resources. There are numerous shared resources that are available to support a student’s studies. Use these so that they will remain in good shape and equally accessible for others.\n- Career Service Resources. Use these so that they will remain equally accessible for others and so that the MEM Program will remain in good standing with Career Services. Abide by Career Center policies found at https://studentaffairs.duke.edu/career/about-us/policies.\n- Implicit Reaffirmation. Some instructors may not require students to include the reaffirmation on every assignment. If the instructor does not require students to write the reaffirmation (“I have adhered to the Duke Community Standard in completing this assignment”) or it is omitted from the assignment, it is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe second part of the Duke Community Standard extends its reach to nonacademic activities undertaken while enrolled as a MEM student. Students are expected to observe:\n\n- all local, state, and federal laws and\n- to abide by Duke policies including university policies on discrimination, harassment (including sexual violence and other forms of sexual misconduct), domestic violence, dating violence, and stalking. Details for these may be found at\n- https://oie.duke.edu/knowledge-base/policies-statements-and-procedures and\n- https://studentaffairs.duke.edu/conduct/z-policies/student-sexual-misconduct-policy-dukes-commitment-title-ix.\n\nJurisdiction\n\n- The MEM Program may respond to any complaint of behavior that occurred within a student’s involvement in the MEM Program, from application to graduation. However, complaints of discrimination, harassment (including sexual harassment which, in turn, includes sexual violence and other forms of sexual misconduct), domestic violence, and stalking will be addressed under the Student Sexual Misconduct Policy (for misconduct by students) or the Policy on Prohibited Discrimination, Harassment, and Related Misconduct (for misconduct by employees or others).\n- Any MEM student is subject to disciplinary action. This includes students who have matriculated to, are currently enrolled in, are on leave from, or have been readmitted (following a dismissal) to programs of the university.\n- With the agreement of the vice president for student affairs and the dean of the Pratt School of Engineering, jurisdiction may be extended to a student who has graduated and is alleged to have committed a violation during his/her MEM career.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c58cedc7-cea5-41b6-bc3b-3a771c4f86d6', 'payload': None, 'score': 44.61414633604376, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '347133', 'document_id': '7979214c-3a83-4371-9c7d-5b3a396437e0', '_node_content': '{"id_": "c58cedc7-cea5-41b6-bc3b-3a771c4f86d6", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7979214c-3a83-4371-9c7d-5b3a396437e0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "68b037e71e4a1ff245a8b811d8fd9bb3d143078a8f45b0130a1cf34eb9ef7896", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf2b9747-ad6a-4006-8d4d-1c44a2e498fd", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "78102f4238ea0c0199c9d290540cf6c0b09dde573d8c3c651955aba49ea65d6d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0d0262fd-5f63-4d3c-a40b-85f68f5e806d", "node_type": "1", "metadata": {}, "hash": "fc841255189697ca2eb6dedd5ea92f4eeb4dbf26140e34f28f8a094c39bc5b37", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5572, "end_char_idx": 10685, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html', 'vector': '/*ܼ9Oڼ\x07.5̧\x04\x15̻\x7fF\x05Ǽhp<."<\x03\x18\x1f=~\x19=Ѕ-\x11i\rERL;St\x1a;+;v{ٻQHżf\x14;<\x1c\u07fc\x0cX7uּǿ<^\t!/b\u05f9jIe=#<3\x04Y<\x1d\x11<\x19\x1c;|͢<\x15!\x07\n߰<%~<\n)-=:\x19^<2W=3\x15=<\'3;{<ǿB<+\x00=\x06M\x1er\u07ba\x13\x05\x0c=b\x0c컗༁}<\r~]uY<9O<8\x06M\x0c\x16;0=rv\ue37d8w̧=QHE;uZ\x15=\x1a=|\x19nh&鼾\x11%;J<\x06Y,/<\x175ƻc=l\x04;\x11\x1e\x10\x00ڼ;\x01e̼cQ- Ʒ.<;g;U;˂Hηn=D`\n=>l2\x01<ܼ\x17/yV1㴽*\x1e˻{ϼ]<\x02Ի\x18=$ \x14c=pΊ%ͼw=%T=R\x0f<:2x-\x16\x163<\x06\x0fӻ\t|a,\x0c4\x04$v{O\x1e\\\x06A\x1aWk;;\x13;u=\x18[;߀\x03\x12鎈3HK;3H<-.;=+v-"N\x1c\x16-M=4\x0b=}\x1e=Ӽ>>܀ѼH\x0fLqD_\x15=9\nm\x11cޢ))9=+a=#<2H<٭\u07fc=\x0ba<>q =?X<\x04%\x06\x0fY\x1c(=2\x0c@&&\x0f<&l,H=\x02<\\B\x07r=Ы;yN<\x14om<\n5ƞ87.=D_!\x15n<2\x04)n(=\x1e\U000fc5e5;:`G{;4`\u07fb\x1b:\x1f=cw4&\r<>$\x00\x01\x14\x102a<.ة]-0"=\x1b<\x16ӵ0R<\x00\x0f;,Z!;Kٮw>=zkdjG<{\x08y:\x0f\x02N<\x02>.=x=*\x02<\x03=\x0fܼ="\x1b<0ǿ<\x14\x0c<\x1fnG;l5Y\x05\x1b4;\x17a\'^ڼg;l\x12\x13\x03=+t=J<6껝<\n\x0b=\x02/:\n\x17:} мc(/OT<\x02!=?䗽;N=ᕼ} )ȼ4\x19=ټ\x07;\x08ռ:^\x06v\x11jŞ&mg2;LoXu\x17\x18><]=\x7fS\x10g<\x01o=V$^-\x18m\'X;꼼K=\tbݼ뽘<\x13rZf:=!_; ;v<:|3!<|,\x07qi,\x03\x1cPLjŞh*^\x19<\x1ap(P<\rټ\x06vmuM9b<ּi9V<\t\x13=AЇ\x04f<\x18\x7f=|I=hհ<\x0b=o(=9<=ػ>\x17Ƌ4\x17<4\r\x007p=\x18[;\x1a=\x1d<\x06⯺\r9/=S\'\x14/`;d\x00=\x14)FEҝ\t=E<=\x1fس<^M|ԼV\x07:\x19-t;\\@\x0b\x1bAO<;5(\x7fb<\\=\x07\x0c<.\x08=|\nbϼ6*;\x1bҼz\x0b:3Xޜ]%N,\x1c<\x1cg=I˼@U<?ۼ\x00a;`:=;启=Oo\x01D6*Ļ6\x12:\x11\x00~\x12n=xF <[Qau\x1b&\x0e=dɺ\x12<@M\x19=:;=ЍI\x05ȱfQT`"\x0b¡mG<\t>jCз<\te=;fz\x16<=<;\'<\x15;e=pQ\x16=(\x02=\x19\x032:]\x14K\x1e;S̔\x13\x1e\r<8p\x03;*;.\x1e):p\x01=o<\x13.4G\x15=\x132=\x02-p\x11<<\r=3p\t=\x13\x13&zw3=O\u05fc_z<鎌Wz(<-pE<\x06\x14\x13R(`2G়֟<\x086zz\x1b\rM=f\x02pżo(^Q\u07fc%=ˈ.;kG:W\u07fc\x17]\x15=w=@w҃\x017=\x15ֻP=C?\x131;=">.\n7f`;=\x1b\x07;P\x10=١~j$l,ć;$\x15\t(\x01SgQ<=DUv\x1d\x7f=\x018ͻl.@<ϲ=T\x9a5;\x01ϩo<\x0e=`=Ѽ8+=ԉ=4#L[5=jɛ;;d<\x12(ļQ\tIN\x7fb=p3/L<\t%۸=kp4\x08@PWDJ&=z<\x05\x1f=25:\x12m<\x03Qt+(FQÔ\x00<2J]\x0e\x1c<\x12&;EA=\nhi\x13<ƹ=5W!:C<\x19rgl\r7\r<,>\x03;ΌN\x08M<ڻ\x18.=o{=?;j"u\x0b\x17;̇;\x144=7\x04zC\x10=\x15ϼތ<\x1f\x0c#=tKF!T};\x00\x0cĂ\x05Aм\x15\x03|\x07<)II\x17v!<\x07Fg@*6;c<\\;0\x03=\x07[8=S<\x1dW<7ekpuH\x1e<\x02<Lۻ\x07[80=\x0b4#\x03H<"i1÷IN\x08ͻ\x08G=!㼭i+D\x07j\x1f<=\x0c\x15UL\r\u05eb[\x07l&+I=:M\x1f\x06eV\x1c;>=(#\'ؼ\x1f<:\x17:e\t<ӡ\x12Y2;>!ci\x16F=ϔ\r\x0e<\x0fӛT=5)\x06=\rl$¼\x0f=<#;l&=tK=H{=0$\x13\x18[\x13a<<<\nN\x05\ueea0<_Q\x18:IHr="<3<)=z\x06];Tr\x1c_=!\x14<', 'text': 'Settings\n\n* [How do I use course settings?](/t5/Instructor-Guide/How-do-I-use-course-settings/ta-p/1267)\n* [How do I set details for a course?](/t5/Instructor-Guide/How-do-I-set-details-for-a-course/ta-p/1037)\n* [How do I change a course name and course code?](/t5/Instructor-Guide/How-do-I-change-a-course-name-and-course-code/ta-p/1234)\n* [How do I add an image to a course card in the Dashboard?](/t5/Instructor-Guide/How-do-I-add-an-image-to-a-course-card-in-the-Dashboard/ta-p/624)\n* [How do I set a time zone for a course?](/t5/Instructor-Guide/How-do-I-set-a-time-zone-for-a-course/ta-p/1295)\n* [How do I change the start and end dates for a course?](/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354)\n* [How do I restrict student access to a course before or after the course dates?](/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269)\n* [How do I change the language preference for a course?](/t5/Instructor-Guide/How-do-I-change-the-language-preference-for-a-course/ta-p/1246)\n* [How do I enable SpeedGrader to launch filtered by student group?](/t5/Instructor-Guide/How-do-I-enable-SpeedGrader-to-launch-filtered-by-student-group/ta-p/947)\n* [How do I enable a grading scheme for a course?](/t5/Instructor-Guide/How-do-I-enable-a-grading-scheme-for-a-course/ta-p/1042)\n* [How do I use grading schemes in a course?](/t5/Instructor-Guide/How-do-I-use-grading-schemes-in-a-course/ta-p/870)\n* [How do I view and manage grading schemes in a course?](/t5/Instructor-Guide/How-do-I-view-and-manage-grading-schemes-in-a-course/ta-p/1188)\n* [How do I add a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-add-a-grading-scheme-in-a-course/ta-p/1054)\n* [How do I duplicate a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-duplicate-a-grading-scheme-in-a-course/ta-p/601384)\n* [How do I edit a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-edit-a-grading-scheme-in-a-course/ta-p/601385)\n* [How do I archive a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-archive-a-grading-scheme-in-a-course/ta-p/601386)\n* [How do I customize visibility options for a course?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-a-course/ta-p/844)\n* [How do I customize visibility options for course content?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-course-content/ta-p/814)\n* [How do I set a Creative Commons license for a course?](/t5/Instructor-Guide/How-do-I-set-a-Creative-Commons-license-for-a-course/ta-p/1059)\n* [How do I include a course in the Public Course Index?](/t5/Instructor-Guide/How-do-I-include-a-course-in-the-Public-Course-Index/ta-p/812)\n* [How do I set a course format?](/t5/Instructor-Guide/How-do-I-set-a-course-format/ta-p/1089)\n* [How do I change the format of a course ePub export file?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'emphasized_text_tags': '["span"]', 'filetype': 'text/html', 'category_depth': '1', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5de98e40-d933-49c2-90eb-c286525861b1', 'payload': None, 'score': 90.64511634021032, 'emphasized_text_contents': '["How do I manage my Canvas notification settings as an instructor?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "5de98e40-d933-49c2-90eb-c286525861b1", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-manag/e-my-Canvas-notification-settings-as-an-instructor/ta-p/1222", "filename": "index.html", "filetype": "text/html"}, "hash": "3d1a042c6d4a1bae721210c0a10127a1615064bd928e2854d5b7c96e2e2f1134", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16302703-378c-45c0-9106-9ad07470f8e3", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "860beb54725152d1658bbd2172b5f691ae88263f5cc891530405e4e0ab8b697e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b26b7f66-993d-49e0-894f-a130d7cd1140", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'k\x0fpB\x15\r\x11\x1d;uYº\x02\x06Bd<\x15;I\t\x7f\x03=U1[}:iKW\x1e=\x0e;{n伢ږ< .\x1eF<\x1260=8ahP\x12<\x0cļW=<=%\x07=kP<>6(=,;*Cܻ@\x03*|ӓ7<\x19\x13\x00=B\x0cZ;MW=\x07\x0bL=\x1dg<\x02\x04<\x12\x1f\x1a\x1e=ڟ\x7fK\x16=\x01I\x1f<\x19\x04q=9Y@p#T`:,q;`%\x14ԡ=R2,\x17;\';)] <.\x1e\x00=4eȻ:;\x12wnʀI*`L9Q+K<\x1c<8=\x14w\x01ؼ\x11=\x1cL=(\x13t!r<*\x13\t=\x15Rh<\x06\x0e=ɱ8}<9N[<\x00=\x1cU:d$N\x13\x1bRh9W<<\x12\x1e;\x1e\x05H^{;!2=+\x1c#\x1dg\x19\x12n\x07"/y;R"缬\x19.\x1eN\\=\'VG\x11mm\ncg9\x1cL1=Ik\x1eA\x13R<\x11<\r,= \x07\x10<8qG\x03dCo\x16\x19\n\x08<\x11w`:=\x073;Y=T\x1a\U000bc5bdKH\x06f\x04NG\x1e<09p*ϼȼ\\(Dn+=H=Dky#V9<\x0c:<2pVi\x1dn;^b\x1f<67Լ:XK\x1e=<.=\x03\x199l\x14\x13=?}\t=5M9Lq\x1f<-\x19\x0fZ\x01f<\x03T@<\'6;\x0ev\x18=fX>&W\x1d\t\x02rT\x12=\x17R]{\x07;<\uea7cY<@/Z;g\t͔=Q;b;\t3K9}b\'^j=,V^=\x11<\x16G<\'Y=[+D*\x07|os;+\x03ϼh\x06<\x03=\x0c\\F=)<\x15<\x04:w<#\x06cD8<4땼̻\x0c2z;+K۵\x00;B u=\x1b<\x1b<ؐ]9K\x1c:po=94+=3<\x075>\x06^\x1fru<\x1exӼf=>b;gK=dܼzw<}:v7\x1b=\x17:ɱX{<Ŏ\x18D\x0b\x1d;\x1a\t9G<;0Z"T<\x0b=:u)<8:\\<<\x14<):\x15: h;\n<\x06\x08=\x02=%3/ q~\x15TjgH\x07[-5=wC:)\x05μ\'V<\x0f$;ؼZ<\x11#.<\x06pq=\x03<@ʿm=\x1d5n\\fbW=Vf̹\x0f<{wZx^j=F<\x0cޝN^\x1f\x1c\x05ż\\7<\x0f=*O<\x0cp(=5c\r=\x1a\t=\'<\x19cؼySɼTX7<\x0ctI&\t\x18k"L<&hCD\x15|<\';ɱA!\x15<\x13=Z6K\x06dQ̼\'\x06=\\\\;k=X>\t\x04\x1dc<+<\x06WB;\x13Jm;xi<\x13ud;W\x17U;ǭ00)v\x07=8-O\x1b7<26ü1o:\x08q6z+拼\x04馼YI;\x0e=պ&;ޏAD$Pn:H=Q\x17<\x12:y\\4<\x1d\x1e<$=5\x16<_Ϊ;[;&hCJm<ʏ"=\x02<͑J=Acc\x01q<&\x14=<-G\u07fbp@"=>h;4m_\x05<>\t\x04:L\x17\x0f"=A=\x15\x1a\x03-"\x01yx=1\'ʋ;3mhC:\rƹ6#;s1<λ\x1b}+zU\x03=qF\x1eE=Z<<\x19"Ӽr6=ܟպA{=LǼIӼ蹼\x06y +;@y\x08=\x04n\x13\x03&\x0cw<[?=eS郅;S\t\x1e!<\x088<\tG\x189\'!\x11/Dn;u;\x17\x1e\x1ck<߲K=7<\t,Wǭ\x19==\x11x<_\x05#=<<\x15\x1e=i[ld|==RI<\n5<\x14\x0f0J9^oKm\x14\'f;\x16eK5VK\'|\x1aOج=?D\x7f\x11=3<"Y\x16nwW,}\x16\x16!\u05fc\x04=$;_!\x04\x06RYlGH=\x0f<4;٘9;\x13B;ۼv,J;|<\x0e:=\x15CջZ<95\x15=\x01M4\x03\x03\x02=D.d\x0eP9\r"=r\x1dݱ:tG\x0fiW;n5\r\x07=E=mC\x08<\x0c9\x12^2iB\x16p<<\'\x02\x19q\x1f<5H<\x12;<˸\t׳<\x16\x06S= \x03\x08\x042=\x14\x06=\x16+r4Ү\'<\x0c<2ؙ\x14\x06\x1b;2I%s:Oj<&T=k\x03\n;<\x07u=!<6f=\r<\x7f9Ky\x05=\'S=Yi=\x0b\x05=%:\x06\x0fH=Sе\x12={xkP&9\x0b\x05\x078:4\x1b|f=Vٺ\x08J\x1c=\x0cȼ5\\5=,\x0b=\x11T=Ț=\x14<;=rA=8<{3\x0b\U000372bc"\x13=)SZ<_:U<\x02B;\x06\x1e*mQn<&;f\x7f:Wg=[U~[,kb<\x0bv\x03EC=^<\x03|=yMS<\x0cBTO\t(Z\x1eD$O=\x01T`b=\x02\x17\x19U_\x08*m\x14/>;zD\x03\x0e傽g벺:\x02Ik7:l\x0b<^s;e>xVRr\x18\x16:)/\x1c\x1d\x00=LQ<&<4H:S\rlQ\uef16O\x15|\x17Y=\x19\x1btH\x7f"<:W<˳<\x0c~$s<:8<\x0e\x1a\x1d<\x15\x10.=a(;8<\x1a\x1c;\x11$3\x1061:`\n_$4˥aЩ<ɻp\x1e=\x11$3)\x06D\x01\x0c!vzN=;5\x18b=\x16<\x12\x1b45vX\x04<\x192\x11ly4\x08<\x0bv<\x17L\x03;+tɼ6=f{ͺP;;KV`\n=Jl\x05=ɇ\nVp6\x1f+;^\x16t=u\x1a<\x03\x1f<\x1a3#=j6c:[\r\x0fc<{C=H2\x19\x7f=\x1ay<\nB\x12;v;;=<\x04z\x04\nXs4<66м\x00JS=(<ø|\x10\x1b\x0cW\x08=a<&<\x08<\x07Lλz;2<֟Ѽh\'\x11f\\<)$5\x13y;A\r=eU\x15=\x17_u x:մ<+=̅<7(<\x18;nd\x07W\x02%\t<9#=΅K>W=l<;\x05;\x143;3\x00\x04\x15\'\x0f=0@:jl}g<\x0c3F<8\x1fq<3ύl\x1aЭ:\x02\u05fcu5Ӽ\x1eU\x05=H\x13\x1c!\x0fqvv\x14<\x1ev<<\'<л\x14M\n\x067+<\x1aIq\x10\r<<2<:OfM\x1a<; =8\x1c<\x0e<;w;S1wѼy><\'+<+dK;DλI\x1f:4s;]4^vY;Ǟ<p\x04\x1f:CS5Rx=\x0f[7\x16\r,<5\x14F<\x1d\x03Ud=xɺX;s*S\x10==0|ցd;nJ}c\x10j̀^vYS3=//<^vY!5\x02-A:$\u038bSb\x14<\x02Щ-#=8춼\x1bL"=Ěu4U;\x08:\x0bspm<`O<\x15vkT<~hg͊\x1a=\x02+p@=Ud<<\x1cf?=\x056,W^o;Rc:`J\x01=k7W7c\x07=tX\x1b=,.Z\x03=<$=q-<\rZm\\=i;\x08K\x1c=;0ɇ<(<ļP\x01%<\x08<;\x06"B;\x14-=3퉼\x1ag~\x1b6\x05Le\x1f=2\x13=\x08\x00\x0c;\x06=>(\x1bk=.\x03\x1f_<} =6mI.Ȳ!DC7;H<+Uȗk\x1dH\x0fȼj<\x14;e-<9t\x1cLB=uT<$\x05zЫ<\x10\x15Iz\x12=\x1bTLHm\x06;\x1d0N2y~<^=\x0eƼYa\x16<\x00!=.>2"<4=q\x19<ź =\x01~\x00=J?<\x12\x07ѼԻk\x0em<5/\x0cj:FL=^;<\x13N\x04=):]\x00:\x15\x0e:JɻZt0S:Er=\rx\x0f<\x16\x14-\x07jcC#<\x0ez+~\x1b<_-Nh~\x1cb<*ݻt\x03\'=<\x13%\x14\x1aP5;!\x0fԱ\x14\x12?\x02={\x1d;ݚ<*]\x17\x0e=!uB=ź AhJ~4u;\x05)n&9?\x12`l6\x18w\x1b\x7f9Zl6=Fd=ͽ:\x03(', 'text': 'Visiting College Students | Summer Session\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Skip to main content](#main-content) \n\n\n[![Duke 100 Centennial logo](https://assets.styleguide.duke.edu/cdn/logos/centennial/duke-centennial-white.svg)](https://100.duke.edu/ "Duke Centennial - Celebrating the past, inspiring the present and looking toward the future")\n\n\n\n\n\n\n\n\n\n\nEnter your keywordsSearch\n\n\n\n\n\n\n\n[Menu](#off-canvas "Menu")\n\n\n\n\n\n\n\n[![logo](/sites/summersession.duke.edu/themes/tts_labs_ctrs/logo.svg)](https://duke.edu/ "Duke University")\n\n\n[Summer Session](/ "Summer Session")\n\n\n\n\n\n\nMain navigation\n---------------\n\n\n* [Duke and DKU Students](/duke-and-dku-students)\n\n\n Open Duke and DKU Students submenu\n \n\n\n\n\n\t+ [Courses](/duke-students/courses)\n\t+ [Calendars](/duke-students/calendars)\n\t+ [Tuition & Fees](/duke-students/tuition-aid)\n\t+ [Summer Session FAQ](/summer-session-faq)\n\t+ [Drop/Add, Withdrawal and Refunds](/duke-students/add-drop)\n\t+ [Housing & Dining](/duke-students/housing-dining)\n\t+ [Register](/duke-students/register)\n* [High School Students](https://summersession.duke.edu/credit-course-options)\n\n\n Open High School Students submenu\n \n\n\n\n\n\t+ [Credit Course Options](/credit-course-options)\n\t+ [Calendar](/calendar-0)\n\t+ [Tuition, Fees & Payment](/tuition-fees-payment)\n\t+ [Drop/Add, Withdrawal and Refunds](/dropadd-withdrawal-and-refunds)\n\t+ [Transcripts & Transfer Credit](/transcripts-transfer-credit)\n\t+ [How to Apply](/how-apply)\n\t+ [FAQ – High School Students](/faq-%E2%80%93-high-school-students)\n\t+ [Language Proficiency - High School](/language-proficiency-high-school)\n\t+ [Policies](/policies)\n* [Visiting College Students](/visiting-college-students)\n\n\n Open Visiting College Students submenu\n \n\n\n\n\n\t+ [Courses](/visiting-college-students/u-s-students/courses)\n\t+ [Calendars](/visiting-college-students/u-s-students/calendars)\n\t+ [Tuition & Fees](/visiting-college-students/u-s-students/tuition-aid)\n\t+ [Visiting Students FAQ](/summer-session-faq-us-visiting-students)\n\t+ [How to Apply](/visiting-college-students/u-s-students/apply)\n\t+ [Language Proficiency](/visiting-college-students/international-summer-scholars/language-proficiency)\n\t+ [Drop/Add, Withdrawal and Refunds](/visiting-college-students/u-s-students/drop-add-withdrawal-and-refunds)\n\t+ [Housing & Dining](/visiting-college-students/u-s-students/housing-dining)\n\t+ [Transcripts](/visiting-college-students/u-s-students/transcripts)\n* [Getting Around Duke](/about-duke)\n\n\n Open Getting Around Duke submenu\n \n\n\n\n\n\t+ [The Duke Campus](/about-duke/duke-campus)\n\t+ [Parking & Transportation](/about-duke/parking-and-transportation)\n\t+ [Your Duke Identity](/about-duke/your-duke-identity)\n\t+ [Your DukeCard](/about-duke/your-dukecard)\n\t+ [Academic Services](/about-duke/academic-services)\n\t+ [Counseling, Advocacy & Health Services](/about-duke/counseling-and-health-services)\n\t+ [Buy Books and Supplies](/about-duke/buy-books-and-supplies)\n\t+ [Technology Help](/about-duke/technology-help)\n\t+ [Duke Libraries](/about-duke/duke-libraries)\n\t+ [Athletic Facilities](/about-duke/athletic-facilities)\n\t+ [Other Duke Programs](/about-duke/other-duke-programs)\n\t+ [Exploring the Local Area](/about-duke/places-to-go-things-to-do)\n* [Contact Us](/contact-us)\n\n\n Open Contact Us submenu', 'ref_doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e432f465-7336-43bf-98c6-3fdbd05f66c9', 'payload': None, 'score': 19.682046632058295, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '72941', 'document_id': '978cc5f7-518d-46c1-9a1e-bd564203f398', '_node_content': '{"id_": "e432f465-7336-43bf-98c6-3fdbd05f66c9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "978cc5f7-518d-46c1-9a1e-bd564203f398", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "hash": "a7cd9e930147aa8e0f3b4488d046ed23e992188b48df2708094d8b6c9da528c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0bd6314a-1e94-4749-9a6e-5da9c1fa0569", "node_type": "1", "metadata": {}, "hash": "c6bce8616e4a8e6d7db737b8856089e976713a4829bc3fe8d3c9ec16aa6bab96", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 17, "end_char_idx": 3353, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/summersession.duke.edu/index.html', 'vector': '̒\x1eϽ𩽲J9TD)[\x02͍輟d\x1f\x0c2=R6p<~G/\x04=5`=NR<]\x03{<"ú}%i"7^<ꚼXQq=tk\x17;A=\x1c?W\x07(\x0f!;J;uf\u07bc;!<&\x170(<=Z\x10\x08G;:\x03_}=2\x00<\x1a<ꕻ<\'D4<*\\讲;NBa<=^v=<\x14=\x171B9a[=\x18h=@V;~\x1evL0/\x04=\x0eQd?ﰻA"\x06<\x01\x11so<[\x1e̼\x7f<-t=\x17=\x1fd;7\x1aR\x0f<#\x05ϼRp\r:@9=b=\'\x10XCۃ=n:<$<(n<ۼkB<`89Tļ\x07Qoq\x15a<4w=d{j,=J%<.\x11T <@1\x1a#\nl;8`$>=w3fZT鼫\x0fR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 86.04144183004362, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 85.79329988783277, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 67.84771553764907, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 66.96360850680638, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{35936 total, docs: [Document {'id': 'test_doc:0125ac31-a9a9-4096-832e-aaba4d17bac9', 'payload': None, 'score': 48.66957643030577, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '518044', 'document_id': 'ed47dd43-1b17-4e70-829c-2dff9c2d16d7', '_node_content': '{"id_": "0125ac31-a9a9-4096-832e-aaba4d17bac9", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 3-2022/Envir/ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf", "file_name": "ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf", "file_type": "application/pdf", "file_size": 518044, "creation_date": "2024-09-02", "last_modified_date": "2022-01-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ed47dd43-1b17-4e70-829c-2dff9c2d16d7", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 3-2022/Envir/ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf", "file_name": "ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf", "file_type": "application/pdf", "file_size": 518044, "creation_date": "2024-09-02", "last_modified_date": "2022-01-05"}, "hash": "678f9e8ab374a2c5205a89a7846dc7f4967f59ca463a5405e41129e695669411", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3879, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 3-2022/Envir/ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf', 'vector': 'r\x05CB\x08vR\\ݴef{]\x1e<8\x1f\x18=/=#|ü\x18\x1b\x12\x147Buٻ6\x1dv=Db<\x1bE;_}:\x83I&\x14$_D5=(\';6\x1dv<\x11eo=%r=F\x04+:L<Ҭc<;5㵺\x0bJ{\x1br<ڋ9_\x7f+<<γ3=ʺ<<\x04H\x13?\x11;^l<3/be<\x08K=\x1eG<$s\x14:\x1dd¼tdӬbT=|a;Z\x04}$=:]c4;ܺ<8dǼ\x023:!\x04=7\x17<2]:;OW\x1c;ëd\\O\x10=;\x85=+9\x1eq3<\x18;vs#k:=фckkI+\x1b=_#\x19s,R]<2\x07\x17\x1b;÷}\x0cԻ|WFI=I?\x1b\r\'\x10=7m;\x14V݃<ӻ<˴-4E\rl?V:Î=γ;R\x1c=\\\x1e/\x14<0\x05|ȼj:<\x18<*=Y<-t;\x02\x1fb\x06<^\x13<\x0cY}\x0c\u0600\x1a:\x01\x05#=/=\x08=Nj|\nv<2imh\x10[J:N\x12:c켔C\nh=Ք=ݍ=p<\x15C/<{ǏL9RqM=\x1b!<\x17#:@<5<0\x06h<\x7f<\x16\x0f9:\r\x0cкX:\x00&=&`]=\x18K\x03_\x02\x0b\x12FwGg<\x04ix>7\x1a",o\x1d\tN")E\\<\x05\n<\x14H3V;\\<\x01>ƻ\x05\x05n\x07=\x17#\x16=ȼ\x05\r3\x0eN;\n=J:=)l;<\x04\x10=\x11&V\x08<"9&<\x168.T7\x08~=s3=/j6\u07fcisVqJ$\x03ʆ9*:\uf237<,ۼ\x158\x05\r87t\x00=kٖ:Z]R7\x04?<\n^I~F<|\x1d\x12s\x1cl\r;1\x13=<\x04E\x1b<|4D=o<͝\x12V=Ӎ=%\x06=%J=\x18k< \x0e\x0f\x1c\x1a\x10c˵<\x15ഗ\x15<\x17\t{~=/+!#\x18\x1b@8\x12Bi<Ƽ5\tc;إK7\x08\x00>DY;)\x19ZOz<\x15=UqJnI<)υ\x10o< <̻\\\x11\nxhO\x17;`߫\x0b0Q#<\'\r=%ɗ-qD;.h!={\x1f\x16<\x18C\x1f;`:\x0ex2<\\So\x03=#PA\x0er!=\x1bټ\x0b=\x198\x12x;W\x01=,=\x028,ኼ,^&\x04R\x12=Rר!\x04ӓ<\x03ZBG<^;$e\nި<~(<\u07fbr\x04Zwn戽8#?<\x12x=6\x05\x14;T!m;Z,κ=)<\tA6G[=\x13bS\x10&', 'text': 'The two cultural pillars of the Spanish and Anglo culture, Miguel de Cervantes and William Shakespeare shared the same times, and almost, the same day of death, April 23, 1616. Both, lived fully, as we do today, in tumultuous and tempestuous times and shared it in the tragedies and comedies coming out of their imagination. We, their heirs have adopted, used, and transformed their legacy -our language. Also, we do share that history, one of imperial dreams and nightmares and the expansion of a global Eurocentric culture that transformed the globe during what we called modernity. They foresaw such forces, those that unleashed our own wild and turbulent times. Art still creates out of Cervantes Don Quitoxe. This paper was commissioned for the first of a number of exhibits produced by the Artists Studio Project (ASP) for the annual Quixote Festiva, a nine month cultural adventure that takes place every year since 2015.Save to library[Download](https://www.academia.edu/attachments/64930199/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=44495782)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[![Research paper thumbnail of Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://attachments.academia-assets.com/49530053/thumbnails/1.jpg)](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)[Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultur... [more](javascript:;) In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultural loss for more than five centuries. Today, within the framework of global policies for open markets, the community has developed new strategies or resistance: documentary video and community radio, public and community based performance, and symbolic uses of ancestral objects are threaded with cosmological knowledge. New media technologies and collective performance are part of the strategies that indigenous organizations in Southern Colombia are practicing in order to close the generational divide, build communities in resistance, share, and make visible their struggle. The emergence of the ACIN\'s Tejido de comunicación and the"kiwe Ten\'za" (the Indigenous Guard) are the result of this process. Developing a communication platform while fighting against resource extraction operations, illegal crops, and land disputes, the tejido and the guard inform and protect Nasa communities targeted by local, national, and transnational forces. The Nasa are actualizing their tactics through a combination of historical means of resistance (military and political), by strengthening their core values, and by processes of autonomy, education, and circulation of inherited means of governance. Miguel Rojas-\xadSotelo is a Colombian art historian, visual artist, media activist, scholar, and curator. He holds a Doctorate (PhD) in Visual Studies, Contemporary Art, and Cultural Theory (U. Pittsburgh, 2009). Miguel worked as visual arts director of the Ministry of Culture of Colombia (1995-\xad2001), building participatory cultural policy for the visual arts in his country, and he works independently as artist, curator, and critic ever since. Currently works and teaches atSave to library[Download](https://www.academia.edu/attachments/49530053/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=23676786)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[!', 'ref_doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/duke.academia.edu/MiguelRojasSotelo/index.html'}, Document {'id': 'test_doc:7ae4106a-10a0-40f8-8cc5-971e807c885e', 'payload': None, 'score': 38.53360199092106, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '235942', 'document_id': '71dea93b-9b52-4783-bcd3-f27c0c643427', '_node_content': '{"id_": "7ae4106a-10a0-40f8-8cc5-971e807c885e", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71dea93b-9b52-4783-bcd3-f27c0c643427", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "hash": "0e1208392f260a647322efa9a480d331435548499b5ad3056d939be3965d5865", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3192, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf', 'vector': '\x16\x1c\x00ռtW듼\x0c]UX."Ѽkũ<\x16߰\x1c\x08ʼQ0\x03;0\x08rxڻI=hk<\x16\'=ˌ<;\r=:C=ݔl;;lW;̂i;Ab={x\u07bbQռ<<\x11\'%;̋\x070*n;c=\x02Ak<\x0cw\x1d\x189E<>7\n=䝁<0.wܿ0\x08.\x0fμ#M\x04C\x18\x1eݹ\x0f==<\x08/<\x1f<{<\x0e,0=>7\x06\x12=yW-g8\x01\x11\t_<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3xOTJ=i%\x13\t,HFL:V-\x18\x02\x17>\x17=f=0!e\x1d=V-\x18=+#A.=\x08qARj% ҼU(\uf04d#E,< <,HFG\x17\x1a8ZxC8\x01bX2K<)\x14<8I;j{<9:<1\x08d;\x03m,=f\x19<\x1ce*;E=~xX2E\x06=[_<\x0fZ\rP\x1f]&z<%\x06+<Ճ_\x00*0=x\x15ܶb/Q<*\x18:qc<:\x15\x08\x00\x01Q\x12>$q=J"-=M%"\\jW\x14U;\x00Rs%<_Z<;\x1a\x12=h\x10(<\x0b\x00K\x15={l\x00=HɻlEs-g<*k;\x03=\x17ܼ\x7fk7\x17\x04\x08v\x03\x1cvz좼t\x1aB\x1b=Ͼ,\x04\x01;ƶokOcB=&?o=?]\x0e\x17=<\nǼ6]\x1fw=\x10\x1eGB\x1b=S>\x1c:F<\x18\x05·P\x11y\x1dbX2QԎN', 'text': 'Citizens of this community commit to reflect upon and uphold these principles in all academic and nonacademic endeavors, and to protect and promote a culture of integrity.\n\nTo uphold the Duke Community Standard:\n\n- I will not lie, cheat, or steal in my academic endeavors;\n- I will conduct myself honorably in all my endeavors; and\n- I will act if the Standard is compromised.\n\nIt is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe Reaffirmation\n\nUpon completion of each academic assignment, students may be expected to reaffirm the above commitment by signing this statement:\n\n“I have adhered to the Duke Community Standard in completing this assignment.”\n\n[Student Signature]\n\nDefinitions\n\nLying, Cheating (including plagiarism), Stealing. Definitions for these terms used in the Duke Community Standard appear at https://studentaffairs.duke.edu/conduct/z-policies/academic-dishonesty-0\n\nApplication of the Community Standard to the Master of Engineering Management Program\n\nThe Duke Community Standard encompasses both academic and nonacademic endeavors. The first part of the pledge focuses on academic endeavors and includes assignments (any work, required or volunteered, submitted for review and/or academic credit) and actions that are taken to complete assignments. It also includes activities associated with a student’s job search since the definition of lying includes “communicating untruths in order to gain an unfair academic or employment advantage.” Some of the aspects of academic endeavors as they apply to master of engineering management students are:\n\n- Group and Individual Work. Please note that in many classes there will be both group work and individual work. Students should be sure they are clear about what level of consultation or collaboration with others is allowed.\n- Studying from old exams, assignments and case studies. Many courses have case studies, exercises, or problems that have been used previously. Students should not use prior semesters’ work to prepare for an exam or assignment unless allowed by the instructor.\n- MEM Program suite, computer laboratory, library, meeting rooms, and other shared resources. There are numerous shared resources that are available to support a student’s studies. Use these so that they will remain in good shape and equally accessible for others.\n- Career Service Resources. Use these so that they will remain equally accessible for others and so that the MEM Program will remain in good standing with Career Services. Abide by Career Center policies found at https://studentaffairs.duke.edu/career/about-us/policies.\n- Implicit Reaffirmation. Some instructors may not require students to include the reaffirmation on every assignment. If the instructor does not require students to write the reaffirmation (“I have adhered to the Duke Community Standard in completing this assignment”) or it is omitted from the assignment, it is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe second part of the Duke Community Standard extends its reach to nonacademic activities undertaken while enrolled as a MEM student. Students are expected to observe:\n\n- all local, state, and federal laws and\n- to abide by Duke policies including university policies on discrimination, harassment (including sexual violence and other forms of sexual misconduct), domestic violence, dating violence, and stalking. Details for these may be found at\n- https://oie.duke.edu/knowledge-base/policies-statements-and-procedures and\n- https://studentaffairs.duke.edu/conduct/z-policies/student-sexual-misconduct-policy-dukes-commitment-title-ix.\n\nJurisdiction\n\n- The MEM Program may respond to any complaint of behavior that occurred within a student’s involvement in the MEM Program, from application to graduation. However, complaints of discrimination, harassment (including sexual harassment which, in turn, includes sexual violence and other forms of sexual misconduct), domestic violence, and stalking will be addressed under the Student Sexual Misconduct Policy (for misconduct by students) or the Policy on Prohibited Discrimination, Harassment, and Related Misconduct (for misconduct by employees or others).\n- Any MEM student is subject to disciplinary action. This includes students who have matriculated to, are currently enrolled in, are on leave from, or have been readmitted (following a dismissal) to programs of the university.\n- With the agreement of the vice president for student affairs and the dean of the Pratt School of Engineering, jurisdiction may be extended to a student who has graduated and is alleged to have committed a violation during his/her MEM career.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c58cedc7-cea5-41b6-bc3b-3a771c4f86d6', 'payload': None, 'score': 89.22829267208752, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '347133', 'document_id': '7979214c-3a83-4371-9c7d-5b3a396437e0', '_node_content': '{"id_": "c58cedc7-cea5-41b6-bc3b-3a771c4f86d6", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7979214c-3a83-4371-9c7d-5b3a396437e0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "68b037e71e4a1ff245a8b811d8fd9bb3d143078a8f45b0130a1cf34eb9ef7896", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf2b9747-ad6a-4006-8d4d-1c44a2e498fd", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "78102f4238ea0c0199c9d290540cf6c0b09dde573d8c3c651955aba49ea65d6d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0d0262fd-5f63-4d3c-a40b-85f68f5e806d", "node_type": "1", "metadata": {}, "hash": "fc841255189697ca2eb6dedd5ea92f4eeb4dbf26140e34f28f8a094c39bc5b37", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5572, "end_char_idx": 10685, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html', 'vector': '/*ܼ9Oڼ\x07.5̧\x04\x15̻\x7fF\x05Ǽhp<."<\x03\x18\x1f=~\x19=Ѕ-\x11i\rERL;St\x1a;+;v{ٻQHżf\x14;<\x1c\u07fc\x0cX7uּǿ<^\t!/b\u05f9jIe=#<3\x04Y<\x1d\x11<\x19\x1c;|͢<\x15!\x07\n߰<%~<\n)-=:\x19^<2W=3\x15=<\'3;{<ǿB<+\x00=\x06M\x1er\u07ba\x13\x05\x0c=b\x0c컗༁}<\r~]uY<9O<8\x06M\x0c\x16;0=rv\ue37d8w̧=QHE;uZ\x15=\x1a=|\x19nh&鼾\x11%;J<\x06Y,/<\x175ƻc=l\x04;\x11\x1e\x10\x00ڼ;\x01e̼cQ- Ʒ.<;g;U;˂Hηn=D`\n=>l2\x01<ܼ\x17/yV1㴽*\x1e˻{ϼ]<\x02Ի\x18=$ \x14c=pΊ%ͼw=%T=R\x0f<:2x-\x16\x163<\x06\x0fӻ\t|a,\x0c4\x04$v{O\x1e\\\x06A\x1aWk;;\x13;u=\x18[;߀\x03\x12鎈3HK;3H<-.;=+v-"N\x1c\x16-M=4\x0b=}\x1e=Ӽ>>܀ѼH\x0fLqD_\x15=9\nm\x11cޢ))9=+a=#<2H<٭\u07fc=\x0ba<>q =?X<\x04%\x06\x0fY\x1c(=2\x0c@&&\x0f<&l,H=\x02<\\B\x07r=Ы;yN<\x14om<\n5ƞ87.=D_!\x15n<2\x04)n(=\x1e\U000fc5e5;:`G{;4`\u07fb\x1b:\x1f=cw4&\r<>$\x00\x01\x14\x102a<.ة]-0"=\x1b<\x16ӵ0R<\x00\x0f;,Z!;Kٮw>=zkdjG<{\x08y:\x0f\x02N<\x02>.=x=*\x02<\x03=\x0fܼ="\x1b<0ǿ<\x14\x0c<\x1fnG;l5Y\x05\x1b4;\x17a\'^ڼg;l\x12\x13\x03=+t=J<6껝<\n\x0b=\x02/:\n\x17:} мc(/OT<\x02!=?䗽;N=ᕼ} )ȼ4\x19=ټ\x07;\x08ռ:^\x06v\x11jŞ&mg2;LoXu\x17\x18><]=\x7fS\x10g<\x01o=V$^-\x18m\'X;꼼K=\tbݼ뽘<\x13rZf:=!_; ;v<:|3!<|,\x07qi,\x03\x1cPLjŞh*^\x19<\x1ap(P<\rټ\x06vmuM9b<ּi9V<\t\x13=AЇ\x04f<\x18\x7f=|I\x07\x7fJ(;Y\x15=)\x12\x10<\x17\x1e\x13];\x15\rO$=w\x08\nMl\x17<\\gz;)=<+\nɰĻkEY\x04\x19<+\n!\x0f;\x1d\x02<[\x08;\x0c0\x7fD\x7f<ڄZXY<<\x08p<\x0f\x15\x0eRM<\x1e]\x1c"Br;<\x12=\x0fʀ>3I<ڿ;,=R=~<\x03$;D;\x00<\x100+==\x0faG\x17伆u¼\tBҍ\x14=r8=$ў<\x0b:<\x18\x01Ñ=G\\\x025M<\x02!19;LrP\'ɼ\x124^;\x00;<|\x16迼߾;XD\x07\x0b:\x1e\x1dW\x11켺I\x1d.8^G1X\x01\x13N;$鼦f\x13\tͻ\x14)=\x98,R\n=$/;:+3:raB\x04=ԝ\x12iO&4\rQ= A^킺V<\x1d=\x1eԼ\u05ec\x11;{)f=cӺ7i;H<ټ.\\p<+6=^\x02=2/R&Z\x0e=<^\x02I<\x18G;\x18мo2PL:T\x10z?\x18=B\x1b<墓r=\'g\x1a=\x1dD=H\x19<[C\x10=;\x1c;\x0c^\x155l\x04=\x0b=W\x17:\x1d=9\x07\x080T>^=M<ˣ[S#\x1b =\x0f;*~=˟<\x1f\x05KټVz\t\x02=&t<ֵ\x1d=\x17N\x1e_b"z<\x05Y0<^,b\x1e=Р\\<\x10\x00E@Q^\x17nD\x0eE=\x1f٦㻘՝til#Qjy\u07bc\x06\x04=6E\x0e=MZ;u\x16\x1f\t%&ti<%\x0fz;Р<`\x02켊ߛ<\x13\x1a_]\x1dQ?\x05y<;N;\'\x12:s!<\x19WVw<<)n<\x0b͏\';3<;\\~\x18?<3\x0f<\x0b\t$k\t=@\x16\x1f=;¼F/\x0bp\x11:}z~\x11:QFT;c\x0f\x0b`;ψ=5-G<%=tf\x0fq99\x1a=\x00\x18=.=o2;mh,b\x1e\x1dļDZu=<\x1eO\x02\x1c%\x1dw\x13=Tc+jJ<(;\x1cE<\x06<\x0baBaK}j;p;x\x07UriTc+=}j<\x1b<|:ot<\x1cE:\x02<ʛ\x06̸\x10=\x07<\\<\n=Z\t\x0c\x1br7<:\x02=}\x1f=\x0fq<\x06(ý\x0b<Ԅ\x0cr=>c\x00;=Ȼ\x14}Ȼ.8\x00\x18\x03\x0c2>Z=S\x16#\x19\x16}<=E~\x0f댹.9j\x18=Ӹ\x1d<\x0eB=Y< #Ӹ<\x04#\x00UFƎ\u177c:d%;\x1a42\x0b==H=\r\x0by;4\x0e21&;\x0fּ.8\x00;\x11=q<,P3;戼\x1a=<\\<\x12l\\\x00$<\x04C\x11=:\x1bS i<#l=<}QL<]\x08\u07bb}<#\x00>銼|\x15=PC\x15\n3=/u=%0ռhu\x1a\\;#=8r7=\x0fq;A=\x17g\x17A:q\x00L\x13=W=H\x05n\x1f;:O<]\x08^;|\x15ؼ.8<>\x16\x07\x13fh3\x06\n9;f\x13\x15I<2<,;\x02<5y<\x05\x01<٤h=\x1f="0bJX\x012F\x03cO=sp<(\x1d7;\x02:.9@_0\x1eܐ<\x0f\x1a*=\x0fc\x01\x02z\x1e\x106w:\x1f>ؼn9', 'text': 'ISBN:\n\n 9781501384516 \n\n\n OCLC Number:\n\n 1346848149\n\n\n\n Other Identifiers:\n\n British national bibliography: GBC392749\n\n\n\n System ID:\n\n 011128061\n\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781501384516%2FLC.JPG&oclc=1346848149)](#)\n[Request](https://requests.library.duke.edu/item/011128061)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011128061/email)\n [Text](/catalog/DUKE011128061/sms)\n [Cite](/catalog/DUKE011128061/citation)\n [RIS File](/catalog/DUKE011128061.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011128061.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=The%20life%2C%20death%2C%20and%20afterlife%20of%20the%20record%20store%20%3A%20a%20global%20history&AUTHOR=Arnold%2C%20Gina&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'doc_id': 'e42a7446-95db-40ee-97ef-dea6044ddbce', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011128061/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:890c6570-6673-47e2-9be0-a600326ba173', 'payload': None, 'score': 5.111859860107163, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '38469', 'document_id': 'ba7bdaee-f963-4ba1-81ee-2a4f57b775b6', '_node_content': '{"id_": "890c6570-6673-47e2-9be0-a600326ba173", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ba7bdaee-f963-4ba1-81ee-2a4f57b775b6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "1f9b49d4285484e8934880d49cc42d7a6600621aa3afa4211b77d365d847f36e", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ed1aaa9b-70e3-4333-a5ed-96f1e4fd0f61", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 38469, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html"}, "hash": "ef51b4ceb583db01efb1e601a177c1635b3e9bd0f230bb5a6e3fae3dfc313a65", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fcbb370c-5342-41a3-8a91-1fd3adc0c84d", "node_type": "1", "metadata": {}, "hash": "f915634a970194ba2ed43ce6224005c536e896c2bb6c40c8797015bb4f43eede", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7061, "end_char_idx": 10572, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE009979707/index.html', 'vector': '\x03\x18_;]E\x0b\x7fh<\x02s+\\So<\x02\x1d\x19ռ\\\x0b\x1d<\x19ԇ=XQf\x0c&;9P<`\x11=;Լۙ\x03<+<[4ۼM\x0b\r9\x1cV\x0cɺ\x04#C;\x18\'z#;q\x03M\x0b\x1b<<>л"\r=]κڽ!;fk\x1c.UN#^A\x06<,=h<孃\x12\n<=:r=\\\x1e<`\x11=:@萶T<%\rcJ~\x19\t=n=0:\x04>P5\x005/<;;\x16]/H\x02;\x0cI=ľ_O\x16=.2<\x05\u07bc;\u07fc?üi\x07p=:\x0e\x08<"+;\rEwH=l\x174\x1fvO,ë=7\x1aȼ\x02Oa^ӻ\\r\u05fc5=m6\x0c=~\x17Pټ覼&ʼPv\x04=!\x03=|kD.=R@<\x02)<\x02s+=Qi<ڹ\x1bQ<~ȵ\x0b\x077\rTw8\'=\x1fWQ=p\x102A=>;tF;_\x14\x03\x1a.Ӧ\x03ݼ\x12\'ּ$(=\x05;까==\x03=<@g;dD=t⨼*<Ϡ\x1bj\\?\x17%;\\?&W\x14850ϼ7h=\x19+"t:\x12áG<@5݆X=@\x109b;;\x18=9OּM9#f%6D=^5H^<4=Jk\x1am鴼\x7f\x1eC"-\x16\x00Qq\x16=\x025¼W<"\x0f[~=ܠl\x17̏\x17;:Ո;N\r\x0b-z<\x05It⨼捸G\x1e=/=\x0c\x0b\x7fX\x11\x11\x056=(R>= 4ozތs!\x0f\x1ev<\x142R<;>\\?#<6\x14\x1d4oj=\x00<\x1d滒9^\x0c+<<:\x07"=:$q\x02\x065\x1a\x04\x1dJavĤ\x13s\\6ăq\x02<\\O@V\'Q=;\x10%=p\x06;\x1d\x07ܠ;@T=\x1a<ŏ{<\x11fz=r\u05ec̰/<\x1e^B<<8\x0f=f\x1a\x16|r<{Ƽ\x1a\t&\x0c\n)=F\x06;gcp4<\x07e%M\x1c=\x10.\x0e\x1f93\x17=Ĥ=8`[\te\x17=Y\x1fշ\x0feV \x00\x02=+*9tFݼӟ\t\th(C̺8w\x0c[\n"Ϯ!u\x1e', 'text': 'System ID:\n\n 011279812\n\n\n\n\n\nFind related items\n------------------\n\n\n\n\n Series:\n\n [Contemporary studies in idealism.](https://find.library.duke.edu/?q=%22Contemporary+studies+in+idealism.%22&search_field=work_entry)\n\n\n\n\n Some materials and descriptions may include offensive content.\n [**More info**](https://library.duke.edu/about/statement-potentially-harmful-language-library-descriptions)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Top](#)\n[![cover image](https://syndetics.com/index.php?client=trlnet&isbn=9781666947427%2FLC.JPG&oclc=1406744966)](#)\n[Request](https://requests.library.duke.edu/item/011279812)\n\n\n Send Info To... \n\n\n [Email](/catalog/DUKE011279812/email)\n [Text](/catalog/DUKE011279812/sms)\n [Cite](/catalog/DUKE011279812/citation)\n [RIS File](/catalog/DUKE011279812.ris)\n [Refworks](http://www.refworks.com/express/ExpressImport.asp?vendor=DUKE&filter=RIS%20Format&encoding=65001&url=https://find.library.duke.edu/catalog/DUKE011279812.ris)\n [Missing Item Report](https://duke.qualtrics.com/jfe/form/SV_71J91hwAk1B5YkR/?BTITLE=Kant%20in%20context%20%3A%20the%20historical%20primacy%20of%20the%20transcendental%20dialectic&AUTHOR=Kelly%2C%20Daniel%20Patrick&Q_JFE=qdg)\n\n\n\n\n\n\n\n---\n\n\n* [Where to find it](#holdings)\n* [Authors, etc.](#authors)\n* [Summary](#summary)\n* [Contents](#contents)\n* [Related subjects](#subjects)\n* [Other details](#other-details)\n* [Find related items](#related-works)\n\n\n\n\n\n\n\n\n\nOpen Librarian Chat\n-------------------\n\n\n Chat Now\n\n\n\n\n\n\n##### Chat with a Librarian\n\n\n\n×\n\n\n\nChat requires JavaScript.\n\n\n\n\nNo librarians are currently available. For assistance, email [asklib@duke.edu](mailto:asklib@duke.edu) — you will receive a response in a few hours\n\n\n\n\n\nClose\n\n\n\n\n\n\n\n\n\n#### TRLN Request from UNC, NC State, or NC Central Libraries\n\n\n\n×\n\n\n\nChoose your home library at Duke:\n\n\n* [Duke University Libraries](#)\n* [Ford Library, Fuqua School of Business](#)\n* [Goodson Law Library](#)\n* [Medical Center Library](#)\n\n\n\n\n\n Cancel\n \n\n\n\n\n\n\n\n\n[![Duke University Libraries](/assets/branding/dul_devil_gray-a2691f517901b85e8bec97e881c02cfffd4700c10ab00ece7efa10810f954aff.png)](https://library.duke.edu)\n\n\n[Contact Us](https://library.duke.edu/about/contact)\n----------------------------------------------------\n\n\n\n411 Chapel Drive \nDurham, NC 27708 \n(919) 660-5870 \nPerkins Library Service Desk\n\n\n\n[Services for...](https://library.duke.edu/services)\n----------------------------------------------------\n\n\n\n\n* [Faculty & Instructors](https://library.duke.edu/services/faculty)\n* [Graduate Students](https://library.duke.edu/services/graduate)\n* [Undergraduate Students](https://library.duke.edu/services/undergraduate)\n* [International Students](https://library.duke.edu/services/international)\n\n\n\n\n* [Alumni](https://library.duke.edu/services/alumni)\n* [Donors](https://library.duke.edu/services/donors)\n* [Visitors](https://library.duke.edu/services/visitors)\n* [Patrons with Disabilities](https://library.duke.edu/services/disabilities)\n\n\n\n\n\n\n[Twitter](https://twitter.com/DukeLibraries "Twitter")\n[Facebook](https://www.facebook.com/dukelibraries "Facebook")\n[YouTube](https://www.youtube.com/user/DukeUnivLibraries "YouTube")\n[Flickr](https://www.flickr.com/photos/dukeunivlibraries/ "Flickr")\n[Instagram](https://instagram.com/dukelibraries "Instagram")\n[Blogs](https://blogs.library.duke.edu/ "Blogs")\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------', 'ref_doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'doc_id': '48ed84b2-aa50-40f6-b6e9-009d62cc26b8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/find.library.duke.edu/catalog/DUKE011279812/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{34021 total, docs: [Document {'id': 'test_doc:bb7965cf-f1f5-491a-8e9e-f4a445020834', 'payload': None, 'score': 31.051525444173286, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '14059448', 'document_id': '9062de26-2e99-4ef8-83be-fce73f42201a', '_node_content': '{"id_": "bb7965cf-f1f5-491a-8e9e-f4a445020834", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9062de26-2e99-4ef8-83be-fce73f42201a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "hash": "c83c94e9785880140b7941400c4b3a2a5f285c0c603ac9c7d1d52aa192026347", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba356a65-50a2-48fd-b1fc-f967a9e6d437", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "hash": "4bbbcd119b451fb66d451fc33a8695c59c970047e95a285666822117512c143a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8be234a2-0105-48a9-8e87-18cf52777101", "node_type": "1", "metadata": {}, "hash": "5f71991666afb3f94bb24ec11d8905fec45505977419b92e10bf8505e81e76f5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 43356, "end_char_idx": 48146, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf', 'vector': '-4&\x1d\x1cļ=T;G\x1bN\x0c<,\x19=\x15ȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{22121 total, docs: [Document {'id': 'test_doc:454d0646-49dc-456e-a909-ebf5741a1147', 'payload': None, 'score': 50.53752520230127, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '599676', 'document_id': 'ffb8a4bb-f4ac-4c6f-bd78-cf7592b543b3', '_node_content': '{"id_": "454d0646-49dc-456e-a909-ebf5741a1147", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 599676, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ffb8a4bb-f4ac-4c6f-bd78-cf7592b543b3", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 599676, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html"}, "hash": "fc26bfbd7f39ae39bcd625eccaac0a34fbd334f8a5a42d3f1b1fdcb58264bf25", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ea0b6179-fc4c-49de-9cf1-d2f643b15c76", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 599676, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html"}, "hash": "a7e251954d2d28ee33e5abfd3e831cf482c52bc1a8b830c58b38e9d8e285b2a8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d4f9a572-0e9d-4420-a973-991026fad085", "node_type": "1", "metadata": {}, "hash": "418833b606793add31a3a7ccba4f3b22e7ba0f02f72e12e6f79f21623084a065", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3404, "end_char_idx": 8168, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/eno8hE8MR3zbjjvYbxf6yA/index.html', 'vector': '\x14b\r蜓\x13m8\x17tb֊5獜VX\x18H\x08;w#*\x16vLp,=7#\x15NR>=\x08\x02\x16=\x17H<\x08י;\x16Ƿj:2<1;=96Uʼ7;5λ4\x1bڼ(hk\x10]*=\\;Hi6<&hl=r};u\x03M=gM";7<\x18%=4\x1bZ<ȍU_Ӿm\x18=nC5\x1d;y4=sHe<*\x167˜U<\x08\x11y4\x04<\x0eU\x10ȹ֦;9m=V=-;\x16d1Cw:so;,s\x167=Y\x00:}<\r;HR}\x157;\x12WE<\x1aw?=h<( <;A^\x7f#<4b[=uϺ\x19h\x03&(\x10=9\x08\x1d\x1c\x14f\x173VY;\'\x1c#p=r<6f-^\x15֊5<َ):=Ӻ3;8[9\x1aY2;h\x12=碌J\tM\x15\x0cмSb<4\x1a<\x17H4bۻ\x7fd \x1b\x03\x12\x10\x12\x08=Hz<<$K\x0e\n4A#;o\x03=\t\u07fcG)<<\x14z\x06=vƶ뺭X;\x02;\x05GӼ\x0bm\x06\x1dU<{\x15̼\x05t\x0e\x1abK=>2\x08E:/?}@<\x19=\x1d\u07bb\x056=\x043=*6<\x17MQ=\x13+;|Ղ;O缚Tu{=0=tp\x0c=8n<)a\x7fou<\x0e==3Ox|\x08;C\x05=7\x1bڻ?Y?h<\n\'Q;Wg3<5<(|O?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 42.94798667588227, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;7\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 45.65767402992056, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u6=Eƺ\x08P=aQ0=\x08r<\x07\\;\x07M=\x04ȇ9\x05\x7f<\x08u\x05/(\x06t5Z\x13<\x08q<Բ\x08:ivV\r\x7fD&j]<\x05\x03<-<\x07U;\x06?<\x05\x0fAۼ\x05$>\x08<\x08H\x08\x07c<;P\x05,$:=\x07Ũ\x12\x04S\t&=\x05\t<\x05h<\x06\x06"?=\x05?#<\x07LiD/\x0eu:\x1b;M\x07S;W^i\r\x1c=\x1biQ\x01=\x0b\x10"\x0e=pY9ZN<"@=f]\x14=Q;;IkA\x0fD˻%\x1cɼ\x0cPS\':s\x17\x03\x13:\x17=\x1dJ4=T<\x07H==0\x0b=\x0f\x16;\x12\x05\x06\x1f\x0fJJ",梅;\x16=z<Ú<0LAza6aʅ=D`Hk&: 4#6=\x16`}݄;:?&<\x03;.\tGW=\n3λO^TCۿ<\x02?=\x0f\x1b("\tb*!\x1b\x01\x1a^;b;Xĺ53\x16<Ú;\x04\x04@$;Q!^\x16k =z\x017<)<\x17[cܻH2=\x11U\x06j\nbuP\x1f(]9\x14c\x1d<\x0c;\rּ\x1dM<\x07ż\x08T<\x0b<\r1@\x05=|ƻr\x02=Ik*<&^9Ӂ<ˇ<μM\x7fHp\x08;`h;\x0c=\x15x\x0175ƻc\t;=6T:7\x14{I;B<6=Ȧ}\x1ek&:EU\x06e.\x18;\x12<.7\x16\x0f\x02a۽ϼ\x18\x05=>?=q<#\\<\x03¼\x12obu:R\x1c*;#=^;З2f9><;t \x18\'lp<>ۿ@zԠ|g\x1f\x05=r;sv~= oR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 86.04144183004362, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 85.79329988783277, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 67.84771553764907, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 66.96360850680638, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{22807 total, docs: [Document {'id': 'test_doc:2d8baba8-e7f1-46e3-84dc-208cd19513ee', 'payload': None, 'score': 23.234952032849318, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67074', 'document_id': '47a1f1b0-6b07-4f4a-ab63-b4928f6e3892', '_node_content': '{"id_": "2d8baba8-e7f1-46e3-84dc-208cd19513ee", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "47a1f1b0-6b07-4f4a-ab63-b4928f6e3892", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html"}, "hash": "f2b363fc6cd39ae3c13d37c6f04416b14483af52ed8fbff2f465c1155557735b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "92b68052-0c68-411e-8286-aef95a356db1", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html"}, "hash": "fef0243431d8f005806035c1db181c9cfc323190d6cb0809442f732580b201c4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c4ee5605-fbc6-4c84-a006-4304e4adee14", "node_type": "1", "metadata": {}, "hash": "4493e4fe920a6c0c88b91a8ef2c7bc72a6bcced9c5bc1c35b051529b5436779e", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7326, "end_char_idx": 10321, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html', 'vector': 's"\x1a\x0fjy!\x1fϼ\x1d&5)SZ<_:U<\x02B;\x06\x1e*mQn<&;f\x7f:Wg=[U~[,kb<\x0bv\x03EC=^<\x03|=yMS<\x0cBTO\t(Z\x1eD$O=\x01T`b=\x02\x17\x19U_\x08*m\x14/>;zD\x03\x0e傽g벺:\x02Ik7:l\x0b<^s;e>xVRr\x18\x16:)/\x1c\x1d\x00=LQ<&<4H:S\rlQ\uef16O\x15|\x17Y=\x19\x1btH\x7f"<:W<˳<\x0c~$s<:8<\x0e\x1a\x1d<\x15\x10.=a(;8<\x1a\x1c;\x11$3\x1061:`\n_$4˥aЩ<ɻp\x1e=\x11$3)\x06D\x01\x0c!vzN=;5\x18b=\x16<\x12\x1b45vX\x04<\x192\x11ly4\x08<\x0bv<\x17L\x03;+tɼ6=f{ͺP;;KV`\n=Jl\x05=ɇ\nVp6\x1f+;^\x16t=u\x1a<\x03\x1f<\x1a3#=j6c:[\r\x0fc<{C=H2\x19\x7f=\x1ay<\nB\x12;v;;=<\x04z\x04\nXs4<66м\x00JS=(<ø|\x10\x1b\x0cW\x08=a<&<\x08<\x07Lλz;2<֟Ѽh\'\x11f\\<)$5\x13y;A\r=eU\x15=\x17_u x:մ<+=̅<7(<\x18;nd\x07W\x02%\t<9#=΅K>W=l<;\x05;\x143;3\x00\x04\x15\'\x0f=0@:jl}g<\x0c3F<8\x1fq<3ύl\x1aЭ:\x02\u05fcu5Ӽ\x1eU\x05=H\x13\x1c!\x0fqvv\x14<\x1ev<<\'<л\x14M\n\x067+<\x1aIq\x10\r<<2<:OfM\x1a<; =8\x1c<\x0e<;w;S1wѼy><\'+<+dK;DλI\x1f:4s;]4^vY;Ǟ<p\x04\x1f:CS5Rx=\x0f[7\x16\r,<5\x14F<\x1d\x03Ud=xɺX;s*S\x10==0|ցd;nJ}c\x10j̀^vYS3=//<^vY!5\x02-A:$\u038bSb\x14<\x02Щ-#=8춼\x1bL"=Ěu4U;\x08:\x0bspm<`O<\x15vkT<~hg͊\x1a=\x02+p@=Ud<<\x1cf?=\x056,W^o;Rc:`J\x01=k7W7c\x07=tX\x1b=,.Z\x03=<$=q-<\rZm\\=i;\x08K\x1c=;0ɇ<(<ļP\x01%<\x08<;\x06"B;\x14-=3퉼\x1ag~\x1b6\x05Le\x1f=2\x13=\x08\x00\x0c;\x06=>(\x1bk=.\x03\x1f_<} =6mI.Ȳ!DC7;H<+Uȗk\x1dH\x0fȼj<\x14;e-<9t\x1cLB=uT<$\x05zЫ<\x10\x15Iz\x12=\x1bTLHm\x06;\x1d0N2y~<^=\x0eƼYa\x16<\x00!=.>2"<4=q\x19<ź =\x01~\x00=J?<\x12\x07ѼԻk\x0em<5/\x0cj:FL=^;<\x13N\x04=):]\x00:\x15\x0e:JɻZt0S:Er=\rx\x0f<\x16\x14-\x07jcC#<\x0ez+~\x1b<_-Nh~\x1cb<*ݻt\x03\'=<\x13%\x14\x1aP5;!\x0fԱ\x14\x12?\x02={\x1d;ݚ<*]\x17\x0e=!uB=ź AhJ~4u;\x05)n&9?\x12`l6\x18w\x1b\x7f9Zl6=Fd=ͽ:\x03(', 'text': 'Visiting College Students | Summer Session\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Skip to main content](#main-content) \n\n\n[![Duke 100 Centennial logo](https://assets.styleguide.duke.edu/cdn/logos/centennial/duke-centennial-white.svg)](https://100.duke.edu/ "Duke Centennial - Celebrating the past, inspiring the present and looking toward the future")\n\n\n\n\n\n\n\n\n\n\nEnter your keywordsSearch\n\n\n\n\n\n\n\n[Menu](#off-canvas "Menu")\n\n\n\n\n\n\n\n[![logo](/sites/summersession.duke.edu/themes/tts_labs_ctrs/logo.svg)](https://duke.edu/ "Duke University")\n\n\n[Summer Session](/ "Summer Session")\n\n\n\n\n\n\nMain navigation\n---------------\n\n\n* [Duke and DKU Students](/duke-and-dku-students)\n\n\n Open Duke and DKU Students submenu\n \n\n\n\n\n\t+ [Courses](/duke-students/courses)\n\t+ [Calendars](/duke-students/calendars)\n\t+ [Tuition & Fees](/duke-students/tuition-aid)\n\t+ [Summer Session FAQ](/summer-session-faq)\n\t+ [Drop/Add, Withdrawal and Refunds](/duke-students/add-drop)\n\t+ [Housing & Dining](/duke-students/housing-dining)\n\t+ [Register](/duke-students/register)\n* [High School Students](https://summersession.duke.edu/credit-course-options)\n\n\n Open High School Students submenu\n \n\n\n\n\n\t+ [Credit Course Options](/credit-course-options)\n\t+ [Calendar](/calendar-0)\n\t+ [Tuition, Fees & Payment](/tuition-fees-payment)\n\t+ [Drop/Add, Withdrawal and Refunds](/dropadd-withdrawal-and-refunds)\n\t+ [Transcripts & Transfer Credit](/transcripts-transfer-credit)\n\t+ [How to Apply](/how-apply)\n\t+ [FAQ – High School Students](/faq-%E2%80%93-high-school-students)\n\t+ [Language Proficiency - High School](/language-proficiency-high-school)\n\t+ [Policies](/policies)\n* [Visiting College Students](/visiting-college-students)\n\n\n Open Visiting College Students submenu\n \n\n\n\n\n\t+ [Courses](/visiting-college-students/u-s-students/courses)\n\t+ [Calendars](/visiting-college-students/u-s-students/calendars)\n\t+ [Tuition & Fees](/visiting-college-students/u-s-students/tuition-aid)\n\t+ [Visiting Students FAQ](/summer-session-faq-us-visiting-students)\n\t+ [How to Apply](/visiting-college-students/u-s-students/apply)\n\t+ [Language Proficiency](/visiting-college-students/international-summer-scholars/language-proficiency)\n\t+ [Drop/Add, Withdrawal and Refunds](/visiting-college-students/u-s-students/drop-add-withdrawal-and-refunds)\n\t+ [Housing & Dining](/visiting-college-students/u-s-students/housing-dining)\n\t+ [Transcripts](/visiting-college-students/u-s-students/transcripts)\n* [Getting Around Duke](/about-duke)\n\n\n Open Getting Around Duke submenu\n \n\n\n\n\n\t+ [The Duke Campus](/about-duke/duke-campus)\n\t+ [Parking & Transportation](/about-duke/parking-and-transportation)\n\t+ [Your Duke Identity](/about-duke/your-duke-identity)\n\t+ [Your DukeCard](/about-duke/your-dukecard)\n\t+ [Academic Services](/about-duke/academic-services)\n\t+ [Counseling, Advocacy & Health Services](/about-duke/counseling-and-health-services)\n\t+ [Buy Books and Supplies](/about-duke/buy-books-and-supplies)\n\t+ [Technology Help](/about-duke/technology-help)\n\t+ [Duke Libraries](/about-duke/duke-libraries)\n\t+ [Athletic Facilities](/about-duke/athletic-facilities)\n\t+ [Other Duke Programs](/about-duke/other-duke-programs)\n\t+ [Exploring the Local Area](/about-duke/places-to-go-things-to-do)\n* [Contact Us](/contact-us)\n\n\n Open Contact Us submenu', 'ref_doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e432f465-7336-43bf-98c6-3fdbd05f66c9', 'payload': None, 'score': 19.682046632058295, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '72941', 'document_id': '978cc5f7-518d-46c1-9a1e-bd564203f398', '_node_content': '{"id_": "e432f465-7336-43bf-98c6-3fdbd05f66c9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "978cc5f7-518d-46c1-9a1e-bd564203f398", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "hash": "a7cd9e930147aa8e0f3b4488d046ed23e992188b48df2708094d8b6c9da528c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0bd6314a-1e94-4749-9a6e-5da9c1fa0569", "node_type": "1", "metadata": {}, "hash": "c6bce8616e4a8e6d7db737b8856089e976713a4829bc3fe8d3c9ec16aa6bab96", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 17, "end_char_idx": 3353, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/summersession.duke.edu/index.html', 'vector': '̒\x1eϽ𩽲J9TD)[\x02͍輟d\x1f\x0c2=R6p<~G/\x04=5`=NR<]\x03{<"ú}%i"7^<ꚼXQq=tk\x17;A=\x1c?W\x07(\x0f!;J;uf\u07bc;!<&\x170(<=Z\x10\x08G;:\x03_}=2\x00<\x1a<ꕻ<\'D4<*\\讲;NBa<=^v=<\x14=\x171B9a[=\x18h=@V;~\x1evL0/\x04=\x0eQd?ﰻA"\x06<\x01\x11so<[\x1e̼\x7f<-t=\x17=\x1fd;7\x1aR\x0f<#\x05ϼRp\r:@9=b=\'\x10XCۃ=n:<$<(n<ۼkB<`89Tļ\x07Qoq\x15a<4w=d{j,=J%<.\x11T <@1\x1a#\nl;8`$>=w3fZT鼫\x0f=(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x12ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 22.017761321393312, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 16.909464721736892, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{15699 total, docs: [Document {'id': 'test_doc:d52bb1ff-c386-4d50-8691-e0fd9d042ebd', 'payload': None, 'score': 265.80641675701776, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '158514', 'document_id': '41716b0a-7410-4ae1-8b2b-312d74ce645f', '_node_content': '{"id_": "d52bb1ff-c386-4d50-8691-e0fd9d042ebd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/careerservices.dukekunshan.edu.cn/employers/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 158514, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/careerservices.dukekunshan.edu.cn/employers/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "41716b0a-7410-4ae1-8b2b-312d74ce645f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/careerservices.dukekunshan.edu.cn/employers/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 158514, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/careerservices.dukekunshan.edu.cn/employers/index.html"}, "hash": "fd733ef2b762054fe321adcea7784c66a45cdbfffac7a2acea45a53845946a7b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8ad9baf8-00c9-4702-b81f-9d455762b69b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/careerservices.dukekunshan.edu.cn/employers/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 158514, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/careerservices.dukekunshan.edu.cn/employers/index.html"}, "hash": "d1a09cf92faf450b4e4b0b3d4ba5e125c2950c0433e0c32f982c8ffa2e5b4d76", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2302b557-e619-4c3b-8c93-95fea530459d", "node_type": "1", "metadata": {}, "hash": "57374c0737f3ae9eaadb44f780d8ffaaa7398834f3bba152ef2b65b5671c5e19", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7371, "end_char_idx": 11137, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/careerservices.dukekunshan.edu.cn/employers/index.html', 'vector': 'sE˻\x18e\x0etZMWy<\x1a5t93}=O=O-KwI<\\~<\x03\x0bM%W<.\x10B8\x1b\x1aӼٸ\x17\x1dc=<ν<\x10=<77\rC;2<[\x19\x08_vP\x01V?=>\n<\x07<\x11\x16G\x12;JV<=\x1fQC\t%6ֽp̈<}\x06Ƽ\x0e\x13=\x03ת=9vn=09H\n\x1fӼ8Ɯ;d3\x06qN=y=Y\x01<\x10*݇=Aˏ\x02;=\x18\x04/<\x10J-Tš~zm<"u;.{<_vP<ջ\';v;6\x13`H:@:F<)*=^9"\x08\ta\\;\n/"\u05cc<\x15~D<\\$\x1b=;MѾ\\?\U000e45fcwƼ\x08\x07V"=\x15< ռxƻk伩\r=]1g\x04[=R"_;\x0b&Ϩ\x00B#\x1f9=ż\x0eD:C!=\t\x1a_<=iaG&#=ؑJѼ[oռy7c=\x05Wy.=:<\x1a\x04\x8f49z:<,`<Ԗ<\n䀞:\x19e\r\x7fgJ==\r=:i(\x14<\x05Cs\x1e~.ԗ=v6;mw,=5=Լmw,=\rT;/";$<\x05;pp<\x10!\x18\x02̅=XȻ\'輵pSȋȼtc="Ƽ\r\x14;\x10P\x00[9\x02=?C\x04<6=3do(\x13\x12;-HW=]R<Ǧ\x03qM0$\x0f5=l\x14[svd\t-\x7f>\x0c=F.3A\x08=\x19 =\x1b\x05\x0c<ջs\x1e\x19q{\t=y\'\x11dF=\x01aL<\t<\x0ck=\x14;\t <"\x05=\x06R\x02t\x14<\x1f`ڀ\x01 9;mw,+z<|S\n3A<49|D\x140 =ռtj:C<^\x04;+<\x05<嚼Y;\x1a\x07S;F:ga7P=`d\x04N=\t\x1a_\r7\x13\x076Y+zE\'A<~\x103=\x10x;Ѽzh<@\'K<+EA;\x7fQ*=\tc<.=+=\'xG0;ҙ\x17L2\x0f\u0383Vaz\x16\x1eϼ\x04+9S,\x08=j\x0fZ\x00<(<1t\x03\x05u\x0c*;5\x1c\x078*\x11̻A\x03\x1e<1(ӻ\x1e?m\x08<\x17\x15`\x13*Wf\x010\'$Vjַ=::\'\x01*=\x1f\x11=\x08\x10/=[:; XX3\x18"\x12dN=hp"<\x15\x04XD;s\x0f=i\x14)$\x02ż\x0c\x19 X<\x08;{<ϔ\x16\x03\x05<\x1e\x02<-_\x1aַ\x0b;C.64=%9;:ĺ8T,V;f\x14W=RȮ\x04\x08=i\x1d:2i;ˋ;\x18\x08=JVồ8==\x08\u0378:\x05<ͺР=T\n<\x06<\x1e\x193\x00ˑ\r=\\\x15h<<<\x17;&\x16\x03;CɰF꼫¢<5.a,\x00S \x18\x0f\x7f:< üP\\\x05<ỼM<\x0e\x02=qꗛ;\x054=ȓf\x16\x03=\x19=]\x18\x02,<Ƽ=<\t<\x03\x19\x1e,!=\x01ƼF;\x1a65=d>=\'<Э\x08=Ј<\x17PӖ;\x00B\x065\x02:\x1d؏]5><51)=р<%=;(I\x7fPs:B+\r֞<\x1cW=hQ;;;\x7fu\x0fhc;;rԆ<}kK;B}: a\x13ܼ:\x10\x19=kn.dz\x1b\n\\$<,Nʟ<(!4\x16\x0cx;\x11<<\te<ς:ʟ\x13\x1aQ\x07=m,\x0e\x11=9\'<~<\x1a@|\x17.ʽ_<\r\x03=h;E=x\x0f7]μ\x02ݛ:P<\x7foa<\x1e]>\x18\x1ep<\'l=QIɛ<.<;S9B:z\x1c<ɳǼa\x0fm];|]μ\x16=\x13b;<\\\x03=I=\x1bUus\n\x13z\x18<5紺|\u058b<\x97cO\x13PFPv\x11q0\x0f(q|!7=@pT:F<\x0fi\x1aa\x08\x07;S:<9Y\x1aGK)=\t=h9\x08=̈\x08\x0f:A=<09༞\x16\x1e \x1f<\x075-d\x19\x02\x1b\r҂6=(JK\x14<˩<.=%o;5r%\x0fi=})\nX\x04=XkY<\\xXp\x11=u{\x15=d<μ4Dg\x1eIv=hI<<ؗ9:$hP;\x13=\x159/=2%\x12m:\x18\x1f<\x1fL\x06$=eEq<"ǻQ\x87\x06Q\x1ez=\x1egd,=46\x1a<\\-yϼOĻqY=n\x1f#=;\x06Xy=\x0b\x1c=D8.<;`/\x0b=dW\r=2"=ׯׯTC=mIƓ曥B:\x1c.W`\x04=\x01:<]AK\x0b\x17(OQ\n=);֑C\'0t\x01=}<\x03c<.Q<\x11W4g\x1aFI<\x04.QҼB\x1f]<\x17<\t2üWh3<"7O|11ȇ\x1e\x01=,=Z;$;y⼦\x16?nм\x17\x01>4\x11}=Q=f2C<\x06o\x191\x07)7}\x14Yi\x1bm<;\x7fԳl3:ӻ\u07bbK]]4+ae\x14^:\x13<\x1c\x1d/=\x01{\x7f;hټ\x14<-_\n=;N=6<\x1e8"-\x199,<\x04=_([ 4+\x05,Q%c=&=S;?Q\x00";=OGP<$\n;N%7\x1e=kG1u1Q\x10\x07=\x05u=\x1f:wgn\x1aY\ro<৵=<ͻ6=\x1d\nX<՞,><\\v+>;ȇ<|B˼Q\x12\x0bV{:!<Ǻdtμ<\x07FP8Ꜳ<<\x0b=o\nBT\t#\x1f{՜\x02)=([х;Q<)\x1aǻ\x1a\x02\x0c=/.\x05=;;*k\x02=Ɔ\x13<\x03,C7\x05y<%37L\x12\x03&F^N=\x16ĺ=b\x0f=h;\\ߡ;4\x11NI;\x03,2;,$;`;pltvd=5\x15F=\'dSlO*;\x06=W<\x0c\u0381\x1eiWX=<-\x0cR;\n\x0bƻXV\x19F\x03d>\n{\x14>\x0f㼒z^=Nz{=\x16<\x0eKjG_<谼\x15~q2<\x1eAF<&\x08l;"0X;s,=\x00ebȻ\x10=/\x03v*=Ժ<\x13Hf\n/\x03=&f;%=T@;;W<\\;\x7f>\'b_i;+]3E<\x06\x00\x0e>l=9ܻMJ=\x0e\x15\r>f\x1e;-\x1e\t;=t0he\'=\x17xż\x0b$ͼۧ\r,OdƘ<^\x1e~;\x14؏=0 **All courses** link.\n\nIf an instructor would like to continue making changes to a site, allow late submissions or other changes in their site, they can switch the site to be dictated by course participation dates instead of the default term dates. This is done within each site’s course settings. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354) on this process.\n\nIn addition, instructors may set within the course’s settings to ‘restrict students from viewing course after term/course end date’. By doing so, the instructor would retain access to the site but students would no longer be able to access the course at all. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269) on this process.\n\nNote: Sandbox & Collaboration sites are not dictated by the same controls by default as they are not associated with a specific term.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSetting up course site and content\n----------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nHow can I enable/disable a tool in the Course Navigation?\n\nOn your Canvas course site, there are some links (Home, Announcement, Modules, Grades, and DKU Library) enabled by default in the Course Navigation. But if you want to customize your Course Navigation by adding or removing links, you can\n\n1. Go to Settings in Course Navigation\n2. Select “Navigation”\n3. Drag and move the tool(s) you want to add or remove\n4. Click “Save”\n\n\xa0\n\nFor more details, please see [How do I manage Course Navigation links?](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-manage-Course-Navigation-links/ta-p/1020)\n\n\n\n\n\n\n\n\n\nShould I adjust the time zone in Canvas just like in Sakai?\n\nYes. All DKU users are recommended to change their **personal time zone preference** to China Time. See [this documentation](https://community.canvaslms.com/t5/Student-Guide/How-do-I-set-a-time-zone-in-my-user-account-as-a-student/ta-p/414) for detailed steps. All DKU courses use the China Time as the default time zone.\n\n\n\n\n\n\n\n\n\nHow can I copy over existing content in my previous Canvas sites to a new site?\n\nInstructors can copy content from an existing Canvas site to another including course settings, syllabus, assignments, modules, files, pages, discussions, quizzes, and question banks. You can also copy or adjust events and due dates. Student work cannot be copied over to the new course. Find out detailed instructions [here](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-copy-a-Canvas-course-into-a-new-course-shell/ta-p/712).', 'ref_doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c533cdc5-9ca9-4392-838a-416efcc47b89', 'payload': None, 'score': 32.49301228485676, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '417741', 'document_id': 'f4ece21d-8d06-40e7-a47a-297ff4d2cf02', '_node_content': '{"id_": "c533cdc5-9ca9-4392-838a-416efcc47b89", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f4ece21d-8d06-40e7-a47a-297ff4d2cf02", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "ddade1bcbfe7aaccdbc3b5146863be9efdcc4f12b4b4bafd131f8ed6ef19e3eb", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "896a8981-c39a-43b8-a50b-7d769ef500f6", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "3ee38770b0a269b83f5bd48fca6fad36d601082d6c68f0f9348d7c45748b08fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3fb6dee9-bad4-4058-a845-288ff4a1356a", "node_type": "1", "metadata": {}, "hash": "5a79b341b4a35ac8fd3dff0c2bbb3cf27a6cfe724a34804ba1c42913f9a75588", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 103547, "end_char_idx": 106536, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html', 'vector': '\'-Aۼ\x0f\'y?/6j༁|;q\r=\x161.=5aJ 6@zH:`\x1a\x0c=]<\x1c1H<5a<^!<]={2<\x02GwNrb`\x1a<\x1d\x03p\x7f=#C )R\u07fbz;/o\x13w\n\x10+s"l\x18B=/=T)ڼ\x12<\x1b(<ûJg\x8a"q\x18=O\x11ټ:\x03\x12=1\x033;\x17\x12\x19\x01Z;\x15=oX9\x0bM<\x1dP<4=,ۯ,<\x03\x18=(n:\x1a\x16h==\x10+sHK"Ȳa7"(@\x05<ϊ<\x13*\x15<`\x1a\x0c:;Sb<=Yky<\x0bF=\x18<\x11ԹF\t%~?\u07fcðli\x1a.W\x16y\x15M.\u074bƙhL\x00=\x19\x1bo\x03m<\tK\x17;ѻg\u07bc#=/<,=]e<\x00\tхd<5\u061c=NcQ<\x1d3<\x11\x1e\x04)2@μɑ(\x11K\x1c=-JP=T\x1bɖ#<\x18=;\r=\x03t;l<4\x1c\x1c\x03F<\x14\x11t<3젼F=S\x14;\x1d")hܹf.\x06\n\x13=̼\x0f+r}12\x132=J@dTJ\x05\x0e\x10b@};?X;M+ZD.\x06\x11\x0e9A\x1aչN!ۼ#=Գ-5=4ԃ(:\x18NH!\x1fPռ\x16\u0383G\x16=J<70<"f\x18Q=Kt<=\x1a =dU!<\x1e<\t\r\x1c\x15=J<8;g;*ɦ<9*yr=[\x02k=T\x13\\:\x1d=Vf<μs\u07bc]=Ⱥ"=Hճ;%\te<\x19\'c=S쁻 \x0fF^KD\x05hn@@Zbu=*\x01\x1f+ip;\x19kr\x04,U?<\x038G=pP;뻠S1X<Г<\x06lH\x06\x19k2ca:ּْ;ܼSeqP=K\x0f\x19\'\x1bۢ*\x18y\x0ex\u0383h@=\x17[L3h\x11\x05\x0f/ϼP\x04.\x7f>;,ٌ/+=\x07~\x0b<\x04^\x1aZ\x0bx&~D<\n/\x1c0:\x02<\x16\x18]\x12QDH]qX\x19;k`<\x10G=(<>6I<+X~;Y\x1d=]>;\r\x1cl\x1fDw\x0f<{Nsc\x1a\x06\x03$Z<%\teZs<,<\x05=fN=R\x03F=EUݼ9\x0f\x1e=\n}.^x<\t\r<\x08<9㡱=$|=\x08;bo\x06\x16<\U000a3f10,#\x12o\x14JT\x1f[\x01\x0b\x04\x16=F:;\x00\nw;3K=\x1b\x7f\x7f7_\x07<\x02\x0f;LOP1;[\x018m@<\x1eB=(\x04<\x10c<\nw=䠑:(Ӽ\x08\x1fļA;K;*!=\x0e_Ȇ;"\x1dw˥s<\x04\x1cJ\\=\x04qغ\uef25ߨq^;07=kؼ\x03k=|\x0b<ȆJ\\=ZB\x1d5S<-8\x1c;1K\x18\x03)?\x16=du\x0f\x15<ؖ;Q?\x17\x1f+\x00\x01=+\x16*m=&t\x1cV<\x13ykڇ=,\x1fMe\x0eO<\x04<1G\x12%\x02\nV\x1c=$<\x00&ܵ9"uێ\x14v.*\x11=HԼ}\x14)\x07\x0bG=aޠ!;r仱;T!=OO<\x1c;b;\x18/Z\x01\x0b=ło<;?=LlֿX<\x1bY5>\x10g\x1e<7;~\x04q\x16,\x1a+5ͼj$f\x7fq<=U<\x04q;\n9F; C~;n;C\x0b6!\x06=GG)=Z$%\x08e\x05\x1fZ\x12=IjV;<;|>=\x1fO\x10`A];\x0c[\x03=Hok\x0c\x1e=I;\x1dҥ<\x06\x07?B=p\x10=<@\x02\x19\x15oʷ<\x05;=G\'=\x1c\x0fjH<\x1eMT\x1dG<;\x0c\t=T]\x1beX\x06=\\\x03;ҥ=U:\x0c~! \x0b\n=mXü;\x13)j\x15i\x02%\x01v9\r@=ۄ\x16F=\x16,9\x17hft2Ȋ*;k=n;ۼx>9=Ye98\x1b<%w\x13\x06\x10<>=\x12o̻Vɼo<\x07<:&=k\x1fe\x06\x14=\x07\x15Q\x11=r/<\x0f=g<\x0f(\x03=\x052X"`<\x16=̖?;<2s\x04;J֡<\x14ּ\r<1Mw=ۻ\x1c<67\r;6r`J[\x19.=<2з|<\x1c:P\x16z;IZ\n=*xEc\x11,;67%]̖?`\x04 =o\x10k\x12\x16eͼW\\@<|c\x1d&\x1c0=^.p^s( %<\x11<=G9:\x158\\<:1\x18\x01l_B=\x00=~(=pi<(<\x0c2=\x10<=\x1a8\x15\n\x7f2|<*\x12\n1<_i\x18\x06_`\x1c~<*<>,=*\x12żƛ<ߓ0G<\r&=\x1bӻ\r\x07\x1b\x15=\x04\x18{Z=;H<돫;j\x1a<ؗ; <ε\x00WHND3<ۖ\x1a-=1<\x00ɼn`<2\x0c"; 0H=\r:=\x1d4;6\x10<0\u07bc0,]\x1d98=Q=\x148\x19"=;@u<6\x16Iq\x15DhT\x11f:\x17\x12m=ƕ\x0e.<\x02=8B<=̼F<\x1bbF=Sw"=[\'=)$p<\x07$h=+xM\x06<],Qq\x1d<+\x0b\x0e!D<[F<ݩ<\t<@u\x1d=֛\x01mIob=Y\r<\x1dW\x08#=Ėu\x18&=<\x18`p\x17=\x13\x1f<\x148\x19<\x15:w;4+\x0b=3<ݼc)=\x02I\x15\x1aSҐ\x05ll3䎼T&\x1d=d)˻M3;\x18cH=\x9a<-Z6=<\x0f(<@R\x16<\x1bX\n;@@R̮;\x0e\x04vpX\x00=\x1964\x07\x06Cx\x00I<\x14\x7fA8i<\x18{=:\x11ɻ\x00<^h<$qqf<\x1bbF<\x06+.\x05;ax\x17*B}<}Ƽ=3\x11B<[#\x17}K9\\b=)ۼAT=X;\x05Ij\x08,.;+o\x0c<={<\x19QžGuu;sy3՜Z=\x01=\x1cE<\x16O\'<\x04<\x10=\x08&;B[C\x0f&}=(\'nOU\x1d\rm#5]<\x1f=gg#\x1b/ػA$+QntOUuɺś;\x10FX<\x08XP\x1b\x01Zk].>:\x7f=G\x11=\x1f\x194=;\x155\x0e:ܹEvOռ\x1c1\r<==~<\x0e<=h\x17=T[\x02\x05<Ѳ!N\x15x;=h\x17=@D\x08+\x11\x08̗5ٛ;V$<~);\x1e`;>ټ\x16\x0cv:\x03=T;\x18<\x08\x07{\x0b<0:&8;!=Ѽݹ\x0c#\x03WF֬\x0e\x013p\x05<*[1\x1c<92:@<\x1d;\x02!%<(\x17}R"\x1av<\x01hżk\x02P=oZh\x00\x0cguI;<;-:f,.R<;M.\x1c:T\x0c\x08=K\x14|.=#O\n-hZ`&6\x0c\x1f=Ty\x1a@1\x122:;;}R"=HgRmQ|ͼO#z,\x00#+\x18;\x1d:\\/<\x17s={\\5.>guI=;X;eTZ=gz\x15efB\x03;|,\t<;\x10ͼ\x00;L\x1d\x1b,;\x04<\x03s<\x11<-\t\x03D)6=H;nɻ"ڝ\x1bր\x05\x00j\x18<\x02(;I<4\x12\x13֫-<4\x1e[--Bw\x0cf\x1c=3bT;1M=<\x13+4\x04r\x15Ż\x11;,=rأ3=3/\x18D\\=f0\x07żat9\nzg{@ȵ<\x14\x1b\x17==8:=!.;&=SU3=\r\x12=s;;i]=<\x11x:y\x10n\x1b\x08=\x07"\x16\x1a(7=1rs<ٻ|^\x02<1!\x12=2sD#ּg<\x01<=\x14=G=xj2C+̤?+-^\x03DFN=j:=8:3<~[<.À\x03U[=uA켱;\r\u05f8_\x01UO\x08;\x18<@м\x1e"J;#\x13ㅐ<{Y;^;ԯcʼ/ջB\x16+\x0eYT<&qF<3/!;^2\x02K6<(<\x08y\x14=hh\x08<(p\x10\x19¼&;\x1b<<;\x03P<\x1a!}<"c2=oq:ɄҖ[\x08bǚ\x16\x02=s\x11ܲ\x154`(L=s\x0f,l\x10]($B\x16\x02u6\x12\nQ\x011\x0b\nѼސ=T<\x07;O<9<\x06mw33A<=J\x1d&ʼe\r<\x0b4ܼ\x16h\x0b:YؼZ\x05<\x13d^R\u07b8BzO<\x1b;=|k\n\x18\x03=N?\x04;\x06\x11#9=߇X*0V7*5;f5<:鼫\x10;\x19#]<-3u\\x<|j-<<\x18\x16\x13=\x03P-~J=6EפmJb[\x1a:= )\x14:p\x11\x04`.T\'<\x14u=F<\x14\x19\x1f<.^<\x0bw>O\x0eN\x0c=XLh\x00G*\x07Xx=\x1b"\U000e0f2d6Ż\x05\x06=\x1e<~o5竼\x0c\x04\x04=<ͼ=\'Jt=ǪD/D\x07C\x03=\x07<=:\u05fa\x14=5X\x13\x16\r̼\x1bJ_K1=\x06l\x1b0=\x1el:\u07fct/<\rN<>=\x0e\x01\tsJ<\\1\rλnY\x1e1\x17=G;+=~\x03=M2!=\x14M=qa=w\rH<\x1c="<\x062;AZ4?\'Ц<\\=a:Iۻ\x10]թ6<[<\rJ=<\x0f;.[8<\x1fxsx<3\x12\x0f<+>\x1dIW<Ø]\'-\x0b&<\x15X\n;d\x1f<㣽]&z\x7f\n<\x0cZ\x16/\x19\rKoI<Ǫ<\x04z=Ț{y~=:04>=6=\x7f<̬Z0\x05M2s<6/\x15\x1cżU8{<랽\x0fp\x11\\==\x1d\x07Oi7QG\x02\x0e([x=&\x05E\x12\u05fa`\x19;;ޯ<"\x0c}5$4<\x0bv#\x1f}=\x15<\x081̑<4\x05<\x10m;\x01ݼ}57ȖyY<\x11\'=\x16*.,D_\x06u;UB\x07=y\x0fƼ\x0e;A:W;di;C/:zڅ:y\x19(=?Q< 9apP;=4WnN)Pg=Gq\x17&R,s\x19̿=;\x017;E:\x05\x1f^\t;zr)<e%;\x18? <8\x19G\'\x07ϼS<ʺp˼ ͺ9J|=D@<(=\x11;\x00\r<\r<+<|\x0b< ͺ|?=˗5\x7fn=3:ߟ|\x0bK,?=ZкW!;\x1e,= e=\x08\x17\nP/!v;1Waܼ\r\'6\x1bʻn,T<\x15\x1cE=süݴ=\x15\x89;<9%Ϧ<`#L=p<<\x08%\x14,|=U<\x00\n=碻\r\x0e=TL;)*:n\x1eyb<\x10Փ";&)n\r;UR\x07Nf*=#{<_ކ;<\x176D<6<\x017:o;\x11\\<Ÿ\x16N;͘e=?<*\x12=ܕ]s=%=1W\x19\x0cf\x04\x08a\x0f=\x7f\x05\x0e=B`n\x0e\x11\x17n;\x0f\x08?5=šԼ;<<ͻ~\x04=\x0c;\x19\x06\x00=\x17=M=;\x1f$;\x15;B`;\x13<\x14D\x14;\x15Ok\x0ef<\'\x0b=-CI4\x03uD=<|3\x13:R[ۻ1\u05fb`r鼜3*=\\*\x19m<)\x18=\x19\x0c;ubJ\n*=AQ?zܼ\x83 ;B5kC=ɇ6\'%\x13=Y:8\x0f\r=՜q= YϻU=U\x08,<_:\x03-pZW<$0\x1a3e<\\*ͼ/\x12";{d<\x165>M<\x17A\x06\tZ\x1cSj\\c=;\x1d<&\x16;l$\x0fu\x0b\x17;Ը.\x0f\x7f<', 'text': "# Online Resources\n\nThe following websites are recommended:\n\n- Longman Dictionary: https://www.ldoceonline.com/\n- Online Writing Lab (OWL) @ Purdue University: https://owl.english.purdue.edu/owl/section/1/\n- Academic Writing: https://owl.english.purdue.edu/owl/section/1/2/\n- Citations and Research: https://owl.english.purdue.edu/owl/section/2/\n- Duke University Writing Studio: http://twp.duke.edu/twp-writing-studio\n- Resources: http://twp.duke.edu/twp-writing-studio/resources-students\n- Online Tutoring: http://twp.duke.edu/twp-writing-studio/appointments/appointment\n- BYU Corpora: https://corpus.byu.edu/corpora.asp\n- Corpus of Contemporary American English: http://corpus.byu.edu/coca/\n- Word and Phrase: https://www.wordandphrase.info/\n- Academic Vocabulary: https://www.academicvocabulary.info/\n---\n# Course Requirements\n\nWriting and Language Blog: The goal of this assignment is to encourage reflection on your growth as a writer and as a user of English. Each week, post a brief reflection (minimum: 200 words) on your insights related to writing, English, and/or language. Here are a few prompts to get you started:\n\n- Insights about the process of writing or your growth as a writer\n- Insights about English usage, language learning, or language itself\n- Insights about vocabulary (i.e. connotations of English words, DKU specific vocab, idiomatic English, terms specific to your field)\n- Insights about style (i.e. particularly effective language you’ve noticed in texts you are reading)\n\nPost these insights to the Writing and Language Blog on Sakai by 9:00 AM each Wednesday morning. Each week, instead of writing a blog entry, one student will prepare to lead a brief discussion on the entries in the following class.\n\nInterview Report: This project will allow you to learn from an experienced writer in your field about academic writing, give you experience writing from a source (an interview), and offer you the opportunity to write with co-authors. For this project, you will be placed in groups. Each member of the group will find a published article by one of your professors, interview the professor about his/her writing process for this article, how he/she learned academic writing, types of writing (genres) commonly written in the field, current controversies in the field, and what advice he/she has for graduate student writers or for writers in that field. Then, you will summarize what you learned from the interview in a 1750 - 2500 word report (depending on the number of people in your group), which you will present to the class.\n\nResearch Report: Kenneth Burke, a literary scholar once wrote:\n\nImagine that you enter a parlor. You come late. When you arrive, others have long preceded you, and they are engaged in a heated discussion, a discussion too heated for them to pause and tell you exactly what it is about. In fact, the discussion had already begun long before any of them got there, so that no one present is qualified to retrace for you all the steps that had gone before. You listen for a while, until you decide that you have caught the tenor of the argument; then you put in your oar. Someone answers; you answer him; another comes to your defense; another aligns himself against you, to either the embarrassment or gratification of your opponent, depending upon the quality of your ally's assistance. However, the discussion is interminable. The hour grows late, you must depart. And you do depart, with the discussion still vigorously in progress. (A Philosophy of Literary Form, 1941, p. 110-111)\n\nThe project of your entire graduate career will be finding entry points into the ongoing conversation of your field, a task that requires that you learn the literature of your field, learn how to respond to that literature (by, for example, conducting research), and communicating your responses. This project is meant to help you begin this journey, by reading the literature on one topic in your field. You may choose to do one of the following:\n\n1.", 'ref_doc_id': 'a771403c-4691-49da-9f89-3912cb359c55', 'doc_id': 'a771403c-4691-49da-9f89-3912cb359c55', 'file_name': 'gs_720k_tyler_carter.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/08/06145247/gs_720k_tyler_carter.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{28699 total, docs: [Document {'id': 'test_doc:daf670dd-f0fa-4846-b35e-fc0bbda325d9', 'payload': None, 'score': 148.46959989496878, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '606481', 'document_id': '4fb1f210-5642-42d1-831a-53f92e667688', '_node_content': '{"id_": "daf670dd-f0fa-4846-b35e-fc0bbda325d9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4fb1f210-5642-42d1-831a-53f92e667688", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "87ac1d3c110cace183e1cde6bb7c69f8a22d7dd10684f927b5763e29f618e239", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8745d118-8855-4f70-a6dd-53086aa330e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 606481, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html"}, "hash": "5651fd8345134c058d56162b31c2d359a36a8da0c5fe52c9388c3bf0acdb18da", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2c937b77-e7da-4784-b17a-a43eb546d78d", "node_type": "1", "metadata": {}, "hash": "6e1e08893619d95ad004150eab2ec01a3d4affc3902e82c6c676587e60dbcdea", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 8678, "end_char_idx": 13255, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', 'vector': '\x03Y?Q\x195Q4ϭ0:M\x00;\x038\x18\x01\x0c<\x15>=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n 1;\x1a\x1b=3SbA,\x14e\x00Y=L˼N=\x1c=\x18=Ur=\x04y.g<\x7fi黌);F\\<72*<\x01>\rkw\x03\x14R\r\x10f;\x1b7;>;Kܼ&=\rs\'\x0f\x0cj\x08\x14!n\\\x12,@\x14\rOW=;]=7b=;<\x08;\x1c<;Xy<4#;\x10<)@\x0b8%٭Fb\x1a\x1bk<\x18<<\x1fu<|z<_\u07fc;\x1eކ&c=\nu;\x11=\x08<\x16\x02\x03V&\x1el<;04)\x08\x14!d\x07yuz=\x05ӭ\x1d\x06f=:-<`ּ;`\x00=8%;\x10><\x107^|(T}Ἥ\x16;vh\x02=\x0b\x03\x01\x16yd;\x7fn2=06<3S:;<:\x11T\x02=\n<\x06<`qE3S;rD\x0eO<`\x0e\x0e1\x19\n=Y~ @*N<(N4#2g\x1f<:q}\\ <׃ \x1f\r\x01q<7b1me=\t\x02=q<\tk!<\x10>:\'\r', 'text': "His research is not limited to air pollution, but also covers water resources, energy and climate change. Recently, he and his team have been working on the top-level design of China’s carbon market in order to advise policymakers from an economic perspective.\n\n“There is still a long way to go before these theories can be put into practice in China. Perhaps the changes we can bring now are tiny, but as long as they are useful, or they are positive, our return to China makes a difference. In fact, no matter what you research on, not merely in the sphere of environmental studies, so long as you are concerned about the environment in China, you are moving in the right direction,” Professor Zhang said.\n\nIn 2003, Professor Zhang travelled to the US for his degree in Environmental and Resource Economics at Duke University. He planned to pursue his academic career in the US, and meanwhile became a father of two children. He enjoyed sharing his thoughts through academic papers as much as sharing the lovely quotes from his sons through social media. He was appointed a tenured faculty member at the University of California, San Diego, and it seemed that his story would go on in the sunshine of California. Then he made an unexpected decision: he would go back to China to join the recently founded Duke Kunshan University.\n---\nBeing Global Environmental Leaders\n\nBeing a foreigner in China, I’m always asked where I come from. It got me thinking a lot about identity. Norwegian is one of my identities, and female is another. That’s how people tend to position me, but that’s not how I define myself. A distinctive feature of a globalized world is that national boundaries no longer carry much meaning, while our life experiences and outlooks are more important.\n\nAs we all know, global environmental problems such as climate change and marine pollution have emerged. I think the fundamental issue is how to view the relationship between human and nature, and how to make people more concerned about these issues is the main challenge to achieve environmental protection. Therefore, as future global environmental leaders, it is critical that our students are able to identify various ideologies at play and ultimately support and facilitate public acceptance and compliance with environmental policies through them.\n\nProfessor Kathinka Fürst\n\nLaw and regulation researcher with interests in environmental policy processes, law enforcement and compliance and the role of civil society actors in environmental governance processes.\n---\n# Professor John S. Ji\n\nEnvironmental health researcher with interests in population health sciences, epidemiology, occupational health, and energy and the environment.\n\nCan you introduce the research that you have been working on?\n\nI do two kinds of research right now. One is on the science side and one is on the policy side. Both are meaningful. I enjoy more of my work on the science side than the policy side, but we get a lot of information from the policy side.\n\nWhat are you most passionate about in research?\n\nFreedom. You can follow your thoughts even if it's not systematic. It's really amazing that you can find something by accident that deviates from your original idea, but the new idea that you found by accident actually it is more interesting.\n\nWith your experiences and reflections, what’s your current understanding of research?\n\nAt the end of the day, it is answering some very simple questions that currently people don't have answers to. For some of my studies I'm using data to find connections between A and B that I feel exist but they may or may not be there, so I need to do these kinds of research to find out. Some research is very meaningful in the short-run. Some research is meaningful in the long-run. In fact, most are just not useful at all, but they are efforts of trying to be meaningful, that’s important. It is really fun. It's really fun, if it's a question that you are genuinely curious about. Genuinely curious.\n\nIs genuinely the keyword?\n\nYes, genuinely is the keyword.\n\nLet’s talk about teaching. If you choose to open a course at DKU, what would you like to teach most?\n\nI would develop a course on planetary health. I will bring in the experts from each topic. Some econometrics models, some study design, some statistics, some kind of a mapping tool like GIS. And layered on top of these analytical skills, the various issues related to the planetary health, like pollution, climate change, water scarcity or atmospheric processes.", 'ref_doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'file_name': 'imep_year_book-v6_bt_e.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155119/imep_year_book-v6_bt_e.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9d741364-d09e-41bc-a81f-668b2ccb59e2', 'payload': None, 'score': 86.79123908507859, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '132377', 'document_id': '369c95b3-bcf2-4ce6-80a9-da39d8befa7c', '_node_content': '{"id_": "9d741364-d09e-41bc-a81f-668b2ccb59e2", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "369c95b3-bcf2-4ce6-80a9-da39d8befa7c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "145a4af52f9e61f58dcdb62d79e0c007fa5e89084e392a05fda8844d2c46e968", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bac532d5-ec6c-485e-a3e3-892326752fa3", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "17524a3c808e77325ec13cc19f828007c0f8bdeb727086b5ac2265217157efe5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "51eea6ae-e400-402a-ac41-4485ca6aa8f1", "node_type": "1", "metadata": {}, "hash": "7877b626e092c83a74cdcdc07e6ffacb642d90ab1423b25572827f1169d0e63a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 10401, "end_char_idx": 14491, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html', 'vector': 'tY2R@\x035ENC=\x1f<ƿ#[}\x1eVE=Z=\x1d\x1b\x14ŻӺ<˪\x1f_m<7=\x04:\x1b;kA]@_<2鼿/Xa\x08<\tC&ۼq<5]\x1bo<(q+\x1f:ɻO3vvCc\x15Q<$\t)f\x1d\x0e:;^=O<\x18\x07<\x17,\x1a@值l?DtplD`=tp\x03<\x0f\x11^]3@;\x13ූ\x19қ;\x08TM\x12;)S\x06\x1bUx<\x7f3\'bף=ڈ9^;¼ӌ=c\x0e;\x03_B]@\u07fc6JD\nҟW;\x18\x077p\x10s|!<=j\x7f\x01?b\x15\x13ĉ<֯Cʥ<<\x12\u05fbd*ݼ!F\u070ei&=\x13\x03-To\x0cnd髻ڬNrJ\x148T\x03=\x04㼜\x06<^# ƿv\x15-м*A)\'\x15\t=\nPK=+w\x02\x1d٩`hr;i&3*=\x0eJ\x12c=M?<\\\x00ߩQ\'<\x0cV^#<(ˉ<<\x14<3\t\'=;\x0fܕ;\tۼ\rF<\x08<7_\t[Q\x17iW\x0b5U\x18dnN=W:\x10hi=\x00%<͆\x1e=<ƺ\x0bt\x0e;:<*=\x11\x19;\x1dپ4<ɹx\x1f=hrNU>T뫼ঽN\x16w<<\x17=DY::\x00uO=JEvY=uKNU<\x0f"+\x03dnN\x00"=Ml<[X<"X\x10<\\h\x19<}P9C[XG\x11<;WkT;]i#u%;}=9̼]ﻌ=/<5!/\x03x\x0fi=cMl\x10<\x14ǼϞsyA:o`O<<\x7f{6ʼM̼|z1=:\x15=z6;\x13,\x16,¼e@R< HYy݅<{=3\t<6\x03=\x03<=N"=mgJ+)м՜B`EDѝ<\x03eF\x06<\x00=\x0ej\x12<\x1dk:<~tC\x19\x033\x0fq<<=)<ŽG\x11L:/\x1dݼ\x18<\x01\x06<\x05\r0{= \x01\x02dnμGP\x05\x7f!\x04\x05\rw̌G6;js;\x7f?&;3<ݻ`#\x1c\x1d;{\t\x1d\x0e\x17\x01\rN<{;G=\n<.\u0379m\x10g;\x18;1M~&Z=ٟs=4\x0fl<\x11(\x1a:QU=;j"<\x10ڼ\x1a \x01=&M<#<\x01;<\x1aͼ[\x14r{\x1bc<\x17L(\\={Ee"V=\r;.;&=~&ڼ\x14턼~<Ƌ\x1bnYB;Y%;$,<\x1dw;2=\x16\x13;\x049b;\rs,7B7\x05(o\x1fV8=\x08\x066\x07=e78˼\x0ef=>λL=iJV=Fc\x04<9@&\x04\x1e;;\x17<-:9ϼht<\x18_b;\x0fG\x02/r<<ư<_b\x03Q\'EM*;Ubz?;ƥ\x13F;:j$)2\x04<\x00=X\x02\x1c=sb\x17\x08;`ÁFc\x1d3;.ͻ\x01nw[;a.!;zw\x05\x05D9_EgdA<*hL˼\x1f\x06=\x10\x16ja$:\x7f#<\x1dgJ=\te\x07B;H=\x01\x1eO?-<4\x12\x96<;3:ߤ3;\x08\x066\x00EмR\x1d$=];{n~Zi<<5ƅ,u=:\x03= zu3\x1c=p4[;Ϸ;6\x1b<\nC"\r\x05\x1f=$<1%c<3\'f3|0w0<\x07\x0c<)ʼ\x0c;\x0bqZC;q\t=%otH\r<\x185=mS`\x10\x00<[<\U000a3f10,#\x12o\x14JT\x1f[\x01\x0b\x04\x16=F:;\x00\nw;3K=\x1b\x7f\x7f7_\x07<\x02\x0f;LOP1;[\x018m@<\x1eB=(\x04<\x10c<\nw=䠑:(Ӽ\x08\x1fļA;K;*!=\x0e_Ȇ;"\x1dw˥s<\x04\x1cJ\\=\x04qغ\uef25ߨq^;07=kؼ\x03k=|\x0b<ȆJ\\=ZB\x1d5S<-8\x1c;1K\x18\x03)?\x16=du\x0f\x15<ؖ;Q?\x17\x1f+\x00\x01=+\x16*m=&t\x1cV<\x13ykڇ=,\x1fMe\x0eO<\x04<1G\x12%\x02\nV\x1c=$<\x00&ܵ9"uێ\x14v.*\x11=HԼ}\x14)\x07\x0bG=aޠ!;r仱;T!=OO<\x1c;b;\x18/Z\x01\x0b=ło<;?=LlֿX<\x1bY5>\x10g\x1e<7;~\x04q\x16,\x1a+5ͼj$f\x7fq<=U<\x04q;\n9F; C~;n;C\x0b6!\x06=GG)=Z$%\x08e\x05\x1fZ\x12=IjV;<;|>=\x1fO\x10`A];\x0c[\x03=Hok\x0c\x1e=I;\x1dҥ<\x06\x07?B=p\x10=<@\x02\x19\x15oʷ<\x05;=G\'=\x1c\x0fjH<\x1eMT\x1dG<;\x0c\t=T]\x1beX\x06=\\\x03;ҥ=U:\x0c~! \x0b\n=mXü;\x13)j\x15i\x02%\x01v9\r@=ۄ\x16F=\x16,9\x17hft2Ȋ*;k=n;ۼx>9=Ye98\x1b<%w\x13\x06\x10<>=\x12o̻Vɼo<\x07<:&=k\x1fe\x06\x14=\x07\x15Q\x11=r/<\x0f=g<\x0f(\x03=\x052X"`<\x16=̖?;<2s\x04;J֡<\x14ּ\r<1Mw=ۻ\x1c<67\r;6r`J[\x19.=<2з|<\x1c:P\x16z;IZ\n=*xEc\x11,;67%]̖?`\x04 =o\x10k\x12\x16eͼW\\@<|c\x1d&\x1c0=^.p^s( %<\x11<=G9:\x158\\<:1\x18\x01l_B=\x00=~(=pi<(<\x0c2=\x10<=\x1a8\x15\n\x7f2|<*\x12\n1<_i\x18\x06_`\x1c~<*<>,=*\x12żƛ<ߓ0G<\r&=\x1bӻ\r\x07\x1b\x15=\x04\x18{Z=;H<돫;j\x1a<ؗ; <ε\x00WHND3<ۖ\x1a-=1<\x00ɼn`<2\x0c"; 0H=\r:=\x1d4;6\x10<0\u07bc0,]\x1d98=Q=\x148\x19"=;@u<6\x16Iq\x15DhT\x11f:\x17\x12m=ƕ\x0e.<\x02=8B<=̼F<\x1bbF=Sw"=[\'=)$p<\x07$h=+xM\x06<],Qq\x1d<+\x0b\x0e!D<[F<ݩ<\t<@u\x1d=֛\x01mIob=Y\r<\x1dW\x08#=Ėu\x18&=<\x18`p\x17=\x13\x1f<\x148\x19<\x15:w;4+\x0b=3<ݼc)=\x02I\x15\x1aSҐ\x05ll3䎼T&\x1d=d)˻M3;\x18cH=\x9a<-Z6=<\x0f(<@R\x16<\x1bX\n;@@R̮;\x0e\x04vpX\x00=\x1964\x07\x06Cx\x00I<\x14\x7fA8i<\x18{=:\x11ɻ\x00<^h<$qqf<\x1bbF<\x06+.\x05;ax\x17*B}<}Ƽ=3\x11B<[#\x17}K9\\b=)ۼAT=X;\x05Ij\x08,.;+o\x0c<={<\x19QžGuu;sy3՜Z=\x01=\x1cE<\x16O\'<\x04<\x10=\x08&;B[C\x0f&}=(\'nOU\x1d\rm#5]<\x1f=gg#\x1b/ػA$+QntOUuɺś;\x10FX<\x08XP\x1b\x01Zk].>:\x7f=G\x11=\x1f\x194=;\x155\x0e:ܹEvOռ\x1c1\r<==~<\x0e<=h\x17=T[\x02\x05<Ѳ!N\x15x;=h\x17=@D\x08+\x11\x08̗5ٛ;V$<~);\x1e`;>ټ\x16\x0cv:\x03=T;\x18<\x08\x07{\x0b<0:&8;!=Ѽݹ\x0c#\x03WF֬\x0e\x013p\x05<*[1\x1c<92:@<\x1d;\x02!%<(\x17}R"\x1av<\x01hżk\x02P=oZh\x00\x0cguI;<;-:f,.R<;M.\x1c:T\x0c\x08=K\x14|.=#O\n-hZ`&6\x0c\x1f=Ty\x1a@1\x122:;;}R"=HgRmQ|ͼO#z,\x00#+\x18;\x1d:\\/<\x17s={\\5.>guI=;X;eTZ=gz\x15efB$\x14SћI<^:\n<>̼\x06\x00zm_\x17\x14J\x1e<\x19I9l\x1b%5\n\x03\u07bcR=!Vm<\x05=1\x03<6y:9A\x1e=5A=8\x7fJ\x06NV=h><\x18\x11ּT\x0fch<\x148A\x05=\x19h>p\x1a);\x10쐾Xf<\x1f\x07\'5ռqD\x02Ur9u<_\x0eOKw\x04;_8R\r\x03;\x0e%!m-9Ga=3Tr=\\$u\x00;J\x0bʼ\x0c<*w3\x1bη<Ν˼(ּMMKp;\x0bJ<\t<`R<\x0b<փ\x0eƲ<\x193n=\x0e`4ޏsټ|D=ռxH*7\x1dFɖ;G={;u\x06B̼BƼ!te9(=V\x17=lVM$M\x19SS\x7f=e@Ng<р<"\x7fV"\x1c(<\x1em:DSj9Su&\x02,=xG&=v֨;\x1a\x03<1<Κ<\x00;43>S9=\x11<\x10c\x14=ZH<֝;u;X<=F\r^raYL\x0eU\r;*\tM3=\x14S<\x07\x1ax\x0fb9KrWI\x01;K:\tM\x1a㍼;C0oԼN^*\x01<{\'ü+\n\x06=9`\x0b<_\x02<>\x1b\x08)<7RX;=Vk[<\x1aּhS~\x0f\x03A㼐*r\x08=\x0b*ګa<6t;wc\x06vb=7߁\x0eJbڻ\x06:\x14м\x056<\x03\x0c=\rnv`kֻ\t\x06\x14\x00<ӧ;W\u07bcG\x08]\x01\x17!<\'+k<\x1düxg\x1c\x1fh\x1e;\x12\x1c\x02fC<ռ\\=^\x0e\x10=\x0f`=\x03\u07fcd< \x00=\\<8\x0bz<=C,<2\x1a=ټ:Q\x1e7b4;ƜЇ:ݣ;W<3\r<ڰ-_v<~{=Ƽ\x03ʫS~\x02N\x0e\x104GASEYW\x0f;T[:Jºˉ;vd]=\\;:;#\x19ò=\x1d\x1f;̑\x08.(;\x18F\x1f.$=R\x18\t:x<~\x059\x003<;ڶм\x0c`J=\x13;\x15c#!=d<\x12\x03!\x08\'\x15r\x00=\x13<\x19\x1c<"S.<7RXo,:;F.~f&<1eP=wYnD\x1c=F<%1eк1\x7f\x11\x1dY<\x10-y=m<6m:g\x17Ӻ\x1a:bZ<5E\x11\x1dY<;5=މ\x108\x0e;@:*.O? \x13\rs<\x162p4\x1aa*;@A=kT|<%K^PvC\x06\n<ԋ<&ӻ!Y\x019I%xO>;F)\x1a;\x14\x17\x1fFro\'<ݻ8\r\x07<\x0bB軬F;A;77;),\u05fd@=^v:y\u05fc%K\x1e?$"\x16;\x1eW6~=EE\x1ek0\x03=t\x02*=i}]\x00P=|So%o[\u07ba\tV<\x08-D\x01=%xOfqg"\x12<(=ڿn\t=$F;\x11G=m<6~OS;\x03ǼڱH\x16<\x1aU)\x1eTwv2=\x0b>ʡ\x08Qp=a\x11wG<\x1f\x12=8\x16dء\x18<\x1eW\x11_-;8\x07\x13<Ǔu<\x14<,2ET.\x02w0R\x1a\r-;q\x18=\x15\x1e3<\x1dg\x0b\x16^ͼu7=\x01<\x0c)\x1ca\x1dG2\x1ch<\x00\x04\x7f64\x1bL=\x06=\x015ǓܬZ<\x01}sx\x06#@\r\\f\t\x15=";\x0cv=\x16\x0f1[=J[\x11kH\x1d)<֕Y\x07=\x99&\x08w|ﻦ\x05sEE=QcQ=y)hq<\x12U/=0\x05=:q^\\\x19<{\x1e\t2\x0f<\x18=\x00\x0f"\n\x17\x02._1VQ=&Sql=:ѻwL;=Qđu==!\x1e:H;d p<\x18tײ26;z\x02\x1d}O\x0b\x19ӼK\x0c=X \x00q\x00q;\r\x02ftI\x1d\x0eڻSA86<<7\x02N,\u074b< \x0c<8\x05g;AȃN[Qxջ\x157{qe\x06\x04a=мQOҼ\x14?\x0cTR9μg=]|\x1c\x01=\x08\x01:ʽLP\x1f\x1d\x1a堼1J\x06g=\x00<\x06\x04a;]Ժ,!ü[N;&"=<+&<$\x00"P%9lcA;\x13\x1em\x12=\'\x1fA\x1e\u07fcs$\x1bϼ:k\x14<\x03ZT;;Z<\x0e\x14\x14=S_\x1eVC9,g=\x05=i<>ʼ7<\x1cs\x10=d<Շ5<\x1b\x18@W\x1b\x18;\x0f\x03\x7f\x1f=R\x16<\'\x14\x109c<9%*=\r\x10\x12\x10y\x018%\'-?i\x0b=&"\x10=\x0c\r\x04=\uf67czm=p\x0b\x0f\x13\x1e\x08+i\x0b=hݼ!ԇ*Sq\x128^2=O<}\x1dA.=X<._GR=WE=YT:^S9\x120#=\x06\x04\x14<\x1b4ȋ;hݻ\x15\x12=Ǽ\x06ż)6==-6\r\x02A\x1e\u07fcM*=\x19\x1d<ǼH#\x13=o\x0bWE˰Z;\x1b@`(=\x03\'\x12A<-\x03=,!C/\n\x18\x1e~>;k:!=Q\x08;\x14<\x15\x11=Z_+=\x16\x1c=Vka;<\x14;@+S=,gG<`<\x1e=<\x12\x0b);c<~\x158=g\x13<{;獜VX\x18H\x08;w#*\x16vLp,=7#\x15NR>=\x08\x02\x16=\x17H<\x08י;\x16Ƿj:2<1;=96Uʼ7;5λ4\x1bڼ(hk\x10]*=\\;Hi6<&hl=r};u\x03M=gM";7<\x18%=4\x1bZ<ȍU_Ӿm\x18=nC5\x1d;y4=sHe<*\x167˜U<\x08\x11y4\x04<\x0eU\x10ȹ֦;9m=V=-;\x16d1Cw:so;,s\x167=Y\x00:}<\r;HR}\x157;\x12WE<\x1aw?=h<( <;A^\x7f#<4b[=uϺ\x19h\x03&(\x10=9\x08\x1d\x1c\x14f\x173VY;\'\x1c#p=r<6f-^\x15֊5<َ):=Ӻ3;8[9\x1aY2;h\x12=碌J\tM\x15\x0cмSb<4\x1a<\x17H4bۻ\x7fd \x1b\x03\x12\x10\x12\x08=Hz<<$K\x0e\n4A#;o\x03=\t\u07fcG)<<\x14z\x06=vƶ뺭X;\x02;\x05GӼ\x0bm\x06\x1dU<{\x15̼\x05t\x0e\x1abK=>2\x08E:/?}@<\x19=\x1d\u07bb\x056=\x043=*6<\x17MQ=\x13+;|Ղ;O缚Tu{=0=tp\x0c=8n<)a\x7fou<\x0e==3Ox|\x08;C\x05=7\x1bڻ?Y?h<\n\'Q;Wg3<5<(|O?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 42.94798667588227, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;<;Gڼ6X\x0b?&Hh\x1bJ;<ͅ<լ<(05= =\t#\x1f\x13k;A\t>Ҽ(><؆C;i;^\x0fܼ\x06ټj(L:\x06c;>\U000ffefdd%YN=J\x19\x14~s;\r\x01ۼ\nPa==4w\x1bW<;:}Dr=wN?\x00\u243c\x17Ws."9==o7<}\x03\x1dDɼkLg$üS!\x1c:Ḽ,/б<\x0e\'\x03@$}x\x1d7\x1c_=Y-e5wA|8<\x0f\x15= <"|E@U\x1d\x13͙<;ż\x03o,S.\x00T.5I=\x01\t\x191\r;I=pH;u$<\x05<ϸa{=\x1c[99>6=<\ua63b~oμ;><\x05;e<\x1b\n/y\'t)g< \x03s:-\'ռHv<\x1a03=<\x1e(\x01伿=<0;!=KKB;I<#i<-P\x03Dư0<\x11=wA<<꼶5;\tX>;{ü<<#\x1e=\x1f\x1b9 7\x13լ:~P\x1a\x0b=ջ}U#\x1eAf8<\x05><刧E\x06V1<=\x06\x12k3<]X7"y6=TJ\x10\x07=_<\x08;\x1e\x1a<@<\x18<"$\u07fc,㯼1~P\x1bhNbd<+\nß<=\x17\x06ݼ}\x13=yG;v\r\x18\x1d\x11\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0fM<7\x1f=<*ȿ;H\r<\x1cڊ<\x1d([\'\x05*\x1b\\\x00ؼc\x11\x02=\'=n(\x0c\x1d<;tr軂Ͻ\\Le,K,z!<\r:U伂OPt<\x7fg!h<\x17:S\x13B\x04˼(,;Cb8`<\x1f̺Ń\t<\x122mTBĻi<5\x17=\x10<"<|;Y<8v\x0c%&<\x17;\x155\x1c~dwzEP<6=\x08=\x7f)=\x19<5-m<$|\x0b_@\x19=\x11=\x0b(=\x04Oi<~\x00\x08=;\x0cJ=P$(Ln]u弃{Ƽ\x1c25\x19Z=4-<)(Dn\x15v<.x\x08z<\x17c<~<\x01\x1f\x0bx\x10]ĺ\x1djƫʝxא;=n&/\x19?Sȼ\x01}\x1b=üqż{f=*\'n.\t;\u05fc\x0b98(<6d\x13BR;][4\x153=\x1a\x19k<\x00`\x1e<)6\x06S=$\\\x16<9꼑:\x18=G;\x1e=G\x0b<{Aw<9=&=XM<\x18\x1fbv3\x7f<_b<Ļ\x154Nu+=\x10NM<[Hߑxd)\x00<$\x12\x0c\x10=\x1f=zy!e\x00ˑX<\x10<\x02=L\x0eE\x12<\t\x1dXQ\x05\x08]\x05\r=O)\x07\x08\x02R9L=ڑ?<{I\x19;Tp6d<,`;;\x190v9e;yg<\x00N<ɾ<\x7fŚ<ˡ<\x06bѻɛQ =7d1)C=d\x0f4\'Q\x05<\x114oI\x14;Qh\x11=1=rM\x15Ci\x00<ɉv\x19\x17=EX\n=T\x00=)K\nlzz<5rdp\x14aB%Dk}\x19A1\x1dZ}ՙ<\\y\x0c\nhg<:6\nR=eM.g=|];Mu\x06=+b`jA\x12<\t@@M\x01w\x17=\r2Tt}<\\\x0c;U̼K\x05c<˹p\x14{\r\x19=!*\\Щ;=k*z;.<+\x12`=\x02O=3]i^6s\x01bڼ@\\\x85\x1a<\\8ab6\x10k\x15\\=\x0e=7`<=;Ԇ;iXnRJB\x18s\x11!*Ż\x1e\x16:\x17YR\r<53Һ@U17VY=8\x12K<\rk=p˱\'x5\x05iM\x0cg=xp="KeF\x0c\x04<#ƀ\x15\x11D;y\x0e=\uf0ec<\x18 ;p\x1eQE)1\x15u\x1e=@\\9ŋfw;Z:<ͼ\x063\x07=\x00G\x1b;|<"BڼPH{DO\x0bt\x00ot;XP= <5j<\x1d\x1a%v< \x041<5\x05qN\x1e\x0e<\x17rL\x1c\x0bR4\x18;+J\x18ݼ\x1a\x1e;At<"\x1a=\n2;*"=kϼ\\h鋴5c\x1fLE\x01$\x10Lzi;B]\x17\x1c$5W!;91<\rѐ\x1c،Vf1ځ;\x13s)=~s=d\x0f>f\x16\x08!=U;\r<\x17=\x12\x13=c4?=g<\x03=\x08<\'2\x1b\x052u;6I .<=ڪ\x11"ݻW\x00-UX;ӛ\x06<\x1fW\x08=A;%ZH?=r(y;=9\x07=\x1b;S\'j\t<\x13\';}\x0b:oW0g1\ri}8;=\x00<\x18==rL<%M=ؒ\x19<9<\x1f\x16=P/!<\x0f]<879*KӍZ\'e<\x07\x15\x16f\x00=u;<2\x1cZ\x1c=;]y_<#;|ڼ\x18z=;g<<\t\x16v͔<"m="B;\x03z|;`\x04I<\\Ѯ=漬*,!;Y2\x15x\x0fg<=v&;/C]Wq2<\x14G;q\uef39tX80;O< <\x13(\x12`m\x06=$<ȏ<{Z=\x0fc:X<\x1eW3=;C\x06:\x10k;ی<0\x14b$=\\\x1ec"o@湭\x0fc+T+_=ړ=3pQ:\x14\x0c<><^*T\x15x;\x10\x14\t=a<\x8bW59\x7fVv<Ŏ<.\x18\x0e=T=͔x<3;_R=\x1eW3=<";:=\x1f<7\t;H<%v$=@};TN\x1eE=2w;F\x10\x10\x08G\x00;E\x16T=pZ\x0c;/;.y;oyDM<"\x1f\x08=n\x07R3?3<̼\ri\riԼ3ڕ:b3:v-EĻs9o3e\x1b;\x061?y\x10<\x13\x02\x1a!䀼ѻs͒S\t<\x11\x1f<@H\x08̪#\x19<==pp\x0c<\x1a\x1b\\\x18', 'text': '# Prerequisite(s): ECON 101. Anti-requisite: PUBPOL 205\n\n# ECON 202 Intermediate Microeconomics II (4 credits)\n\nCalculus-based generalization of the theory of demand and supply developed in Intermediate Microeconomics I. Individual behavior in environments of risk and uncertainty. Introduction to game theory and strategic interaction. Adverse selection, moral hazard, non-competitive market structures, externalities, public goods.\n\nPrerequisite(s): ECON 201; MATH 101 or 105\n\n# ECON 203 Introduction to Econometrics (4 credits)\n\nIntroduction to the theory and practice of econometrics. Estimation, hypothesis testing and model evaluation in the linear regression model. Observational and experimental methods to identify causal effects including instrumental variable and panel data methods. Lectures are supplemented by labs that use STATA.\n\nPrerequisite(s): ECON 101 or SOSC 101; STATS 101\n\n# ECON 204 Intermediate Macroeconomics (4 credits)\n\nIntermediate level treatment of macroeconomic models, fiscal and monetary policy, inflation, unemployment, economic growth.\n\nPrerequisite(s): ECON 101\n\n# ECON 206/COMPSCI 206 Computational Microeconomics (4 credits)\n\nUse of computational techniques to operationalize basic concepts from economics. Expressive marketplaces: combinatorial auctions and exchanges, winner determination problem. Game theory: normal and extensive-form games, equilibrium notions, computing equilibria. Mechanism design: auction theory, automated mechanism design.\n\nPrerequisite(s): MATH 101 or 105; and STATS 101 or MATH 205 or 206; and COMPSCI 101 or COMPSCI 201 or STATS 102\n\n319', 'ref_doc_id': 'c4445319-e5fd-4469-a4be-c55568f91896', 'doc_id': 'c4445319-e5fd-4469-a4be-c55568f91896', 'file_name': 'ug_bulletin_2023-24.pdf', 'last_modified_date': '2023-10-24', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5e676ad4-c30d-41de-a215-02f000ca4183', 'payload': None, 'score': 0.37368841424516125, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '3930468', 'document_id': '609400a2-2e30-408b-9d3d-7be31783a56c', '_node_content': '{"id_": "5e676ad4-c30d-41de-a215-02f000ca4183", "embedding": null, "metadata": {"file_path": "/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf", "file_name": "ug_bulletin_ 2024-2025.pdf", "file_type": "application/pdf", "file_size": 3930468, "creation_date": "2024-09-02", "last_modified_date": "2024-09-02"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "609400a2-2e30-408b-9d3d-7be31783a56c", "node_type": "4", "metadata": {"file_path": "/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf", "file_name": "ug_bulletin_ 2024-2025.pdf", "file_type": "application/pdf", "file_size": 3930468, "creation_date": "2024-09-02", "last_modified_date": "2024-09-02"}, "hash": "ef530633b56c0794222125df47408ad9e4fd59dacd94b64d836df1ae72cf7282", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2367, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/new_bulletin/ug_bulletin_ 2024-2025.pdf', 'vector': '|䢼\x17F(z<Ν\x13$\x14SћI<^:\n<>̼\x06\x00zm_\x17\x14J\x1e<\x19I9l\x1b%5\n\x03\u07bcR=!Vm<\x05=1\x03<6y:9A\x1e=5A=8\x7fJ\x06NV=h><\x18\x11ּT\x0fch<\x148A\x05=\x19h>p\x1a);\x10쐾Xf<\x1f\x07\'5ռqD\x02Ur9u<_\x0eOKw\x04;_8R\r\x03;\x0e%!m-9Ga=3Tr=\\$u\x00;J\x0bʼ\x0c<*w3\x1bη<Ν˼(ּMMKp;\x0bJ<\t<`R<\x0b<փ\x0eƲ<\x193n=\x0e`4ޏsټ|D=ռxH*7\x1dFɖ;G={;u\x06B̼BƼ!te9(>\x1d@\x19A=\x11\x15;#\x13Z+\x19.E$7;\x1cS\x0f=8\x0f3np\x143+\x1c\nx=Rs\x08=:\\05i2=MRźDi=\x1e<`հƲ\x18\n<\x01C_^:e;|h<\x0c\x0e=<\x7f&@\x1aa<50\x01\\0FR n=$;I\x12[p\x13\x1e+\x05:L@=/`i<Ӏ=}G`μ|!\x17<\x19 <ݽd[/<\x0f#\x02\x00t=\x18}ټ\x0e=F2tS\x14OB,:ۆ<\x04\ueffb\x16.\x04=;uM<\x11<&8<Լ\x16J<<鎎B/g\x17Ȥ6<)\x12W<%+E;\x03\x04;5V=Bz;\x11plM*\r\x06]3okۼU\t\x1e=\x18<`\x08Z+;&BKF5Ț;G_0\x14=HdtTټ\r&< ;\x1alC=?=~\x11\x1f5ֻ\x13\x0f<&#I=Z`\tխ<$3e\x7f<&B;b\x1a[M|=";N=/`<$\x064p;;U<\x0bq9{x\x14M-;\x0c<ǀ9\x14\x05=\x0b\x18;\tH<1_܀;\x1be;\x02=ϼ\x1fH\x020=)9]ZŻ<\x15\x1dN<\x1dIX&;rZ=&%|!\x01^\x1b#=\x02wF\x15o:8ȼɽ=\x03V<\x03[=u&\x0cA^*fV\x1b5=ʻw-%="=:8*f\n\t<(dUN|;O\x19=\x18;"AR\x12"=m\x1a\x14V%5\x08=G\x05\x7f%<\x1a?˼\x0b=SvlǼ<;\x04YXw<;&<|&9\tr\x1f1;ۻ<\x16\'=o˼)Kq<|A;<;lM=}D\x08z&9Z$*x̶]r/T\u05fb\x06hPT=d%=h\x1c{R\t ƺya(\x11:=~䇻V\x06;VgOn9=(d:Ԓ(+9\x06k\x00Q?a=ju\x1c\x1f=*\x15\x10\x16\x15<\nzw\x0ef==49Az/-Tҭ< M[<\x01<]0r<\'o\x07&\x13\x0c)Aub=?aȺ)A\x07ΫSoPpM[=8xJ<\x10<7\x1a<^;t쏼sk<ݼ\x13DO=I\x11=L\x0c<\x12=x=\n-<<<*\x1bb|=(8\x0f<6<\\;f?=\x04=\x05i\x15Ol;\nz8P^^0*\t4E;,\x140VB\n>= ۻ;\x15=?\x19;+qX=ą%T=\x02:Ģ<\x14SQ;]<}\x05\x0fW47|\'=gAE*:ϘO p="<_\x0f=\x1d\x07=n<8g\x1d:\x13\x18<\x00\x05Ik\nv\x05=ż\x1f\x0c<~\u07bbBkHD;ta:L4\x14\t\x1cO<\x17\x003\x1a\x1d7\x01>.\neY*=N=I\x05\u05fa+\tV9m\\<<[<Сn\x1d<\x03\x06%\x13<@=\x03<\r\x0eNq}\'\x1bw^N=>aP=鄒`US\x1dSL\x1eh\x14;\\<\x02LXJUV?8ɥ<~ϟ<\x17=Xb;0\t\x15i\x1b= u!;\x10<%|\x1b\x1d\x00;\x14=\'^jA <8!1鄒Y\x1cdu}<% \x126p#&S=" \x12=\x14\x109; ;W(Ӽ̢;;Z0<>9KY\x15v\x0ci7ۆμ\x11\x0c=12?)7dVerjռ/6A7\x19<"R6;<=z\x1dS;\x15t9s<;ּlihizL\t\x0e\x01x<͝Ҽ\x11\x7f:\\|Fϭ\x1e漵J=eY*=<\uef04_;\x14\x17=i7 u<|s\x1d=̢<_\x0f=\x141\x11=:\x14":8Rfo;\x15}sg\x0e$<\nm\x00\x10=m!;B\x11<\x17\x06=0GJ;bb9Vh\x06"\x1d=\x1fA;\x03⼹(==(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x12=H9=m4;6P=HR}9=\x0e=ɓ\nI/\x196\x02n~HV<#<\x1f-P;\x0b\x7f\x12IY\x1bq#$Կ=[c86\x1c$@=Q=\x12\x10\x12\x19\x17HT<\x0f=m\x11!\x13u;Hϻ܅:<\x07{<۲\x03[\x17ۢ7\x12<=>\x05H<4;Cm\x1e<\x12q\x0e\x12mF6\x14;ۙ\x0fm7\x198,Hڴ<56;=;,$I\uef12d=Q<\x14;acbu";$I\x01f$%<\x1b8»دtz\x08=ake]\u07bc\x11<\x0fK:+j;#\x1eg=\x1eR<\x1c7<\x1a%<6<\r\u05ed[<\x19;Ȭ\'.!~l=e˶Ü<\x15\x061ѻo(U==\x04A D\x12\x1f=Ʒ\x1eҼBI\x10<@$\x16z\x12<黶\x03Tl|n×鬼\x1f2h=:P=\n\x151<8H(=\x1aic<\x00<3}!p\x11W\x0c^W@=\x16m\\)W:\x1b.#c\x1aTb=+A\x1b8¼\x06;F<\x15\x1f:1Ѽ1T\nѼ\x10˼y;.=~<;\x07\\R;\x1d誻0b<4̼W;OQ<Ůn;\\>3\x119q\x1a7=/\x1a\x7f;|\x07Vw=\x1a/\x18p;\x04K\'T\n;u\x19<\x15ؼy:<0f=SK<\x1e4\x12)މ\x12\x04\x14[=m\x10\x0f+=yS˻\x1e<2\x01=Wj"w<\x15ȼ\x15\x1f~Z{\t=b\x12ļyA|\x1fi=S-ҭW9X\u05fcJ\x12\x18=.m%:\x1e4/v=n=\x0c\x1d<3и \x03I+HP\x07:mX:BMڼ}_=\x15R%Y=\x19;|y:WNh\x7f>Ev/<\x10<\x0b\x1a[\x1b\\\x16iv<ɻ\x07\x1as:\x1be>=־b)m`wb:=־YphGo_=ʤTr=9\x17=\x19$%\t-\x7f:n*8\x03<%\x14=#\x18\x029$H\nܼ^I<5t=\x08¼r;\x01_p\x1f><\x13\x02ǩH;\n[)\nz\x06(`=\x1b俼߱#"<_<\x16<\x10;1=\x06_\x00Df=@Gp\x0f[]<~;<;W\'\x08rl\x111:\x08.ہ=께2=x(\x0f\x1d\x17=\x0eUӼ\\8a;\U0003c953%\x14R*È-=v\x17=x\x01\tB;\x0b\x0e\\<+"j\x1b\x10_\x1c\'<.ia<}<7/\x07g<1o#=,<\u05fc\x1d<Խ<3r\x04<ڼ)\x1fJ!<;\x1b}NHnl\x1b}=D0<7/<0=)K8 <ٻ:̵K\x0eUsh\x01=\x0c\x0c\x15=MxP<\x18!< sV\n=8D\x14z\x1be;s;\x02~-pQ?\x1b$=\x16=l=\x1f\x1e%8\x18I?H∼Fz\x1ahż\x13;EG\'=\x02:<\x03P\u05fcn]N;<.A\rQ.&j\x16\x1bA]7<\x04{jp=\x07\\:m=\x14-~cɾ<\x10;\x1f<@\x03\x0fՙQͼ9/Ue t\x0f<[<4Xϡ\x0c⺽ڼ\x17\x1ca_.1=\x1d;a0q\x1e=̲[W\x1dq\x08=p\\\x02<˼M;]c\t6MR\x1b<<\x14o:ϡ>\x1c\x17<$ڬ<*<`*=\x05\x18-f]m\x07\x16qּA\x19.=.T :\x06\x05 =\'t<\x19,( <|<\x17N<\'/=h_\x1d\x1b2b\x1cݵ\x1fm;@0oǼ<<&<\x1b\x062D`<`*\x1c<\x7f\x05\x1d\x1c\x15p6s_\x0fPR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 57.36096122002909, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 57.19553325855519, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 45.23181035843272, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 44.64240567120426, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -2024-11-22T09:04:02.003251Z [error ] AssertionError: ValidationError on tool call line 1: 1 validation error for NameParams - Invalid JSON: trailing characters at line 1 column 99 [type=json_invalid, input_value='{"name": "vector_retriev...duation requirements"}}', input_type=str] - For further information visit https://errors.pydantic.dev/2.9/v/json_invalid [dspy.primitives.assertions] filename=assertions.py lineno=88 -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{35018 total, docs: [Document {'id': 'test_doc:6d0722fa-04e9-4437-b8dd-b9371c255668', 'payload': None, 'score': 21.49134859842794, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '122637', 'document_id': '348ff811-b5c3-4096-b9ff-a5544ef5a31f', '_node_content': '{"id_": "6d0722fa-04e9-4437-b8dd-b9371c255668", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/recap-for-2023-fall-u-corp/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 122637, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/recap-for-2023-fall-u-corp/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "348ff811-b5c3-4096-b9ff-a5544ef5a31f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/recap-for-2023-fall-u-corp/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 122637, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/recap-for-2023-fall-u-corp/index.html"}, "hash": "b5b7a5f575e37be871e308a068f72496b703e6f0df069d9927001cd9253b46f2", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4f0d142a-5cc1-476b-a195-0c0214d76bf9", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/recap-for-2023-fall-u-corp/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 122637, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/recap-for-2023-fall-u-corp/index.html"}, "hash": "dc0b210f044de598eab1bd978604e4bfdd789833fb2df306d233e0a336809204", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44a0a847-6cec-4c90-b1b1-e228c89c06fb", "node_type": "1", "metadata": {}, "hash": "5dbb7bac3000825d67e692542caae9390c7707d54672a19c4e3857f50e399bbd", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 20530, "end_char_idx": 25662, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/recap-for-2023-fall-u-corp/index.html', 'vector': 'n3\x1d8rgi\x1a-s\x1e<9\x0e8/RX8\x19!=`e\x1d=&\x03=0\x13.<<\x06&\x16t\x10:i;\x0b;\x11뼐b06Zg˧=\x18{H7\x07<\tz\x7fqPg\r#D=~<,#x<\x7f\t%p6:ܹ\x12)@5t<\x0fb#;3w^=%<\'\x08L;R<[\x14\tI<0:v_8=DL{wC<=\x16b=t\x0c&<\x130Y;3w;t\x10=[}p9;.<\'6<¹\tg\x1a;\x11;+Ѽu<3:\x0e%`;vQA\x17\x17\x03zki\x16%0=\x108&=g˧;\x1f̾QX\x04{ZIh=H\x08At@_==Ķ4:=o=z\x0f\x02#jE;\x13<\x182k[;k:zX/ػt\x10=7\x15e*\t;7\x1f#Ļ8\x19!<\x01\',\x1fS!|LJ%\x01=+Ҽ!);Z\x12<+=-Ի}Ҽ]C<\x1fS><<իKtٰ<\x1d\x04;;~\x14N;:<~\x05}0_q\x05v_j\x05B\x19\x08H,_˼w=Wv\x0c=\x08+ڼkIW\x05\x05)\x13Aձ$X\x12/=RQ=;d;d:ko<\x7f9\x04$<\x19n\r\u05fb\x13AH,<\x16\x1e!ܻ^:{\x18<}%=CPTܠ\x08!;}\x06{=xcJ=\x08\x1c=yɭmu=&=12<\t*=a\x1c\x15C&<\x0eW=\x02\x06hw;\x06=B\u07bc2<73 The\xa0typical MBAA leadership\xa0team includes: Co-Presidents, VP of Student Life, VP of Student Organizations, VP of Academic Affairs, VP of Career Affairs, VP of Communications, Treasurer, VP of Diversity, VP of International Affairs, VP of Technology, VP of Service and Sustainability.\n> \n> \n> Each club at Fuqua also has a student management team responsible for all aspects of that club’s activity including marketing, operations and finance.\n\n\nExplore the range of experiences offered by our student organizations:\n\n\n\n\n\n\n\n\n\n\n \n\n\n[Professional Clubs](#) \n\nOrienting you to an industry, career clubs help students build practical skills, stay on top of trends, and connect with leading experts and employers in the industry.\n\n\nFor example, you might join a [Tech Trek during Fall Break and Winter Break](https://blogs.fuqua.duke.edu/duke-mba/2018/05/24/fernanda-russo/impressions-tech-trek) to visit companies and startups throughout Seattle and the San Francisco Bay Area – like Amazon, Microsoft, Google, Facebook, Apple, LinkedIn, Zillow, Intel, SAP, eBay, Nest, Box, and Autodesk.\n\n\nWhile professional organizations or offerings may change, here’s a sample of what you’ll find:\n\n\n**Blockchain Club:***raises awareness and provides education and resources about disruptive blockchain technology for students, fosters development of practical skills through cross-university blockchain projects and start-ups, and facilitates recruiting through blockchain conferences and recruiting and networking events.*\n\n\n**Consulting Club:** *p***r*ovides the necessary tools to succeed in the recruiting process and beyond, educating students on the consulting industry, consulting as a career choice and current industry trends.*\n\n\n**Design &\xa0Innovation Club:** *advocates for the power of design and innovation-focused thinking in the business world - from innovation methodologies to user-centered research - they expose you to a breadth of professional opportunities that value this mindset.* \n\n\n**Energy Club:** *engages in all aspects of the\xa0industry including energy basics, emerging technologies, energy finance, company profiles, and career tracks. Hosting forums to discuss energy-related issues, they bring thought leaders and company executives to speak at events such as the annual Energy Conference.*\n\n\n**Entrepreneurship and Venture Capital Club:** *facilitates interactions\xa0among alumni, entrepreneurs, small business owners, and venture capitalists around the world, EVCC seeks to demystify entrepreneurship and provide education and resources to students interested in entrepreneurship and venture capital career paths.* \n\n\n**Finance Club:***prepares students interested in finance-related careers\xa0with various resources, tools, and guidance catering to a wide range of finance-related interests, including investment banking, private wealth management, sales and trading, and corporate finance.*\n\n\n**FinTech Club:** *functions as an educational resource and advocates for disruptive financial technologies, elevates consideration of Fuqua MBA students among hiring FinTech companies, and facilitates careers through conferences, recruiting, and networking events with industry experts, recruiters, alumni, and faculty.*\n\n\n**Food and Agriculture Club:** *helps you learn about and pursue careers in the food, agriculture, and agribusiness industries. The club facilitates recruiting opportunities, sponsors local food events, and hosts on-campus industry speaker series and conferences*.\n\n\n**General Management Club:***prepares students interested in general management by providing information, education, career preparation, and access to various opportunities including symposia, Week-in-Cities Trips, Facility Operations Tours, and case interview prep.* \n\n\n**Health Care Club:***focuses on career opportunities and industry trends throughout all facets of the health care sector. providing a forum for individuals to interact with industry professionals and alumni from prominent health care organizations.*\n\n\n**Health Provider Association:** *provides opportunities for individuals with a healthcare provider/payer interest or background (clinical, administrative, or advisory). The club\xa0focuses on increasing knowledge and providing opportunities to build social connections that enable independent networking and knowledge acquisition.*\n\n\n**Hospitality and\xa0Travel Club****:**\xa0*groups students who are interested in the travel and hospitality industries (airlines, hotels, travel technology, casinos, restaurant groups, cruise lines, and travel-related agencies), they sponsor events to expose you to industry trends, connect with alumni, and explore career opportunities.*\n\n\n**Human Capital\xa0Club****:***prepares students interested in human capital and HR careers\xa0through workshops, case competitions, general education, and relationship-building with employers and alumni. Topics of focus include people development, future of work, automation, and more.*\n\n\n**Marketing Club:***provides the\xa0knowledge, tools, and encouragement needed to secure desired employment opportunities and become world-class leaders in the field of marketing.*', 'ref_doc_id': '3d4f0e77-ba8b-4865-83d7-8243d37819a0', 'doc_id': '3d4f0e77-ba8b-4865-83d7-8243d37819a0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.fuqua.duke.edu/student-network/clubs-activities/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:95ca31c1-d8a7-4122-b891-49e83b3a7408', 'payload': None, 'score': 14.595194799974545, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '1455561', 'document_id': 'fc3e3e76-6d5b-4fcb-a8d8-2c58d2029a9f', '_node_content': '{"id_": "95ca31c1-d8a7-4122-b891-49e83b3a7408", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/08/04141923/21.08.19_Student_Handbook.pdf", "file_name": "21.08.19_Student_Handbook.pdf", "file_type": "application/pdf", "file_size": 1455561, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/08/04141923/21.08.19_Student_Handbook.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "fc3e3e76-6d5b-4fcb-a8d8-2c58d2029a9f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/08/04141923/21.08.19_Student_Handbook.pdf", "file_name": "21.08.19_Student_Handbook.pdf", "file_type": "application/pdf", "file_size": 1455561, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/08/04141923/21.08.19_Student_Handbook.pdf"}, "hash": "b4e6512ad5dd8030726c70c70c0596f2b0afc3cf87645de869a4eb5c886f7f61", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "19a1fd9c-d31a-40ee-9e82-e2ecee270250", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/08/04141923/21.08.19_Student_Handbook.pdf", "file_name": "21.08.19_Student_Handbook.pdf", "file_type": "application/pdf", "file_size": 1455561, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/08/04141923/21.08.19_Student_Handbook.pdf"}, "hash": "9f95915edf4cae1de9c09f4a998d0aaee0021d1abc7f61935c0637c13e28a5bc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7dd71938-3e12-47a6-bd6f-663485553351", "node_type": "1", "metadata": {}, "hash": "e16836dc3955b2991e99cb00bf593af872daaf67e17e53228c20200069202586", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 32900, "end_char_idx": 37304, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2022/08/04141923/21.08.19_Student_Handbook.pdf', 'vector': 'Uڸ6g\ue0fdDB\x1f\x1f"m\x1d\x7f4ib\x13<\x02:<\x03~μ\'[\x049&\x18=\x07\x06F\x15\x1d=oLF6$<\x7f4=w>F\'[^\x13=}x\t=;Y\x08!=q\x015;d)#U&U<%B\x10;@\x0f\r\x11D\x16<3zk]WB_9=G<}W1l\x1d;o\x17=N\x0f<ӄY<2Hl]=˵VI?\\Z\x1c\x0f껟1\x06#.F:(:\x08(\x14\x12;S)=_=\x02{f\'[f࠼S\rĈ>I\x07;\x16=\\<Ϩ<1*vY`K!\x16v!V"m\x1f<6\x168< =5n<5>=\rG=\x17;\x1fHcw\x0fǦ?<\x0c=4=\tY\tF;\t<=\x1c躕v!\x1chQɿ+\\_=.\x06.#\np8=/\x11"Q<&yx\x18d4W\x13 =@\x1d;p~\u05fc\x14\ua6fcLec(\x0c1:rQ<\x06<$eJ~.=wU\x1b,hJ=g<*ҼH\x01:\nx<\x13<\x10\x13&堯<:Ʈ׃\x1aL<\x079NӼ\x01\x16U=i=\x1c+;\x1cp<@\x17yai\x1f`<[?<;?\x1b,*\x07׀=\x14\x16ð<\x0b6=`Լދ\x14$`\x12D=?\x17\x1datǒ\r8<\x03\x10;4h\x13^<<"=*=9a\x01\x1c5\x1cוgU\x00Q]\x06e\x07=\x0fM<(ZeML8=PՍ)I(PG=K;[}\x0b{s\x1a=T<\x1c\x15͍9Zoȫs[Rny=ˏ\x06c\u07fc: q{\x0et=p9\x1bt<\x7f?=$19\x12q\r|\'\x16\x00\x03=zh<\x16%߃@dRЌ<2\x1c==sDtK<<ݞg<\x07¼Bɒ\x1bQ(n<.>Lu%<[$1ج?\n\x01=\x12=\x15\x00<\x07B<\x0cZ=o=\x00\x1e]q\x11~z=:;(7d=&<ψtV|=xߦ#+6t<=\x159=Eٻ3mл%\x04Õ;&]>A<2MkHqI\x06Q\x07\x0b\x00.x\x0f\x02"N%<+Uq;\x1cwL]u\x15\x17\\K0<Q\x1e[=qXk<\x02\x0ff;ug\\J~.=wU\x1b,hJ=g<*ҼH\x01:\nx<\x13<\x10\x13&堯<:Ʈ׃\x1aL<\x079NӼ\x01\x16U=i=\x1c+;\x1cp<@\x17yai\x1f`<[?<;?\x1b,*\x07׀=\x14\x16ð<\x0b6=`Լދ\x14$ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈>;\x01\t;\x00\'`Z_؇=8}=\x02;.<\n=;\\5\x16:\x01a"KT<$YӼS=[;"=K9+^;\'ƼTWV\x13:},,=S\x1d<\x02>\x12;@2Fs˺:(=sμWǻ+w\x1c\x12=|~mc;,7<\x0b<;<\x00\x08Ҽ fMv=̼RP\x11\x06\x15L<2hh\x14<8<\x12;Z<9\x07;\x00\'Z4\x1b<@2bCÁoe:\x15\x1d\x1e<*\x12\x0bt<5@g<\';pu<<瞻s\x16\x1a\x17g<%KN<2=c>< <;}<\x18E\x121=)=xm=#;O*\x7fF\x05\x15;=~t\x1d\x1b=U\x15O;\x14\x10\x1cSV<', 'text': 'Membership Information\n----------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n\n\n\n\n\n\n Programs and Services \n\n\n\n\n\n\n\n\n* [Open fitness classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#fitclass)\n* [Spinning and rowing classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#spinning)\n* [Personal training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#pt)\n* [Boxing](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#boxing "Boxing")\n* [Stretching and rolling sessions](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#rolling)\n* [Rehabilitation & recovery training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#recovery)\n* [Sport Massage](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#massage)\n* [Free bicycle rentals](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bikerental)\n* [Swimming Lessons](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#swim)\n* [Climbing Wall](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#climb)\n* [Body composition assessment](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bodycom)\n\n \n\n\n\n\n\n\n\n\n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n\n\n\n\n\n\n\n\n\n\nIf you’d like to take control of your health and wellness, you have all the resources you need right here on our campus. As a member of the DKU Sports Complex, you will have access to a range of facilities, motivational programs, activities, and services, with experienced and enthusiastic staff providing personalized attention. Our goal is to provide our members with the tools to learn and enjoy their health and wellness journey.\n\nMembership is currently available to all DKU students, staff, faculty, and family members. We also soon hope to invite alumni and local Kunshan community members to join us.\n\n**For the fall semester, all students, staff, faculty, and their family members can register for a free membership, which includes access to available sports and activities as well as free access to open fitness classes. Starting in the spring semester, staff, faculty, and family members will have several membership options that can be tailored to individual preferences.**\n\nMembers must be 18 years or older to be eligible for membership. DKU students younger than 18 are eligible for a membership with a waiver signed by their parent or legal guardian.\n\nAnnual memberships expire at the end of the academic year, regardless of the date of purchase. Memberships starting later in the academic year will be prorated monthly. The subsidized amount of a membership cannot be refunded. Minimum 30-day advanced notice is required for all membership cancellations.\n\nTo join DKU Sports Complex and enjoy all our amazing resources, simply complete a\xa0[membership application](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/).', 'ref_doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/sport-complex/membership-information/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{34021 total, docs: [Document {'id': 'test_doc:bb7965cf-f1f5-491a-8e9e-f4a445020834', 'payload': None, 'score': 124.20610177669315, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '14059448', 'document_id': '9062de26-2e99-4ef8-83be-fce73f42201a', '_node_content': '{"id_": "bb7965cf-f1f5-491a-8e9e-f4a445020834", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9062de26-2e99-4ef8-83be-fce73f42201a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "hash": "c83c94e9785880140b7941400c4b3a2a5f285c0c603ac9c7d1d52aa192026347", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba356a65-50a2-48fd-b1fc-f967a9e6d437", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf", "file_name": "2022-EN-compressed.pdf", "file_type": "application/pdf", "file_size": 14059448, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf"}, "hash": "4bbbcd119b451fb66d451fc33a8695c59c970047e95a285666822117512c143a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8be234a2-0105-48a9-8e87-18cf52777101", "node_type": "1", "metadata": {}, "hash": "5f71991666afb3f94bb24ec11d8905fec45505977419b92e10bf8505e81e76f5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 43356, "end_char_idx": 48146, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2021/09/07145925/2022-EN-compressed.pdf', 'vector': '-4&\x1d\x1cļ=T;G\x1bN\x0c<,\x19=\x15ȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{12796 total, docs: [Document {'id': 'test_doc:0565997d-7375-4185-8808-0f1a24a2d481', 'payload': None, 'score': 47.449331143376064, 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "0565997d-7375-4185-8808-0f1a24a2d481", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "56580115-5f97-4e69-b6a7-f269291b2307", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "22a7a22291de9eabc9a486ff1fd62fe59240c74137ab6a51af9aa5ec19b11bc4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "75f05425-a154-40db-973d-a626e4336626", "node_type": "1", "metadata": {}, "hash": "c4c8f853bca4407535489a9bcffea6643e05f489374b3504552b5af25b4c64ef", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 133934, "end_char_idx": 138672, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'creation_date': '2024-06-17', 'file_size': '6645174', 'file_type': 'application/pdf', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'vector': 'nbRr@\x02RPI:uN"<\x15Ӽh3;H#K=2X<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG>\x1d@\x19A=\x11\x15;#\x13Z+\x19.E$7;\x1cS\x0f=8\x0f3np\x143+\x1c\nx=Rs\x08=:\\05i2=MRźDi=\x1e<`հƲ\x18\n<\x01C_^:e;|h<\x0c\x0e=<\x7f&@\x1aa<50\x01\\0FR n=$;I\x12[p\x13\x1e+\x05:L@=/`i<Ӏ=}G`μ|!\x17<\x19 <ݽd[/<\x0f#\x02\x00t=\x18}ټ\x0e=F2tS\x14OB,:ۆ<\x04\ueffb\x16.\x04=;uM<\x11<&8<Լ\x16J<<鎎B/g\x17Ȥ6<)\x12W<%+E;\x03\x04;5V=Bz;\x11plM*\r\x06]3okۼU\t\x1e=\x18<`\x08Z+;&BKF5Ț;G_0\x14=HdtTټ\r&< ;\x1alC=?=~\x11\x1f5ֻ\x13\x0f<&#I=Z`\tխ<$3e\x7f<&B;b\x1a[M|=";N=/`<$\x064p;;U<\x0bq9{x\x14M-;\x0c<ǀ9\x14\x05=\x0b\x18;\tH<1_܀;\x1be;\x02=ϼ\x1fH\x020=)9]ZŻ<\x15\x1dN<\x1dIX&;rZ=&%|!\x01^\x1b#=\x02wF\x15o:8ȼɽ=\x03V<\x03[=u&\x0cA^*fV\x1b5=ʻw-%="=:8*f\n\t<(dUN|;O\x19=\x18;"AR\x12"=m\x1a\x14V%5\x08=G\x05\x7f%<\x1a?˼\x0b=SvlǼ<;\x04YXw<;&<|&9\tr\x1f1;ۻ<\x16\'=o˼)Kq<|A;<;lM=}D\x08z&9Z$*x̶]r/T\u05fb\x06hPT=d%=h\x1c{R\t ƺya(\x11:=~䇻V\x06;VgOn9=(d:Ԓ(+9\x06k\x00Q?a=ju\x1c\x1f=*\x15\x10\x16\x15<\nzw\x0ef==49Az/-Tҭ< M[<\x01<]0r<\'o\x07&\x13\x0c)Aub=?aȺ)A\x07ΫSoPpM[=8xJ<\x10<7\x1a<^;t쏼sk<ݼ\x13DO=I\x11=L\x0c<\x12=x=\n-<<<*\x1bb|=(8\x0f<6<\\;f?=\x04=\x05i\x15Ol;\nz8P^^0*\t4E;,\x140VB\n>= ۻ;\x15=?\x19;+qX=ą%T=\x02:Ģ<\x14SQ;]<}\x05\x0fW47|\'=gAE*:ϘO p="<_\x0f=\x1d\x07=n<8g\x1d:\x13\x18<\x00\x05Ik\nv\x05=ż\x1f\x0c<~\u07bbBkHD;ta:L4\x14\t\x1cO<\x17\x003\x1a\x1d7\x01>.\neY*=N=I\x05\u05fa+\tV9m\\<<[<Сn\x1d<\x03\x06%\x13<@=\x03<\r\x0eNq}\'\x1bw^N=>aP=鄒`US\x1dSL\x1eh\x14;\\<\x02LXJUV?8ɥ<~ϟ<\x17=Xb;0\t\x15i\x1b= u!;\x10<%|\x1b\x1d\x00;\x14=\'^jA <8!1鄒Y\x1cdu}<% \x126p#&S=" \x12=\x14\x109; ;W(Ӽ̢;;Z0<>9KY\x15v\x0ci7ۆμ\x11\x0c=12?)7dVerjռ/6A7\x19<"R6;<=z\x1dS;\x15t9s<;ּlihizL\t\x0e\x01x<͝Ҽ\x11\x7f:\\|Fϭ\x1e漵J=eY*=<\uef04_;\x14\x17=i7 u<|s\x1d=̢<_\x0f=\x141\x11=:\x14":8Rfo;\x15}sg\x0e$<\nm\x00\x10=m!;B\x11<\x17\x06=0GJ;bb9Vh\x06"\x1d=\x1fA;\x03⼹(=<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b"L<\x08!5=N:\x03=Ǎ;}\x133=seuR<\x17&\x03<\x12:_Ż\x13h\x0bļo;k<<Ϣt\x19\x102<\x7fƼs#}ț=;crD? =(\x07<<-\x18\nV)K&U\x16=V©jN\x07;ٻ\x1b\x0b\x05>;3\x02=FK<\x02=Bfl~\x1c=&;RA\x01:X=\x02;;iL.=\x06|e<+="LD9ϫm<`J\x13-;\x058м\x02=ئ\x19}\x1eqs;H\x12\x0f[=\x1atwc<\x160:\x18\r>6X[<~<\x04\x10%wV3<\x1eI\\\x07ۼw.;.]A\x19\x16*\x089)\x1at<ǻ\x02@Bfl<\x0c\x064<}/Z\x07\x02ݼ-<\x0eТD\x16\x0e;dư(f;\x04=.*1\x13\u05fcRE<>\\h)K=W/< ?\x1eI\x1f%;[\x7f\x1bux\x11U=3M@<.l&rR/ڼ`=9<24_<%9<\x13\x12\'<Ɣ#=\x0c\'*\x0e0\x1e<\x1bux=\t\x0cڌz<\x0c/\x0c754T\x1bN??=]\x0cǻ!-\r\x0b\rт7up=g\tMouwCx)u=^;y\x16=;d\x06<\x18<\x11\x16\x1c<>;\rCnFu=E6=B^9=Z/1<>\x17\t=m\x11D=_X\x12;1z:Q\x15i<-<\x1buxaL<ӼW%P\x04[I\x0f=kμ;\x13*/Z\x0f:E~&ϷYɼ^cC7<\x008R=L\x14=3C|\x0f";y5a2\x0c\'y5N<;\x06=>>)3\x01"\n=i1=k2k<\u07fcR5<\x02\x065\\><6\x1b\x02=Lvo-\x0f\r=\x1d㼢\x19F\x03¼S\x01>s2\x02Eb;a8=\x14}=c:<\x07\x02=a4<\x7fq.=h<ڼSٞ<\x0f\x1c|=\x12<\x11<^<0>=Eڅ\x15i&;_\x08#]G)=ԛ,\r;5F\x03B[3[3` =Z<\x08&*;\x1b\x0e=.;c\\T\x11s<+SrA<̫O<;\x06 0=\x19=cS<ނλ՟¼+=\x11<><\'\x11!= k^=\\j%+AU=8$<#=\x1c>\x06XF=ڑ~(ڪ\x04\t&\x06vE\x1dK=sHN{<\x00\x1c\x05{^\x18=˗\x04/g,\x05Mdo\'=\x18=\\zTEH`=\'\x00\x16siEU=/eY;0\x7f|]<\n\x02B%\x1eSD=[h)t\x1dG7=M:c\x13u\x19=U2\x06=\x0e\x1fZd,<&2tK<\x05ҿlw\\l.;\x1a:i5PM\x06XF=\x11\x0b<]C\u07bbV+\\I\x19\x0c|=d,=!=D=?Or\x1a6\x10ѷ\x1c\x04/J\\uX;\x14ݹ<<))<\x0eȫ<ȶ<\x13\x03T:;\x1c>\x18CN;Q=\x12~<\x13)\x1f_Q\x15jfD<\x1b^:ozļ=\x00\x12:\x7fN;R~3\x19\x18\x0e=Ůf;InZ@<̳vI\t=Re@\x0c,W\u07fbSKn<\x08cz\x18\x10=\x1a;1@\x04\x12\x02!KC<.M<\x01Jl\x01)pa\x13=\x08\x1c=\x08=\x18\x1d}GIt)\x0e-\x1e\x19\x15Y=V\x12\x00n;<5=ၹ<\n\x00;`<\x11V\x02:Å<.`\x0f<(ս$6<\x11,=\x1ayGG\x01ItOc\x0eѻ<5RD\x1a=>/=q=,t1\x03<\'<2\x15;\x0b6=\x0e;<=\x0f˼~;d&".%\x19=?\t K`3zBVA<\x05\x0b\x05=,7;&<=5\x0b=\x07\x01;cKp\x10Ywټa\x02\x13\x00>;zًmu;ݥ)<></k\x0f\x13홃6\x18/=O~\x15[<{c;-g3\x03\x02;IkT*I\x08\x1cZ\r\x076,6ۏ\x06\r<=ļyB\'<) XN<Ɋ<{%YּJppa\x133$=\x04Ќ{F:Rμـ;\x13i\x0fvm8=\x14\x15<=ɻRe<2<\x1f\x83:\x06<<\x14<]\x07\x1a3w<=\x1f=\x15Ȼ\x0e;QcA<.5ȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{24161 total, docs: [Document {'id': 'test_doc:a47ff809-7f1d-4fac-842a-288e0331980b', 'payload': None, 'score': 29.280630913042284, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '356480', 'document_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', '_node_content': '{"id_": "a47ff809-7f1d-4fac-842a-288e0331980b", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Policy/DKU Policy on hiring student worker/Intern_For Non-DKU student/Special Recruitment and Hiring Procedure for Student Interns.pdf", "file_name": "Special Recruitment and Hiring Procedure for Student Interns.pdf", "file_type": "application/pdf", "file_size": 356480, "creation_date": "2024-09-02", "last_modified_date": "2020-04-28"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71b7ed09-edbf-489d-9bab-a3b83ac1220f", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Policy/DKU Policy on hiring student worker/Intern_For Non-DKU student/Special Recruitment and Hiring Procedure for Student Interns.pdf", "file_name": "Special Recruitment and Hiring Procedure for Student Interns.pdf", "file_type": "application/pdf", "file_size": 356480, "creation_date": "2024-09-02", "last_modified_date": "2020-04-28"}, "hash": "e8952b524ea8c9fa9639d8057ae93c6afe4db74e396209cad0f49dac63cfc655", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2432, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Policy/DKU Policy on hiring student worker/Intern_For Non-DKU student/Special Recruitment and Hiring Procedure for Student Interns.pdf', 'vector': '+=i$9j*<xp̼;\x14\x17;W/I7\n/A$x\x1af<\\x\x077\x10:\x04;:a2\x17\x19{<(@MhU\'=݂VfR=\x12qW/;j>Y=T\x02=\x11\x05.KD3\\9*\x06\x08=;wo쵂<2=|\x1bs滊:lI;{<:\x16v-W\x10.7zk=F\x08i<,l<_w#/i`\n̼]<\\:LAA<\\@\x1f<;UX(\x06\x19;u,MI80<\x03\x10\x0f9<\x11=g0Y\x12+\x1c<\x0b<$ټx=o\x07\x13kt\nnLv=<\x11<\x0fm\x05=s\x04n\x00M\\\x11=Q$ļ\x11\x14:M\x1a', 'text': '# Hiring Process for Student Interns\n\n# Interview Coordination\n\nThe hiring office should be responsible for coordinating and conducting interviews. The Office of Human Resources will not engage in the interview sessions. In most cases, the interview of student interns will be conducted by phone/video. If the hiring office would like to set up an onsite interview on campus, they should be responsible for relevant logistics and cover all related expenses.\n\n# Interview Guidelines\n\nDuring the interviews, the hiring manager could introduce the stipend and daily work to candidates if necessary. For student intern positions, the hiring manager is encouraged to reach initial verbal offer agreement with candidates at this stage.\n\n# Candidate Confirmation\n\nIn the interest of recruitment efficiency, the hiring manager is suggested to confirm the candidates with the following situation during the interview:\n\n- Internship duration, starting date and ending date. It is suggested the student intern should be available to work for at least 3 months;\n- Working hour: five days per week, eight hours per day. From 9:00 am to 17:30 pm. In most cases, student interns can work full time. However, some may only work 3-4 days per week;\n- Work location and accommodation: student interns should cover the accommodation fees by themselves;\n- Intern stipend: 3,000 RMB/ Month for full attendance.\n\n# Step 6: Extending Offer\n\nOnce the hiring manager confirms to move forward with the candidate, he or she should send an email to the Office of Human Resources with the following information included:\n\n- Job title\n- Candidate’s resume\n- Working period (possible starting date and ending date)\n- Fund Code\n\nThe Office of Human Resources will make the offer to the finalist and inform the hiring manager about the offer status. If the finalist accepts the offer, the Office of Human Resources will initiate the onboarding process. Otherwise, a new round search will start.\n\n# Step 7: Preparing Onboarding\n\nBased on the previous cases, the best practice is at least 7 business days are requested for onboarding preparation, which includes Net ID, cubicle, campus badge, laptop preparation, etc. When the hiring manager gets the student intern to offer, he or she should consult onboarding day with the Office of Human Resources. Onboarding date for student interns will be on every Monday.\n\nHuman Resources Office\n\nLast updated in September 2019', 'ref_doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'file_name': 'Special Recruitment and Hiring Procedure for Student Interns.pdf', 'last_modified_date': '2020-04-28', '_node_type': 'TextNode'}, Document {'id': 'test_doc:cc53bb11-993a-4bce-85e9-7a9551a2b0a0', 'payload': None, 'score': 22.589322974382366, 'document_id': 'index.html', '_node_content': '{"id_": "cc53bb11-993a-4bce-85e9-7a9551a2b0a0", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "link_texts": "[\\"Skip to main content\\"]", "link_urls": "[\\"#main_content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/www.usajobs.gov", "filename": "index.html", "filetype": "text/html"}, "hash": "45c0cbe6c6319b689d183634e068b1e0493205d12944909bf7636263451dba0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e668195e-a704-43d4-9ecf-a0c10ce996c6", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "3121985528011eddaaeceb8318bd0711168712c909b1106297b0331421a264d0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8301d50-ab04-4123-b28f-033c7cccbbae", "node_type": "1", "metadata": {}, "hash": "63f7b310cde3076c049d2de420e99084a5288a9f9612f11fe1f9bc178f0af792", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-5\x0e<\x1avdHQ&;-i\x19=Z=H\x7f[<\x075k=0F=;\x02No*>0Fɼ;T;턽;c(=\x1a<\x12>F\'=\x04W!\x0e?=ˀƼ\x1d\x18;Ӯ)<,@<*_x~V"P=ƏY@kW\x188rF=4Yo3aP<\x03=\x1eڸDpDe\x00V<}IKShC\x16N\x06Jo=:\x13UcǹC=\x14&<\x04xżq<\x046\x1fܦ`\x1f,=mμ\x14şbLӼ(\x11b;\t@3\x15\x02xi;@6<\x08J\x1f=xgb\x12LL\'\'WՈ]Z\x0fY4W<\t=*b*l\x0bK V=\tȻx\x04¼5F<6\x1b;\x1flm\x7fU\t9b\x15=~\x19=V\x01n\x15*\x0cs=ƋuA/Lμ <;ƻ;%l\x16\r\x0c=b;ң5f<ݭl;@()\x06j\x1a9\x14@I\x7f<\x1f}B\x14=WI90?G\x1d=һ<\x1c\x0b<6j\x141=fI<\u070e}Ɓ4\x11=\x102ڣ\x1fe_<@ac\x03W\x08?L\x0fD;A\x1d<^\x1a;x;\x18KZݼ\tb<0\n\t6\\<<ڼ5FC;nؐT.=%\x1dϨ<1*vY`K!\x16v!V"m\x1f<6\x168< =5n<5>=\rG=\x17;\x1fHcw\x0fǦ?<\x0c=4=\tY\tF;\t<=\x1c躕v!\x1chQɿ+\\_=.\x06.#\np8=/\x11"Q<&yx\x18d4W\x13 =@\x1d;p~\u05fc\x14\ua6fcLec(\x0c1:rQ<\x06<$e\x17Bi<*I<\x1fd5<6\x7f<\x11U\x19={;`\t=\'O\x136=;\x13\x02=If\x05\x1cQi\'=٥gN\x04=;<8)<,C"29)2#\x03\x16.;Z\x1d=]k\x0c=\x13{\x1eĺźyt\t=7Դ:P=G\x1b<\x13;60;\x03\x0e\x0e<\x08:JOWs7Ae<\x14GoU4/;=LC\x17};K\x14=I;?\x16[\\=\x05W)7#aB\tk=^q|=ݾ\rvmzM)l=*\x0fw+`\t<"` <\x0c\x0fǫ` ;\x05<\x00ˀ<\x17\x00=+L\tK<}F\x19v\x1a\x053=\x1bo\x02y"=im<\x1d\x19=^\x12\x0f=A<@b<$\\ʸi\'<\\\x08<\x1f\x12At6ΙKYvq:JT=\x7fs\x0f=*ʼ+K¼t#TlL\x10<7?=l<#<\x10Ů\x04\r^;s\\=9\x11=\x06\x0b;;$*=3W,8ș:qn;\x13\x15=O7<$rX_"z;R1=7.s i;\x139\x0fq=L\x08^8\x12=r\x0fe\x1aj#ּ/;s\x0b70\x0f:;+\x11\x08;\x0e\x7f<\x0eJ~\x1bl\x11i^3\x0c\x0e\x19*"=5o\x0f=C1<\x13!BR;༼5Z=AL<\x13=\x16n=!<\\!3\x03=;\x00;\t6\x0e&<6\x02&\x1a <:8(0m6K&;VR\x15ȡ\x1e2;2\x02b;Ë<2\x02b<\rۼQ=ȡ{\x07\x1e\x11\x1c%~3\x13&<%\x11w\x1cv>ễPn\x0b4=\r=d$= <\x1cD=P\x16=SHN\x0f\rl5\x14[\x0c\x03<\x1c;:5*=ΝRZO\x01\U000dff2cjw=^;-<\x07=\x13\x0b=j%<~U\x16\x15\n=df\x11\x1aC<\x13\x1c"e==A_ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:248f91be-7ec1-40d1-8f48-c8c386e5ccf2', 'payload': None, 'score': 24.85570899041157, 'document_id': 'index.html', '_node_content': '{"id_": "248f91be-7ec1-40d1-8f48-c8c386e5ccf2", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I/-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261", "filename": "index.html", "filetype": "text/html"}, "hash": "df7407e9ecc35a4cc49a28959288eb67c157fc2b3ae0d4b4d77118cc45adf884", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d50492f9-921e-4298-8320-eb4316b1d4c4", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I cross-list a section in a course as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "f6fca2c812bd3283d67296b64eddcc60ff55f7bc9768a072444ba71ca2abc99f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16858f06-5928-4962-8fd5-40597329aade", "node_type": "1", "metadata": {}, "hash": "0eaab926b7f99cc45c8d91b292eb8d33cf669a4a7e1c54159566ef23ee1ba3e3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'ҹJƘ:3o2=\x154\x07*<)\x08U.F<\rl_\x0c8۔d;1X^/e|L<\x13.+\x1czv\x01&<;/\x1a\x03\x01_zN\x14=$Z\x0b=X\t\x04=5;Ϊ:oduaO\x02=\x13*:d3=j\x10/*5=\t\x11%ד<w~<4\x1f=s=jUj<63=Fż\x0b-\x16$\x0e\x0c<$\x00=Hp̼v썼VM*v<79|PD3><\x06\x14=z%\x1a۔=ݰT;\'c;nW\x16"<;UZ8\x07/ǎ;<Ӭ<:<\x0bl\x7f\nL\x1f\x12<`\'軩oߣ6={<\x06M=\x18\U0003b4b2ۻ\x7f\x00r;vK:\x13;69=\x10ο\x05V^X\r;\x058 =J,-^<ܽ,&Pɿ\x08\'\\7=\x1ev<\x04ꮼj<1q1@@;\x1e8b^&=g;Ў3/h漳,5<_v;=\x17NNe;=w06=NPɿ<\x18@=I\x12.Dܻ+{\x11]<\x02:=L\x02q!Ҽ^H,/˽\x18e\x19G\x10<\x1eļ8E*=\x00\x10d=8"=w%Uu<\x10^)ܩ+=m\x1e"+\x14c=B?/&uդ<\x1eO\x07\x14͏<<\x11<<¼G=7/ۻϵ4=E9\x04\th\x17=~1@a=w;B4E=\x18@\x1fL>\x19\x15<;2;\x1b_=4n탪;X/\x086\x1d4\U00082f08y<[\r:ŀ\'\ue17dʢ ļuh2<ě;e\x1e){W\x16w;){\u05fc<*!|\x1c^Bɼٺ\x15<8;#b.\\\x0b~M\x0fڼ.<\x18\x17MU\x06=o<<==P9\x16w{ag=҇;`\'\\=%to\x14~$<ðB={\x15b<\x1aʿ:j<\x08\nKi;H=)&=G\x10UN<\x07B=E\x03H:b\x05\x161ֻ\x1fu<U;\x0fr;נ?>q \n\x19\x06<\x18T<\x12\x1f=r\x06=\\\n\x0e\ue188N̼RƼ5J<\x0e0̟\x06\x00K=$x&\x00\x19%\t:^\x17=\x1d숻\';༏6;A\x15a\x1f<<~<\x1f<0_e>\x0fs7T;\x1b(U\u07fcR˄\r9<=aҬ<\x17\x13\x04ς[i\x02YG\x11yA=\x0b̉f5=s"\x1c<7<Lj\x12y輙5v_8o6e;gP\x07\x18s7(=Ҭ;\x07.ٹ<\x0c\x1c<\x1b(h=6\x0b\x04p:\u07fb\x1c>=F=6\x0ba^;B8<-Sog<>$K>\x1d`(:4\na;\x1f=$x\x14*6M=\x0c\x08XX;\x10ym\x18k=S\x04;\x14==\t\n<\x02L9\u07bcA\x155ʔSX \x19Y\x07,S469;\ta<4eJ#<^\x17\\мb!\x01ۻ|)=V8;\x0c\x08=ҀΠR<č<\x1cΠ<\x0foI\x1e=eF\x03\x02=Y̟*f|\x7fN=A\x15=1"#b\x0e=O<=oѽw\x11<<\x18(=\x08`L6ۼP^ּ7\x10Gp\x1d\x1bm<<֢<.G\x10d\x18=ɼ^⇼oѼMȺz۩;ź]D:]=\x00\x18;B;#\x10=N\'\x1a8\x19`_NV@=igoo;\x08<\x1e2<\x07\x13<5%:;.\x0bpD<\x0e_:\x12e5@6Y:\x04J=\x17gB\x01s\x19=bݍ\x1a,\x11J(;\n;WG<\x1f!\x0cr<=\x17\x11\x16\x0c%\x07\x14>w;5%\x1e5;ka\x19E\'m\x15.G;/26P{"=.\x0bp=M(Я\u05fc9=8\x12=><ͮe\x02=.h;\'uD(?=u<*\t?\x02=a|(o;QK\\<\x13`3ļ:l+?\n:\x16\x14<3:ɖ\t켏H=r\x19`=y;j\x0fD\x04,1\x19J\x1c\x11<;պ\'\x08<}u<%\x0c%L+Jpx?={H<\x02W<5:\x15ּx\x0cW\x13=摽V\nʺ=~ %T&=k\x1a\x1d;\x1a;:ē^=?P93\x15<@\x07mfZ:OػCw\x15ݲ<>-έ r7Y;PI^\x05\x10<5<(ȉ;:̡_\x1d=\x04\n=@1ż\x1eQdT<\x15%=D<\x1cU\x19=\x18T\x01;cg=\x10tA\x10&\nH.:Bk;w;\x0f<&\x13~\x0eX\x1e\x02=v=>m3Qoϓ\\\t<{l\\T=¼ r7g=\x01>A|1C\x133V|]Z=v=>)Ye+<\x1et<`\x05\r<~\x10=l\x17\x01<6jbu<証\x010\x19N<`P\x04=@T\';[AR\x1ca6\x17\u05fc2<:Uy;(|<\x18Z<+oqJ1\x1a\x16\x1ch^B+ZH<<,<5V=\x07+9j<;\x1e:d\x10>ɏ;\x02[=Ӈ<\x1eoɦ;V\x0f.X\x1eh?=\x1fJ\x12/=\r;;`<,M\x00;1\x1e7\x07^10<\n\x7fTIv=\x18Y\x16\x18;W0^=\x1c\x19<\x13\x0f<$\x0bZ\x00\n<.<6z<_<=\x0cW<9\x0eQ=n\x19<\x1c1=+_<0=o=\x0c\x00a{:{:k\x03"ȵԼw{b\x1e=\x1eʼ\x19>90\'2<,UY<ƸzJ@\x19m\x15=aC\rRϼh\x0bւ\x17=<\x05=\x19LF\x17#<3=B\x1e{\x06Kʌ=c=\x08=$\x1b06\x01=\x08F\x16r\x0e\x1a|=I\x19<;#\x08-]%\x0374\x04\x1b;(cM8=\x08=#t\x1f\x12k<\x0f\n\x06v8\x18X<-(2\x02̈<6;dv<2TI<2==\x10)༃r\x0e.8\x0c〼\x1e=Queᖻ\x08\x17컅\x14==\x03ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:6ffee4a5-b522-414d-92b4-3799449893b7', 'payload': None, 'score': 17.567782056324962, 'document_id': 'index.html', '_node_content': '{"id_": "6ffee4a5-b522-414d-92b4-3799449893b7", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:26", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ine.dukekunshan.edu.cn/blue-bea/r-from-0-to-1-actualizing-your-robot-dreams-at-dku", "filename": "index.html", "filetype": "text/html"}, "hash": "733338efdeaad3004de9dfcf925b1e0f9d03a587d05ffacdeb8716d1e541bcd9", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cc79384a-ce32-4df2-87af-b786c4d3b0b5", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "0f1dd764e9fd64e2979865ef3027f3b87c8848f2db8e93eff2b584fe12f1f78c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4b765f3a-4cd0-4834-9c2a-c8b5e3b2697b", "node_type": "1", "metadata": {}, "hash": "02e7e5e6b59072054c563e385109c50c56816fc8bf847fc3d2cdba3cd91fc6d8", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x1e\x1aˍ˼\x08\'ԭ\x10l%k=.l9R%\r=gP8<@\x14\x08D<\x081\x19fvMڦ<\x04:\r=I+;RM3\x1ea<@;ڽ/Uh<\x0e\x06bԇ\x16h=NP<<<\x04RMм/%=8봻\x0ea<\x19캗\x17\x1f:&=<7p"><ٞ<\x04Ė;dа\x0b=+I-]<3#=yC<7F\r<ܻ\x0bcg<\x145쩻]\x08;/i{\u05ce<﮼g(\x12K:"\x0fp!\x00=\x14&<\x04xżq<\x046\x1fܦ`\x1f,=mμ\x14şbLӼ(\x11b;\t@3\x15\x02xi;@6<\x08J\x1f=xgb\x12LL\'\'WՈ]Z\x0fY4W<\t=*b*l\x0bK V=\tȻx\x04¼5F<6\x1b;\x1flm\x7fU\t9b\x15=~\x19=V\x01n\x15*\x0cs=ƋuA/Lμ <;ƻ;%l\x16\r\x0c=b;ң5f<ݭl;@()\x06j\x1a9\x14@I\x7f<\x1f}B\x14=WI90?G\x1d=һ<\x1c\x0b<6j\x141=fI<\u070e}Ɓ4\x11=\x102ڣ\x1fe_<@ac\x03W\x08?L\x0fD;A\x1d<^\x1a;x;\x18KZݼ\tb<0\n\t6\\<<ڼ5FC;nؐT.=%\x1d\x15R\x10X<=\x02Y6*<[;\x10bB\x19/м1Eȣ\x15=\x13(FE\x1fQ<]5VRI\x1e=2\x12;hú-(=\x10;t<\x1f?\x0f\x1b;;ڥG\x05ji \x11~\x0fF=JҼ\x14\x151\r-\x03=\x0b-?<\x1c>\x18r3<\'ne=In<@\x07-;{={\x11=\x19%¼#\x17\x07;AM=\'u&hV\x11=>(\x19={!<\x16\x06<&\u07bc$»\r\x04#\x192=\x08dg\x1d<]4|#<\x0cؼ4"8<><;\tX>ü\x0c\x00I?\u07fba輯\x11\x0f=\x12X2\rF)= z\x16\x1bR<2!=̿c:f\x7f-[.\x11 \x11~< w<`=\x0e=%;&=\x7f\x11<\x0cg,bn\\dɼ3<=\x00\x1e)p}b!\x0e=GHe{!7\x85::@{=\x1cWN=5t\rAM\x0e*\u06dd\x0f=\x0eJ<\x05n}>B(\x19X<%\x0f\r%la<<[P<%\x0f\x14;\rt\x10\x18O\r<[O\x14=(㼇̿\x1e;\rFڄ%43&=.м<\x7f\x0b=N;G<<͆\x08\x1f~&y~~R<3%)NEs=p\x07\x0c!<ǹ&f\x0f\x1bl;8\x03o;\x07\n;o\x12g<\x06<\\A=\x7fn<\x1dD,=`j<\x13<\x1ej;\tdS;:<79!=\x0f<2\x0cC=T=člCy<\x13\x015ʼB73%)W9=5y9\n<\x12\x0e=㬺Y94\'ZN=j(Uſ.=\x01<|ͅ8ӗȼ,\x06Rw:H\x0eT{6=h*\x1a=\x16\\Cm\t<=lZN!u<;O:;\x1fha98~\x07I\x06&DyK<}aBP\x0fܼ\t\x10\x13\x0b\x00f<̎<`ZR\r<$\x17\n=*$ZۇOSs]μ"Ha=\x15C]HjVld;9\x15;`r%z0=+\x18;+=i$9j*<xp̼;\x14\x17;W/I7\n/A$x\x1af<\\x\x077\x10:\x04;:a2\x17\x19{<(@MhU\'=݂VfR=\x12qW/;j>Y=T\x02=\x11\x05.KD3\\9*\x06\x08=;wo쵂<2=|\x1bs滊:lI;{<:\x16v-W\x10.7zk=F\x08i<,l<_w#/i`\n̼]<\\:LAA<\\@\x1f<;UX(\x06\x19;u,MI80<\x03\x10\x0f9<\x11=g0Y\x12+\x1c<\x0b<$ټx=o\x07\x13kt\nnLv=<\x11<\x0fm\x05=s\x04n\x00M\\\x11=Q$ļ\x11\x14:M\x1a', 'text': '# Hiring Process for Student Interns\n\n# Interview Coordination\n\nThe hiring office should be responsible for coordinating and conducting interviews. The Office of Human Resources will not engage in the interview sessions. In most cases, the interview of student interns will be conducted by phone/video. If the hiring office would like to set up an onsite interview on campus, they should be responsible for relevant logistics and cover all related expenses.\n\n# Interview Guidelines\n\nDuring the interviews, the hiring manager could introduce the stipend and daily work to candidates if necessary. For student intern positions, the hiring manager is encouraged to reach initial verbal offer agreement with candidates at this stage.\n\n# Candidate Confirmation\n\nIn the interest of recruitment efficiency, the hiring manager is suggested to confirm the candidates with the following situation during the interview:\n\n- Internship duration, starting date and ending date. It is suggested the student intern should be available to work for at least 3 months;\n- Working hour: five days per week, eight hours per day. From 9:00 am to 17:30 pm. In most cases, student interns can work full time. However, some may only work 3-4 days per week;\n- Work location and accommodation: student interns should cover the accommodation fees by themselves;\n- Intern stipend: 3,000 RMB/ Month for full attendance.\n\n# Step 6: Extending Offer\n\nOnce the hiring manager confirms to move forward with the candidate, he or she should send an email to the Office of Human Resources with the following information included:\n\n- Job title\n- Candidate’s resume\n- Working period (possible starting date and ending date)\n- Fund Code\n\nThe Office of Human Resources will make the offer to the finalist and inform the hiring manager about the offer status. If the finalist accepts the offer, the Office of Human Resources will initiate the onboarding process. Otherwise, a new round search will start.\n\n# Step 7: Preparing Onboarding\n\nBased on the previous cases, the best practice is at least 7 business days are requested for onboarding preparation, which includes Net ID, cubicle, campus badge, laptop preparation, etc. When the hiring manager gets the student intern to offer, he or she should consult onboarding day with the Office of Human Resources. Onboarding date for student interns will be on every Monday.\n\nHuman Resources Office\n\nLast updated in September 2019', 'ref_doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'file_name': 'Special Recruitment and Hiring Procedure for Student Interns.pdf', 'last_modified_date': '2020-04-28', '_node_type': 'TextNode'}, Document {'id': 'test_doc:cc53bb11-993a-4bce-85e9-7a9551a2b0a0', 'payload': None, 'score': 45.17864594876473, 'document_id': 'index.html', '_node_content': '{"id_": "cc53bb11-993a-4bce-85e9-7a9551a2b0a0", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "link_texts": "[\\"Skip to main content\\"]", "link_urls": "[\\"#main_content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/www.usajobs.gov", "filename": "index.html", "filetype": "text/html"}, "hash": "45c0cbe6c6319b689d183634e068b1e0493205d12944909bf7636263451dba0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e668195e-a704-43d4-9ecf-a0c10ce996c6", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "3121985528011eddaaeceb8318bd0711168712c909b1106297b0331421a264d0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8301d50-ab04-4123-b28f-033c7cccbbae", "node_type": "1", "metadata": {}, "hash": "63f7b310cde3076c049d2de420e99084a5288a9f9612f11fe1f9bc178f0af792", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-5\x0e<\x1avdHQ&;-i\x19=Z=H\x7f[<\x075k=0F=;\x02No*>0Fɼ;T;턽;c(=\x1a<\x12>F\'=\x04W!\x0e?=ˀƼ\x1d\x18;Ӯ)<,@<*_x~V"P=ƏY@kW\x188rF=4Yo3aP<\x03=\x1eڸDpDe\x00V<}IKShC\x16N\x06Jo=:\x13UcǹC=\x14&<\x04xżq<\x046\x1fܦ`\x1f,=mμ\x14şbLӼ(\x11b;\t@3\x15\x02xi;@6<\x08J\x1f=xgb\x12LL\'\'WՈ]Z\x0fY4W<\t=*b*l\x0bK V=\tȻx\x04¼5F<6\x1b;\x1flm\x7fU\t9b\x15=~\x19=V\x01n\x15*\x0cs=ƋuA/Lμ <;ƻ;%l\x16\r\x0c=b;ң5f<ݭl;@()\x06j\x1a9\x14@I\x7f<\x1f}B\x14=WI90?G\x1d=һ<\x1c\x0b<6j\x141=fI<\u070e}Ɓ4\x11=\x102ڣ\x1fe_<@ac\x03W\x08?L\x0fD;A\x1d<^\x1a;x;\x18KZݼ\tb<0\n\t6\\<<ڼ5FC;nؐT.=%\x1dϨ<1*vY`K!\x16v!V"m\x1f<6\x168< =5n<5>=\rG=\x17;\x1fHcw\x0fǦ?<\x0c=4=\tY\tF;\t<=\x1c躕v!\x1chQɿ+\\_=.\x06.#\np8=/\x11"Q<&yx\x18d4W\x13 =@\x1d;p~\u05fc\x14\ua6fcLec(\x0c1:rQ<\x06<$e\x17Bi<*I<\x1fd5<6\x7f<\x11U\x19={;`\t=\'O\x136=;\x13\x02=If\x05\x1cQi\'=٥gN\x04=;<8)<,C"29)2#\x03\x16.;Z\x1d=]k\x0c=\x13{\x1eĺźyt\t=7Դ:P=G\x1b<\x13;60;\x03\x0e\x0e<\x08:JOWs7Ae<\x14GoU4/;=LC\x17};K\x14=I;?\x16[\\=\x05W)7#aB\tk=^q|=ݾ\rvmzM)l=*\x0fw+`\t<"` <\x0c\x0fǫ` ;\x05<\x00ˀ<\x17\x00=+L\tK<}F\x19v\x1a\x053=\x1bo\x02y"=im<\x1d\x19=^\x12\x0f=A<@b<$\\ʸi\'<\\\x08<\x1f\x12At6Ι;<\x06_\x0c=T\x08뼻:Ǽtm|Y:ԝ\x11\x00<߅<\x071=DV?b\x04<_~`ݼ\x0em;hW};r\x1f=j"\x17D;=5x=\x16c;&ռh`4=\x17D;$\x08%l\x03=OߛZ=e.O»7`мV;r=k\x1c\x0c\u07b4Si\x11S<ɼ\x1cR7\x0c;O`*=Mf<3\x07\x05:\x00\x15\x1c(=\x07T=T<)W(<:\U0007a4bc\x1ae\x08%9N\x03=c\\F=O~J.m^\x08WY:1\x08}%:\x0c\u05cbbFû\x070=a\x00\x08V(*~{<:<=4<=A<\x15-u\x101-x\x7faޗ<\x12\x19\x13V[\x10cR(qfKZ:\x0b\x06;)W:;\x1f\x0bEt<;,<:_}\x1f\x0b<\x07`]\u07bcv:t\x1e`C6ѼO#;5r=XH\x1cg:<%L<2fm3==X\x10"A;VjؼJ\x16=G\x07ir&\x04)=~\x12d綼^Y¼\x10\x1aqX<\x1d8(t\n紼*<:=~m\x17<{o8\x0e<3I<^9XA\x11g8y\x17\x1260d#\x17v=\x0c=kn\x17=6Ċ0\x04\x01=k W={<=\x0b\x18\x06\x03=\x0e0=\x0e<\x1e*$%,\x1c\r:JĻ+=L J\x10\x12\x01= g08Z=[\tm:\x16\x10\n<˼1\x12X<̌<\x0b< g2;\x10<\x168=͞\x19{<#<]\x1e\x17\x06<(<\x01;\t_=\x02W\x04\x02=$\x13;e\x15\x07<뺮\\H?8<,VI8B5ż\x03=о\x0b7<ܮ4=܇\x1c\x11\x13δ;3<ؼ,\x08ح(=UVù\x1a =:}P\x0fA~ü*=i\x16\x13{M+Hz\x11;N<\x1e=n%\x00\x19c<;ҭ<6e=3"=R\x0c<[TW2J\x04T]*\x13=v\x19@: wPi<\x01Y=\x1e\'\x1e\x04@=9\x7f<<\x02\x07PЏ\x19d<`Yg<#@ukջ=\x13;%>;2n\'\r$+y\x07\x01f\u07fbb5\uef3a\x12;(<\x02=\\<\x114\x111\x04=\x0ev<,\u05fb(\x1b"<[k{\x08&.G=;\x04H;\x05]\t>iY.=k;c<<\x7f<÷gE7;\x00R:vV:<\t\x00=\x11;\x7f:<̘<4;\x16hZ=zʻ᩼e;&b_\'=\x1f4L-2?=Z*\x10<\x116ٺ\x08|&=n3;\'\x17<\x116Y\x0e\n?,\x1dC&)SZ<_:U<\x02B;\x06\x1e*mQn<&;f\x7f:Wg=[U~[,kb<\x0bv\x03EC=^<\x03|=yMS<\x0cBTO\t(Z\x1eD$O=\x01T`b=\x02\x17\x19U_\x08*m\x14/>;zD\x03\x0e傽g벺:\x02Ik7:l\x0b<^s;e>xVRr\x18\x16:)/\x1c\x1d\x00=LQ<&<4H:S\rlQ\uef16O\x15|\x17Y=\x19\x1btH\x7f"<:W<˳<\x0c~$s<:8<\x0e\x1a\x1d<\x15\x10.=a(;8<\x1a\x1c;\x11$3\x1061:`\n_$4˥aЩ<ɻp\x1e=\x11$3)\x06D\x01\x0c!vzN=;5\x18b=\x16<\x12\x1b45vX\x04<\x192\x11ly4\x08<\x0bv<\x17L\x03;+tɼ6=f{ͺP;;KV`\n=Jl\x05=ɇ\nVp6\x1f+;^\x16t=u\x1a<\x03\x1f<\x1a3#=j6c:[\r\x0fc<{C=H2\x19\x7f=\x1ay<\nB\x12;v;;=<\x04z\x04\nXs4<66м\x00JS=(<ø|\x10\x1b\x0cW\x08=a<&<\x08<\x07Lλz;2<֟Ѽh\'\x11f\\<)$5\x13y;A\r=eU\x15=\x17_u x:մ<+=̅<7(<\x18;nd\x07W\x02%\t<9#=΅K>W=l<;\x05;\x143;3\x00\x04\x15\'\x0f=0@:jl}g<\x0c3F<8\x1fq<3ύl\x1aЭ:\x02\u05fcu5Ӽ\x1eU\x05=H\x13\x1c!\x0fqvv\x14<\x1ev<<\'<л\x14M\n\x067+<\x1aIq\x10\r<<2<:OfM\x1a<; =8\x1c<\x0e<;w;S1wѼy><\'+<+dK;DλI\x1f:4s;]4^vY;Ǟ<p\x04\x1f:CS5Rx=\x0f[7\x16\r,<5\x14F<\x1d\x03Ud=xɺX;s*S\x10==0|ցd;nJ}c\x10j̀^vYS3=//<^vY!5\x02-A:$\u038bSb\x14<\x02Щ-#=8춼\x1bL"=Ěu4U;\x08:\x0bspm<`O<\x15vkT<~hg͊\x1a=\x02+p@=Ud<<\x1cf?=\x056,W^o;Rc:`J\x01=k7W7c\x07=tX\x1b=,.Z\x03=<$=q-<\rZm\\=i;\x08K\x1c=;0ɇ<(<ļP\x01%<\x08<;\x06"B;\x14-=3퉼\x1ag~\x1b6\x05Le\x1f=2\x13=\x08\x00\x0c;\x06=>(\x1bk=.\x03\x1f_<} =6mI.Ȳ!DC7;H<+Uȗk\x1dH\x0fȼj<\x14;e-<9t\x1cLB=uT<$\x05zЫ<\x10\x15Iz\x12=\x1bTLHm\x06;\x1d0N2y~<^=\x0eƼYa\x16<\x00!=.>2"<4=q\x19<ź =\x01~\x00=J?<\x12\x07ѼԻk\x0em<5/\x0cj:FL=^;<\x13N\x04=):]\x00:\x15\x0e:JɻZt0S:Er=\rx\x0f<\x16\x14-\x07jcC#<\x0ez+~\x1b<_-Nh~\x1cb<*ݻt\x03\'=<\x13%\x14\x1aP5;!\x0fԱ\x14\x12?\x02={\x1d;ݚ<*]\x17\x0e=!uB=ź AhJ~4u;\x05)n&9?\x12`l6\x18w\x1b\x7f9Zl6=Fd=ͽ:\x03(', 'text': 'Visiting College Students | Summer Session\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Skip to main content](#main-content) \n\n\n[![Duke 100 Centennial logo](https://assets.styleguide.duke.edu/cdn/logos/centennial/duke-centennial-white.svg)](https://100.duke.edu/ "Duke Centennial - Celebrating the past, inspiring the present and looking toward the future")\n\n\n\n\n\n\n\n\n\n\nEnter your keywordsSearch\n\n\n\n\n\n\n\n[Menu](#off-canvas "Menu")\n\n\n\n\n\n\n\n[![logo](/sites/summersession.duke.edu/themes/tts_labs_ctrs/logo.svg)](https://duke.edu/ "Duke University")\n\n\n[Summer Session](/ "Summer Session")\n\n\n\n\n\n\nMain navigation\n---------------\n\n\n* [Duke and DKU Students](/duke-and-dku-students)\n\n\n Open Duke and DKU Students submenu\n \n\n\n\n\n\t+ [Courses](/duke-students/courses)\n\t+ [Calendars](/duke-students/calendars)\n\t+ [Tuition & Fees](/duke-students/tuition-aid)\n\t+ [Summer Session FAQ](/summer-session-faq)\n\t+ [Drop/Add, Withdrawal and Refunds](/duke-students/add-drop)\n\t+ [Housing & Dining](/duke-students/housing-dining)\n\t+ [Register](/duke-students/register)\n* [High School Students](https://summersession.duke.edu/credit-course-options)\n\n\n Open High School Students submenu\n \n\n\n\n\n\t+ [Credit Course Options](/credit-course-options)\n\t+ [Calendar](/calendar-0)\n\t+ [Tuition, Fees & Payment](/tuition-fees-payment)\n\t+ [Drop/Add, Withdrawal and Refunds](/dropadd-withdrawal-and-refunds)\n\t+ [Transcripts & Transfer Credit](/transcripts-transfer-credit)\n\t+ [How to Apply](/how-apply)\n\t+ [FAQ – High School Students](/faq-%E2%80%93-high-school-students)\n\t+ [Language Proficiency - High School](/language-proficiency-high-school)\n\t+ [Policies](/policies)\n* [Visiting College Students](/visiting-college-students)\n\n\n Open Visiting College Students submenu\n \n\n\n\n\n\t+ [Courses](/visiting-college-students/u-s-students/courses)\n\t+ [Calendars](/visiting-college-students/u-s-students/calendars)\n\t+ [Tuition & Fees](/visiting-college-students/u-s-students/tuition-aid)\n\t+ [Visiting Students FAQ](/summer-session-faq-us-visiting-students)\n\t+ [How to Apply](/visiting-college-students/u-s-students/apply)\n\t+ [Language Proficiency](/visiting-college-students/international-summer-scholars/language-proficiency)\n\t+ [Drop/Add, Withdrawal and Refunds](/visiting-college-students/u-s-students/drop-add-withdrawal-and-refunds)\n\t+ [Housing & Dining](/visiting-college-students/u-s-students/housing-dining)\n\t+ [Transcripts](/visiting-college-students/u-s-students/transcripts)\n* [Getting Around Duke](/about-duke)\n\n\n Open Getting Around Duke submenu\n \n\n\n\n\n\t+ [The Duke Campus](/about-duke/duke-campus)\n\t+ [Parking & Transportation](/about-duke/parking-and-transportation)\n\t+ [Your Duke Identity](/about-duke/your-duke-identity)\n\t+ [Your DukeCard](/about-duke/your-dukecard)\n\t+ [Academic Services](/about-duke/academic-services)\n\t+ [Counseling, Advocacy & Health Services](/about-duke/counseling-and-health-services)\n\t+ [Buy Books and Supplies](/about-duke/buy-books-and-supplies)\n\t+ [Technology Help](/about-duke/technology-help)\n\t+ [Duke Libraries](/about-duke/duke-libraries)\n\t+ [Athletic Facilities](/about-duke/athletic-facilities)\n\t+ [Other Duke Programs](/about-duke/other-duke-programs)\n\t+ [Exploring the Local Area](/about-duke/places-to-go-things-to-do)\n* [Contact Us](/contact-us)\n\n\n Open Contact Us submenu', 'ref_doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e432f465-7336-43bf-98c6-3fdbd05f66c9', 'payload': None, 'score': 19.682046632058295, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '72941', 'document_id': '978cc5f7-518d-46c1-9a1e-bd564203f398', '_node_content': '{"id_": "e432f465-7336-43bf-98c6-3fdbd05f66c9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "978cc5f7-518d-46c1-9a1e-bd564203f398", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "hash": "a7cd9e930147aa8e0f3b4488d046ed23e992188b48df2708094d8b6c9da528c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0bd6314a-1e94-4749-9a6e-5da9c1fa0569", "node_type": "1", "metadata": {}, "hash": "c6bce8616e4a8e6d7db737b8856089e976713a4829bc3fe8d3c9ec16aa6bab96", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 17, "end_char_idx": 3353, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/summersession.duke.edu/index.html', 'vector': '̒\x1eϽ𩽲J9TD)[\x02͍輟d\x1f\x0c2=R6p<~G/\x04=5`=NR<]\x03{<"ú}%i"7^<ꚼXQq=tk\x17;A=\x1c?W\x07(\x0f!;J;uf\u07bc;!<&\x170(<=Z\x10\x08G;:\x03_}=2\x00<\x1a<ꕻ<\'D4<*\\讲;NBa<=^v=<\x14=\x171B9a[=\x18h=@V;~\x1evL0/\x04=\x0eQd?ﰻA"\x06<\x01\x11so<[\x1e̼\x7f<-t=\x17=\x1fd;7\x1aR\x0f<#\x05ϼRp\r:@9=b=\'\x10XCۃ=n:<$<(n<ۼkB<`89Tļ\x07Qoq\x15a<4w=d{j,=J%<.\x11T <@1\x1a#\nl;8`$>=w3fZT鼫\x0f=\x14&<\x04xżq<\x046\x1fܦ`\x1f,=mμ\x14şbLӼ(\x11b;\t@3\x15\x02xi;@6<\x08J\x1f=xgb\x12LL\'\'WՈ]Z\x0fY4W<\t=*b*l\x0bK V=\tȻx\x04¼5F<6\x1b;\x1flm\x7fU\t9b\x15=~\x19=V\x01n\x15*\x0cs=ƋuA/Lμ <;ƻ;%l\x16\r\x0c=b;ң5f<ݭl;@()\x06j\x1a9\x14@I\x7f<\x1f}B\x14=WI90?G\x1d=һ<\x1c\x0b<6j\x141=fI<\u070e}Ɓ4\x11=\x102ڣ\x1fe_<@ac\x03W\x08?L\x0fD;A\x1d<^\x1a;x;\x18KZݼ\tb<0\n\t6\\<<ڼ5FC;nؐT.=%\x1dVaz\x16\x1eϼ\x04+9S,\x08=j\x0fZ\x00<(<1t\x03\x05u\x0c*;5\x1c\x078*\x11̻A\x03\x1e<1(ӻ\x1e?m\x08<\x17\x15`\x13*Wf\x010\'$Vjַ=::\'\x01*=\x1f\x11=\x08\x10/=[:; XX3\x18"\x12dN=hp"<\x15\x04XD;s\x0f=i\x14)$\x02ż\x0c\x19 X<\x08;{<ϔ\x16\x03\x05<\x1e\x02<-_\x1aַ\x0b;C.64=%9;:ĺ8T,V;f\x14W=RȮ\x04\x08=i\x1d:2i;ˋ;\x18\x08=JVồ8==\x08\u0378:\x05<ͺР=T\n<\x06<\x1e\x193\x00ˑ\r=\\\x15h<<<\x17;&\x16\x03;CɰF꼫¢<5.a,\x00S \x18\x0f\x7f:< üP\\\x05<ỼM<\x0e\x02=qꗛ;\x054=ȓf\x16\x03=\x19=]\x18\x02,<Ƽ=<\tq:\tq\x15\x0b\x18=+9Ow}<4&<ιtNgc(j#<\x03O7=:\x19H\x06;ĄE=غNQ\\ȼe<>qc<{ȢqNpHpsȥ=\x1fp9nw;pA;buY=w\n/\\<۬cN=\x0b\';{;\x18J=i<\x11\x08躬~[Z&q\x00&<<)Oi@<\t<&;c3{At8^+\x19<-\x0eN/o;<\nB\x12\t<@}%y&C=iG=\\\x19E\r=\x18ߺ\\<9\x14\x06\x1b\x00w_<\x11E\x1c=\x00;&ŝ2ﻼX<\x12T<\x0f*|B\x0c%;&9l\x0c%;2ü\x0f<\x07ʪ6<Å<1\x19c,==μ1.=DLL,\\""\x05\x1d۽uiN<:+]d=?90g;Y=\x03<\x04\x14_%:ѐ\x08\x1f<6\x18=O\x0cd-\x0bϼ5=\x19;MLmQM8=NS=L;KCx1;ڝ2\'K<};2eڻO:<_<\n8\x1a<Ӯ;<\U000c9f2a\x1b\x1f9⼧\x16e<ᜠ/\x00}|;t<,\x00<\r\x7f\x1b\x10\x12v>=\u06021=\x00\x06<+*<\x13=4&=^l<(\x1e^\n@=\\X:lg<<-\x07\re<Ң\x15\x19W<3Ҽ\n:_%A;_/\nr\x05V1%=;=T;S|s\x14|\x7f=0AQw9R\x1e؎D;<(}\x10Ӽ)\txn3\x1a=)L9F1h1(= (:/\x07hż\t1=?\U0003caf9B;9]p<\x11EA4;)\x1fҼsc;\r||<\r5<\x1c=h?4wS<\x0e\r<{\x03\x06=m\x1f=SƼ\x08\x07V"=\x15< ռxƻk伩\r=]1g\x04[=R"_;\x0b&Ϩ\x00B#\x1f9=ż\x0eD:C!=\t\x1a_<=iaG&#=ؑJѼ[oռy7c=\x05Wy.=:<\x1a\x04\x8f49z:<,`<Ԗ<\n䀞:\x19e\r\x7fgJ==\r=:i(\x14<\x05Cs\x1e~.ԗ=v6;mw,=5=Լmw,=\rT;/";$<\x05;pp<\x10!\x18\x02̅=XȻ\'輵pSȋȼtc="Ƽ\r\x14;\x10P\x00[9\x02=?C\x04<6=3do(\x13\x12;-HW=]R<Ǧ\x03qM0$\x0f5=l\x14[svd\t-\x7f>\x0c=F.3A\x08=\x19 =\x1b\x05\x0c<ջs\x1e\x19q{\t=y\'\x11dF=\x01aL<\t<\x0ck=\x14;\t <"\x05=\x06R\x02t\x14<\x1f`ڀ\x01 9;mw,+z<|S\n3A<49|D\x140 =ռtj:C<^\x04;+<\x05<嚼Y;\x1a\x07S;F:ga7P=`d\x04N=\t\x1a_\r7\x13\x076Y+zE\'A<~\x103=\x10x;Ѽzh<@\'K<+EA;\x7fQ*=\tc<.=+=\'xG0;ҙ\x17L2\x0f\u0383?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 49.6279794043577, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;\x16\x08ڸjo;L=|\x1b\x12~<4vB]ȞI\r\x16Ǽ\t\x14%jF<=3L6\\ 6=3G㼄d\x0fAm=)ϼM\x14gX\n>G<仒\x0c;=\x1d仟3\x13HS0bc=u<\x00\x01p0Iߴ!\x11\x16=\U0008f53cV2<\x073\x0f\x0bЎW<\x1e\x05b<\x164˺k\x1d=ը\x14=l<9~B4#\x18\x15V\x14`r=\x15=.d-\x0f=\x19=If: \x18=\x01]uY抻l\x18ʻ]3[P\x11& v=\x1d;E-uG0=b\x0e=?8@C(5<押 t;;\x1e5;=8Q;:\x14\x11Ѣ;8=NX\x129dwt\x01=OS?=ŦB=ŶIߴqO)0]\x03v:l۞F?=\x033\x150\x12=VCMI\tR<<<<ٽ=`5\x08/x<[*`a\\dDnR<\x04=\x18<%S\t;Iߴ{=\x11\t{\x013;}?\x0e\x1c<%b|;@N5^nqO\x14$\x1e;x\\z,=|\x1b;9A=ڮ<^<\x01;e#i<_1*\x18;:<;R\x01Ec\x00\x07 2U7d\x11={\x051B;+\x01\x1f=(rq;\rt\x07=[:\x03Ey\x0fkF=<7);20茼M\x1f\x0c=^\x10E<ǖü>\x07a3nf\x82nfXȃ=S\x15\x06뻄=$r\x004\x13\x1b|(nf\x02*&);\x13_<\x0bʻG7\x0f\x05=\x0c!:A\x0b=B;n\x1f;=q<0\x0b9؉;m\x16- \x1a_Tp\u07fcv)W?;c\x19\x16B=%HM\x14=S;<;|A4=\x19<\x1fͼz?;\x17ȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{12796 total, docs: [Document {'id': 'test_doc:0565997d-7375-4185-8808-0f1a24a2d481', 'payload': None, 'score': 7.299897098980933, 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "0565997d-7375-4185-8808-0f1a24a2d481", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "56580115-5f97-4e69-b6a7-f269291b2307", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "22a7a22291de9eabc9a486ff1fd62fe59240c74137ab6a51af9aa5ec19b11bc4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "75f05425-a154-40db-973d-a626e4336626", "node_type": "1", "metadata": {}, "hash": "c4c8f853bca4407535489a9bcffea6643e05f489374b3504552b5af25b4c64ef", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 133934, "end_char_idx": 138672, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'creation_date': '2024-06-17', 'file_size': '6645174', 'file_type': 'application/pdf', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'vector': 'nbRr@\x02RPI:uN"<\x15Ӽh3;H#K=2X<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b<ӷ\'\'t<\x0b%dڼ_ɪ;H{0mÄ<\x16伛\x0b!Y:\x05==-\x04\x03\x10|<ѻ_~<\x1f\x7fżLʍb=H=h.ޞagb0G\x07_D¥dڼji;=6\x14Z<;\x01^=I`\x032I<\x10\x0f~;>̽<ѯ)~P:\x9a#\x13=ږr=W{<=6?b<=\x14=ՋF\x1dO\x17;l"<7l9\x1d(Hv<,\x16\x10;;C#:}<<<-0JZ>=yi\x08:<#<ē<7VE\x143\x07M|(#=WI<.`<<\n»\'<\x10W\x15\x02=ӝh\t;\x00̽;v==Yi==dz/=CԼ_~<ē;.Ż+^\x1a\x12)tRl6"rϛ;-=u<-;d\x04;MI;/3\x0c\x1cn\x11< Z<\x1dޤ\x15=;T=_l\x06Q;5@;5=A!\x02=3\x1cռcUO\\\x19\x15<\x083=\x1d\x13<١9Ҡ<\x03\x06_Gb\x1ad/7==\x0b=<`E\x01}P\x19=T\x7f̫\x1c= oN;\x03)m<ĹXżN{<ѻ\x10g\x16D\x1b<\x1bU\x1e3\x1a;Y`\r=\x0f.8<8xhC\x7f<,\x1e\x11:;<":8#K<|<\x0c\x04s\x1d;\x19<;\x00і\x00|#%\x7f<=Ѽ;\x16=\uea03\x0e=<⼌M<2$!\x08l-\x180\x1e\x10;\x02=<=<.U`\x10gܼс\x0e<\x01Ǻ\x7fRV\x01c<܊;@\x18=`r^#\x1a=\x12zcx\r`&=]F\x19Fd\x00|;\x18<2<([~;O\x19;o$x\x10\x1bE)\x02$tNͼE);loP=9=\x1d2<\x0fM=\x19Y|2<\x1dDϼoH=ZO="94h<}^\x0bq\x0b=b0=\x16="\x0fͼr^;8V=$發\x06\x19{\x02<2< \x12;]<=V#=豥K7Dl<#=\x12=k(4n;ށD=Y<3;~ð;z\x15/t(<.n\x07<\x0bq\x0b|\x0cA\x15̼p$=?Ca;1<[\x05\x04\n\x08]缤c\x17G\x14|slڼ?<*n\x11ga\x13!^%\x1cK;N\x0eU姼\x04\x18=\x03"F\x1d<8A}\x16T;"<\U0007b2bc<\r(=&;\x0e\x0f;W\x02%r^=FdvX\x15<\r̼,ϔ\x03=\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19+<~;\x02w%\nn<=\x06";^L=6<Χ<.J0O` \x11<<+\n\x1as:7<`<.r:ަ%/\x0eL;9<\x1b\x14\x0eQ\x1a<;G\x00)\x0b;\x1e;\x12=&<&\r<\x17S&u\x02\x1a֩>X\x16C<%C=\x05"*7\x0b=2\x05=\x0b_\x1ff+FA\x03פ<$[<\x0e;D<\x05o#u\x06\x7f\x10\x1b>=\x15\x1f\x19\x06"<0=NR$\x0e<َ<6[<6/\x03<<^0\'=;o\x00[|.<1s c;\x04\x0f$@=/\x03=V,\x0co\x1e<л>5&]D9\x1e/\x138\x13\x02v>\x7f&\x03$;U9FU<~Y\x13\x19=j;ܮ<\x1eߒr^;:<\x14<+=VʼFd=FF=5>"\x10}\x06-\x1b\tʶI=n-<\x02$n<\x03פ<\x1eK$\x0e=7\x02\U0004ec3b6B<0=мf?:&\x0f\x1c\x01\x17&\r\x16ߗ\'?\r;,\x1f\n֖<\x00g&Z\x13ә<#\x0f=ߦ<3%\x0e<ƪ&\x07ʶɼ-\x7f<\x18+:+GC=;\'\x03\r\x06wnA;n(*_=<\x1d\x13\x02w%<\'S\r|V|<\'g<ݼ\x14[/;6G==\x1dk;\u07fb\x02.m=fl<5<-/|.|\x0eV#\x0f=\x0eV\x16\x7f\x06ϼ63<>~j=>ɼ\x1aÕ\x04\x0f$<0;~<%\x7fz}\x04#=\x14G\x14o\x19:=!;\x11=\n\x1f\x11 \x03=7\x02=>l\x1e-<\x0e8=v>6+<<\x7fv<%k=,=B~;\x0eּ(\x0c<͆< Ǒ:\x0co\x1eۼʎ<7!\x10,3\n^`VY\x1e\u07fc%W<9_\x01\x0e\x1df~f;\x0eC\x0b#\x1f&45\x03=3\x05X:VE<\x05G*<9s;\x06E<~O<>]=3\x05<\x8eN+\n86`=3\x1f\x05\x0ek<&k\nן\t\uf83c\tw ^V+<:FvMVټ)\x06v/y\x0eK\x06<6?<ȼǖK+;\x15\x18>\x1d@\x19A=\x11\x15;#\x13Z+\x19.E$7;\x1cS\x0f=8\x0f3np\x143+\x1c\nx=Rs\x08=:\\05i2=MRźDi=\x1e<`հƲ\x18\n<\x01C_^:e;|h<\x0c\x0e=<\x7f&@\x1aa<50\x01\\0FR n=$;I\x12[p\x13\x1e+\x05:L@=/`i<Ӏ=}G`μ|!\x17<\x19 <ݽd[/<\x0f#\x02\x00t=\x18}ټ\x0e=F2tS\x14OB,:ۆ<\x04\ueffb\x16.\x04=;uM<\x11<&8<Լ\x16J<<鎎B/g\x17Ȥ6<)\x12W<%+E;\x03\x04;5V=Bz;\x11plM*\r\x06]3okۼU\t\x1e=\x18<`\x08Z+;&BKF5Ț;G_0\x14=HdtTټ\r&< ;\x1alC=?=~\x11\x1f5ֻ\x13\x0f<&#I=Z`\tխ<$3e\x7f<&B;b\x1a[M|=";N=/`<$\x064p;;U<\x0bq9{x\x14M-;\x0c<ǀ9\x14\x05=\x0b\x18;\tH<1_܀;\x1be;\x02=ϼ\x1fH\x020=)9]ZŻ<\x15\x1dN<\x1dIX&;rZ=&%|!\x01^\x1b#=\x02wF\x15o:8ȼɽ=\x03V<\x03[=u&\x0cA^*fV\x1b5=ʻw-%="=:8*f\n\t<(dUN|;O\x19=\x18;"AR\x12"=m\x1a\x14V%5\x08=G\x05\x7f%<\x1a?˼\x0b=SvlǼ<;\x04YXw<;&<|&9\tr\x1f1;ۻ<\x16\'=o˼)Kq<|A;<;lM=}D\x08z&9Z$*x̶]r/T\u05fb\x06hPT=d%=h\x1c{R\t ƺya(\x11:=~䇻V\x06;VgOn9=(d:Ԓ(+9\x06k\x00Q?a=ju\x1c\x1f=*\x15\x10\x16\x15<\nzw\x0ef==49Az/-Tҭ< M[<\x01<]0r<\'o\x07&\x13\x0c)Aub=?aȺ)A\x07ΫSoPpM[=8xJ<\x10<7\x1a<^;t쏼sk<ݼ\x13DO=I\x11=L\x0c<\x12=x=\n-<<<*\x1bb|=(8\x0f<6<\\;f?=\x04=\x05i\x15Ol;\nz8P^^0*\t4E;,\x140VB\n>= ۻ;\x15=?\x19;+qX=ą%T=\x02:Ģ<\x14SQ;]<}\x05\x0fW47|\'=gAE*:ϘO p="<_\x0f=\x1d\x07=n<8g\x1d:\x13\x18<\x00\x05Ik\nv\x05=ż\x1f\x0c<~\u07bbBkHD;ta:L4\x14\t\x1cO<\x17\x003\x1a\x1d7\x01>.\neY*=N=I\x05\u05fa+\tV9m\\<<[<Сn\x1d<\x03\x06%\x13<@=\x03<\r\x0eNq}\'\x1bw^N=>aP=鄒`US\x1dSL\x1eh\x14;\\<\x02LXJUV?8ɥ<~ϟ<\x17=Xb;0\t\x15i\x1b= u!;\x10<%|\x1b\x1d\x00;\x14=\'^jA <8!1鄒Y\x1cdu}<% \x126p#&S=" \x12=\x14\x109; ;W(Ӽ̢;;Z0<>9KY\x15v\x0ci7ۆμ\x11\x0c=12?)7dVerjռ/6A7\x19<"R6;<=z\x1dS;\x15t9s<;ּlihizL\t\x0e\x01x<͝Ҽ\x11\x7f:\\|Fϭ\x1e漵J=eY*=<\uef04_;\x14\x17=i7 u<|s\x1d=̢<_\x0f=\x141\x11=:\x14":8Rfo;\x15}sg\x0e$<\nm\x00\x10=m!;B\x11<\x17\x06=0GJ;bb9Vh\x06"\x1d=\x1fA;\x03⼹(=\x0cGp@<^1\x15Qs`y;Z\x02=\x19=\x1d\x04=<ب1=9즺Y,Kܾ\x0f=<&\u07bb\x03=\x11\x1f\x13\x1a;6,\x0fo\x08;O\x12~\x10:\tH=\x14G=X\x02\x18"\x0bm,?CB)=e<\nֺ<\x07ft<\x1f\x16<-ʌ=;-\x14\x04;TC:\x1deʼZ;\'kڼ}NP\'+=;i"D\x04Dq;\x0fo=\x1eWuc!㼝\x13;1$%;O\x04=\x1b\x07=`;:;e<\r\x15ؼs\x05M\x02vB=\t#<֝B<7F\'l>:\x00\x0c=z!=NW=̼\x12<\x12I=e˽¼OU\x1b=;\x1cB"=C=ӻ>\x04vS; \x1a73E^<}Չ<$]?u(=\x0b1\x13\x1f&W*+ +c=κZ;tI\x04=;,<}\t;qĊ;\x0fI\\=\x051o2⻌R\x05=\'kڼ"I\'\x13<\x1f=f\x04=S=\xa0\n\n\n\n\n\n\n\n\n Frequently Asked Questions \n\n\n\n\nWhen your student comes to Duke, there are always questions about university life, including selecting the best dining plan. To help select the right dining plan for your student\'s needs, check out the plans described in the "Plan Profiles" section above.\n\nIf you have questions, contact Duke Dining\xa0at 919-660-3900 or\xa0[dining@duke.edu](mailto:dining@duke.edu).\n\n**How does the First-Year Dining Plan work?**\n\nThe First-Year Dining Plan is designed to enhance the \nundergraduate experience. Centered around Marketplace, the main East Campus dining facility, the First-Year Dining Plan provides a wide range of choices and fosters a sense of community through dining.\n\n-BOARD PLAN: Students receive 14 meals per week for dining at Marketplace as follows: \n-5 breakfast meals (1 per day, Monday-Friday) \n-7 dinner meals (1 per day) \n-2 brunch meals (1 per day on Saturday & Sunday) \n-All other meals are purchased by way of Food Points and can be used at any on-campus location,\xa0 Merchants-On-Points (MOPs) vendor, food truck vendor, mobile-ordering, or campus convenience stores.\n\n-If a breakfast meal is missed at Marketplace students may still utilize that meal at The Skillet (Brodhead Center) by 2pm, at Trinity Café from 8:00am-12pm, or for lunch at Marketplace from 11:30am-2:00pm. The swipe equivalency amount is $5.70 and anything over $5.70 will automatically be deducted from the student’s Food Points.', 'ref_doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d28b1dee-0129-4bff-aa4b-713d1852ad80', 'payload': None, 'score': 19.888226658218823, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '81625', 'document_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', '_node_content': '{"id_": "d28b1dee-0129-4bff-aa4b-713d1852ad80", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4b7d8b1e-ea97-4931-9d28-4f74876bafc0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "06d84dfad93dc9440c05a73eecc088556df596178b7b4c3735ddd6cf91a1abea", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b9804bb2-aed2-4e49-8177-a1042b494e41", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "ab6de2f8d496838bc4d558fab517f7136b2dab6b3a3bbbade681d455f1e01718", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43aa2b93-9f7d-442d-b104-cd44eb2584e4", "node_type": "1", "metadata": {}, "hash": "2822754110ae2cd497d63424e85ca2d3e1d42008c583c1b1eccae8d784c2a4a0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2882, "end_char_idx": 6756, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', 'vector': '&ރ%\x07gX\x7f|UCߙb<\n \x02\x17S<)=b\x11Iǀ!\x0c=M;>\n=Ӓ\x02+ î\r{ȼ\x10<]<+=<\x1cMw6\x1d<\x0c<\x03="<&\x03<\x08\x1cN\x11);Ct;\x02ma5\x18;(.;,9;:ޱ&=H:)\x06\x06@wJ\x03\x7fɦ\x14gu\x08<)v=ˍs\x0b=\x1b<\r_Ly;\n\x02|;y<\x12"=).<\x1c%=0l/K;\x1d=BB5t:;<\x18\x0e\x13=4z05\x0fj\x13\x14\x0e+F=y\x19l\x0f=yHg9\r\x1c\x1a=ѭ\x1c<(@\x08:\x08\x0f<\t4\x02V<\x1aOxN~/u1\x17GZ\x12g\x1f\r_=GF~g9C\x04f\n^#\x0e\x188TQ`a5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհa5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհ<\x08,g=Dd;b\x18=\x06a\x13żzv8\x15\x10"=k\x1a=h|r\uf500hٽ\'=+;Cs\x15\x12R\x07=>=Z03;\x06=\x15F=\x11=\x0b<\x13-)7\x1e|;Cw\x16\t8\x11~=\',<\x1c~ؼZ03\x05t8;\x18=5"<+\x11#Qf<)\u07fbrX`z\x0cGp@<^1\x15Qs`y;Z\x02=\x19=\x1d\x04=<ب1=9즺Y,Kܾ\x0f=<&\u07bb\x03=\x11\x1f\x13\x1a;6,\x0fo\x08;O\x12~\x10:\tH=\x14G=X\x02\x18"\x0bm,?CB)=e<\nֺ<\x07ft<\x1f\x16<-ʌ=;-\x14\x04;TC:\x1deʼZ;\'kڼ}NP\'+=;i"D\x04Dq;\x0fo=\x1eWuc!㼝\x13;1$%;O\x04=\x1b\x07=`;:;e<\r\x15ؼs\x05M\x02vB=\t#<֝B<7F\'l>:\x00\x0c=z!=NW=̼\x12<\x12I=e˽¼OU\x1b=;\x1cB"=C=ӻ>\x04vS; \x1a73E^<}Չ<$]?u(=\x0b1\x13\x1f&W*+ +c=κZ;tI\x04=;,<}\t;qĊ;\x0fI\\=\x051o2⻌R\x05=\'kڼ"I\'\x13<\x1f=f\x04=S=\xa0\n\n\n\n\n\n\n\n\n Frequently Asked Questions \n\n\n\n\nWhen your student comes to Duke, there are always questions about university life, including selecting the best dining plan. To help select the right dining plan for your student\'s needs, check out the plans described in the "Plan Profiles" section above.\n\nIf you have questions, contact Duke Dining\xa0at 919-660-3900 or\xa0[dining@duke.edu](mailto:dining@duke.edu).\n\n**How does the First-Year Dining Plan work?**\n\nThe First-Year Dining Plan is designed to enhance the \nundergraduate experience. Centered around Marketplace, the main East Campus dining facility, the First-Year Dining Plan provides a wide range of choices and fosters a sense of community through dining.\n\n-BOARD PLAN: Students receive 14 meals per week for dining at Marketplace as follows: \n-5 breakfast meals (1 per day, Monday-Friday) \n-7 dinner meals (1 per day) \n-2 brunch meals (1 per day on Saturday & Sunday) \n-All other meals are purchased by way of Food Points and can be used at any on-campus location,\xa0 Merchants-On-Points (MOPs) vendor, food truck vendor, mobile-ordering, or campus convenience stores.\n\n-If a breakfast meal is missed at Marketplace students may still utilize that meal at The Skillet (Brodhead Center) by 2pm, at Trinity Café from 8:00am-12pm, or for lunch at Marketplace from 11:30am-2:00pm. The swipe equivalency amount is $5.70 and anything over $5.70 will automatically be deducted from the student’s Food Points.', 'ref_doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d28b1dee-0129-4bff-aa4b-713d1852ad80', 'payload': None, 'score': 19.888226658218823, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '81625', 'document_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', '_node_content': '{"id_": "d28b1dee-0129-4bff-aa4b-713d1852ad80", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4b7d8b1e-ea97-4931-9d28-4f74876bafc0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "06d84dfad93dc9440c05a73eecc088556df596178b7b4c3735ddd6cf91a1abea", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b9804bb2-aed2-4e49-8177-a1042b494e41", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "ab6de2f8d496838bc4d558fab517f7136b2dab6b3a3bbbade681d455f1e01718", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43aa2b93-9f7d-442d-b104-cd44eb2584e4", "node_type": "1", "metadata": {}, "hash": "2822754110ae2cd497d63424e85ca2d3e1d42008c583c1b1eccae8d784c2a4a0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2882, "end_char_idx": 6756, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', 'vector': '&ރ%\x07gX\x7f|UCߙb<\n \x02\x17S<)=b\x11Iǀ!\x0c=M;>\n=Ӓ\x02+ î\r{ȼ\x10<]<+=<\x1cMw6\x1d<\x0c<\x03="<&\x03<\x08\x1cN\x11);Ct;\x02ma5\x18;(.;,9;:ޱ&=H:)\x06\x06@wJ\x03\x7fɦ\x14gu\x08<)v=ˍs\x0b=\x1b<\r_Ly;\n\x02|;y<\x12"=).<\x1c%=0l/K;\x1d=BB5t:;<\x18\x0e\x13=4z05\x0fj\x13\x14\x0e+F=y\x19l\x0f=yHg9\r\x1c\x1a=ѭ\x1c<(@\x08:\x08\x0f<\t4\x02V<\x1aOxN~/u1\x17GZ\x12g\x1f\r_=GF~g9C\x04f\n^#\x0e\x188TQ`a5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհa5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհ<\x08,g=Dd;b\x18=\x06a\x13żzv8\x15\x10"=k\x1a=h|r\uf500hٽ\'=+;Cs\x15\x12R\x07=>=Z03;\x06=\x15F=\x11=\x0b<\x13-)7\x1e|;Cw\x16\t8\x11~=\',<\x1c~ؼZ03\x05t8;\x18=5"<+\x11#Qf<)\u07fbrX`z\x0cGp@<^1\x15Qs`y;Z\x02=\x19=\x1d\x04=<ب1=9즺Y,Kܾ\x0f=<&\u07bb\x03=\x11\x1f\x13\x1a;6,\x0fo\x08;O\x12~\x10:\tH=\x14G=X\x02\x18"\x0bm,?CB)=e<\nֺ<\x07ft<\x1f\x16<-ʌ=;-\x14\x04;TC:\x1deʼZ;\'kڼ}NP\'+=;i"D\x04Dq;\x0fo=\x1eWuc!㼝\x13;1$%;O\x04=\x1b\x07=`;:;e<\r\x15ؼs\x05M\x02vB=\t#<֝B<7F\'l>:\x00\x0c=z!=NW=̼\x12<\x12I=e˽¼OU\x1b=;\x1cB"=C=ӻ>\x04vS; \x1a73E^<}Չ<$]?u(=\x0b1\x13\x1f&W*+ +c=κZ;tI\x04=;,<}\t;qĊ;\x0fI\\=\x051o2⻌R\x05=\'kڼ"I\'\x13<\x1f=f\x04=S=\xa0\n\n\n\n\n\n\n\n\n Frequently Asked Questions \n\n\n\n\nWhen your student comes to Duke, there are always questions about university life, including selecting the best dining plan. To help select the right dining plan for your student\'s needs, check out the plans described in the "Plan Profiles" section above.\n\nIf you have questions, contact Duke Dining\xa0at 919-660-3900 or\xa0[dining@duke.edu](mailto:dining@duke.edu).\n\n**How does the First-Year Dining Plan work?**\n\nThe First-Year Dining Plan is designed to enhance the \nundergraduate experience. Centered around Marketplace, the main East Campus dining facility, the First-Year Dining Plan provides a wide range of choices and fosters a sense of community through dining.\n\n-BOARD PLAN: Students receive 14 meals per week for dining at Marketplace as follows: \n-5 breakfast meals (1 per day, Monday-Friday) \n-7 dinner meals (1 per day) \n-2 brunch meals (1 per day on Saturday & Sunday) \n-All other meals are purchased by way of Food Points and can be used at any on-campus location,\xa0 Merchants-On-Points (MOPs) vendor, food truck vendor, mobile-ordering, or campus convenience stores.\n\n-If a breakfast meal is missed at Marketplace students may still utilize that meal at The Skillet (Brodhead Center) by 2pm, at Trinity Café from 8:00am-12pm, or for lunch at Marketplace from 11:30am-2:00pm. The swipe equivalency amount is $5.70 and anything over $5.70 will automatically be deducted from the student’s Food Points.', 'ref_doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:2c813ef2-1ed8-4558-b18f-89fedc3d3274', 'payload': None, 'score': 2.0756907598999947, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "2c813ef2-1ed8-4558-b18f-89fedc3d3274", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f5e841c8-6256-43a8-901d-c0d4234f8fcf", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "130d294014a149d55a54024eaaa6a38c80d7d0babdc5f27e0cf770feffe526cf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "26b4046f-af39-4559-b5e6-4e44ba9a2a8a", "node_type": "1", "metadata": {}, "hash": "475a8e4fb47bce20b46f774d4b7e7ad17d5334e604823984173f6866adb25470", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2210964, "end_char_idx": 2215420, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'J;z,^cA\x7f\n\x1e}\x02\x12;X0>V<\x17|M=&[\x1d#<6]1<\x0e@\x00;Ž훐\x07\\\x08\U000decbc>\x12\x18Y<<;ļ\x02\x02oq\x1e9:=h("<\x10*㼿Wʻ<\x17=-E\x06=^\x1b<8#*==ȂF\x7f!}GBP\x1eη}7\x07ri=C\x0e:N2Q\x1ag鼌\x0ff=!@<7-=J\x0ceM;YOI7;\\\x10=Uf}-Ո<.`m\x04<\x01/ݍԼ\x11\x1d$-ky\x1b\x0fm\x10\x14XtӼֽi;$<{;r<8LX,w|Ed<%-;$%\x15U<8#*D]\x17c\nʺ;\x03o-=&;A鳍ݼ\x0c\x17<{~=x\x00n<`q\x17=}jbL\x07=C=\x151\x08\x02mj\x12=B;I=D?,\x08<:&\x1c=D\x1a"R:z\x12a$= Qq:4=\x11\x15=ļQ<\r<\rA<= =[\x17\x0coa<\x13=dXةP=@X\x142=R<\x10Q=\x1f<<<Ä=Yt\x02\t5hK<ȼμhD#Nj6/z6;&*3b<\rAGʐ:ɣ\x0e\x17=', 'text': '(Bryan Center)\n\n# Marketplace\n\nFeatures an all-you-care-to-eat breakfast, dinner, and weekend brunch, a-la-carte weekday lunch, and late-night dining. Options include hot and cold breakfast items, made-to-order pasta, rotisserie meats, gourmet pizzas, ethnic cuisine, a full grill menu, and a gourmet salad bar. (660-3935; East Union)\n\n# McDonald’s\n\nOpen twenty-four hours a day, seven days a week. (668-2404; Bryan Center)\n\n# Nasher Museum Café\n\nThis sit-down restaurant serves a variety of locally grown and organic dishes, as well as upscale desserts and cappuccino-style beverages. (684-6032; Nasher Museum of Art)\n\n# Panda Express\n\nTraditional Chinese favorites served fresh and quick (660-5080; Bryan Center)\n\n# Pitchfork Provisions\n\nThis cafe, which is open twenty-four hours a day, offers a variety of fresh, eclectic fare. (684-3287; McClendon Tower)\n\n# Red Mango Café\n\nOffers smoothies, fresh-cut fruit, grab-and-go options, and salads and sandwiches that compliment a student’s healthy lifestyle. (660-3987; Wilson Recreation Center)\n\n# Saladelia @ The Perk\n\nWhere students can relax and enjoy fair trade, organic tea and locally roasted coffee with homemade desserts and pastries. Also serving healthy signature sandwiches, wraps, salads, and soups. (684-2049; Bostock Library)\n\n# Saladelia Cafe @ Sanford\n\nServes made-to-order sandwiches, fresh salads, gourmet soups, and specialty pastries. (613-7304; Sanford Institute of Public Policy)\n\n# Sazón\n\nThis Latin American table brings true, authentic Latin American cuisine to the Brodhead Center, offering made-to-order arepas, tortillas, and bowls created with only the freshest ingredients. (Brodhead Center)\n\n# The Skillet\n\nUpscale Southern cuisine celebrating a rich tradition of home-style cooking with the best fried chicken and biscuits, ever! (Brodhead Center)\n\n# Sprout\n\nThe Raw Food Movement is now at Duke! Sprout will be sure to please any palate with vegetables ruling the tastes at this 100% vegan-inspired venue, including produce from the Duke Campus Farm. (Brodhead Center)\n\n# Tandoor\n\nEnticing Indian foods, authentic flavors and preparation, including house-made naan, without having to travel the globe, prepared in real Tandoor ovens. (Brodhead Center)\n\n# Terrace Café\n\nEnjoy freshly made sandwiches and salads, ice cream bars, gourmet baked treats, and hot and cold beverages. (660-3957; Duke Gardens)\n\n# Trinity Café\n\nThis East Campus coffee bar serves gourmet coffees, smoothies, and fresh pastries. Light entrees, including salads, sandwiches, and sushi are also available. (660-3942; East Union)\n\n# Twinnie’s\n\nThis Irish pub offers hot out-of-the-oven breakfast pastries, made-to-order sandwiches, and fresh entrée salads in addition to its beer on tap and classic blends of coffee. (660-3944; CIEMAS)\n\n# Merchants-on-Points\n\nMerchants-on-Points allow students to use food points or their FLEX account to order from a variety of vendors, delivered right to campus from local off-campus restaurants. Merchants-on-Points restaurants deliver to Duke seven days a week.\n\nCurrent Merchants-on-Points vendors (subject to change) include:\n\nDevil’s Pizzeria\nEnzo’s Pizza Co.\nJimmy John’s\nMediTerra Grill\nNaan Stop\nSake Bomb\nSushi Love\nVine Sushi\nZweli’s\n\n# Food Trucks\n\nFood points can also be used for food trucks. Food trucks are located throughout campus Monday through Thursday to provide even more dining options. The calendar can be viewed at https://studentaffairs.duke.edu/dining.\n\nList subject to change. Visit the Duke Dining website for updated Merchants-on-Points and food truck vendors.\n\n# Special Diets\n\nDuke wants students to feel comfortable with their dining options and will help identify foods available on campus that fit into their diet.\n\nToni Apadula, a registered dietician on staff, has specific training on all aspects of nutrition and is available to meet with students\n---\nUpon request.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d28b1dee-0129-4bff-aa4b-713d1852ad80', 'payload': None, 'score': 2.0176461827178516, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '81625', 'document_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', '_node_content': '{"id_": "d28b1dee-0129-4bff-aa4b-713d1852ad80", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4b7d8b1e-ea97-4931-9d28-4f74876bafc0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "06d84dfad93dc9440c05a73eecc088556df596178b7b4c3735ddd6cf91a1abea", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b9804bb2-aed2-4e49-8177-a1042b494e41", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "ab6de2f8d496838bc4d558fab517f7136b2dab6b3a3bbbade681d455f1e01718", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43aa2b93-9f7d-442d-b104-cd44eb2584e4", "node_type": "1", "metadata": {}, "hash": "2822754110ae2cd497d63424e85ca2d3e1d42008c583c1b1eccae8d784c2a4a0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2882, "end_char_idx": 6756, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', 'vector': '&ރ%\x07gX\x7f|UCߙb<\n \x02\x17S<)=b\x11Iǀ!\x0c=M;>\n=Ӓ\x02+ î\r{ȼ\x10<]<+=<\x1cMw6\x1d<\x0c<\x03="<&\x03<\x08\x1cN\x11);Ct;\x02ma5\x18;(.;,9;:ޱ&=H:)\x06\x06@wJ\x03\x7fɦ\x14gu\x08<)v=ˍs\x0b=\x1b<\r_Ly;\n\x02|;y<\x12"=).<\x1c%=0l/K;\x1d=BB5t:;<\x18\x0e\x13=4z05\x0fj\x13\x14\x0e+F=y\x19l\x0f=yHg9\r\x1c\x1a=ѭ\x1c<(@\x08:\x08\x0f<\t4\x02V<\x1aOxN~/u1\x17GZ\x12g\x1f\r_=GF~g9C\x04f\n^#\x0e\x188TQ`zϔp<\x04\x0eP=t\x0f=\x07V<-0\x107\x06G\\^k˾\x0eX<<7<\x0cݼ&<;#%=㼦a\tl㱼\x13Ҽw\x181#Z<ȃ=\x17\x0b%\x0c(.=\x05;#%\x7f\x1eV,t\uf2bc\x17Ļ8\r\x00\x07\x03<\x0be\x1a<^q\x06\x00K\x088.)\x07U<ދAټpt7:\x02e<0=\x02<0VܻS\x18[<$p<\x10_G=+;-7B\x10\x00\x16﮺\x0b+<\tz$pA(}0/ٴw<\x03@$\x1dd=\nT<;!r=*\x12\x1cnV_ux4;L=(}0\r\x16=7;\x11?=JO<\x03=\x01\x03״\x03̶(:$7<9\x15GH<\x06Hߡ`\x1d\x06\x12<(\'<80\r5Q\x19&}~\x06Zmu?b3\x00@T<>\x00.59-Cg\x03\\RJ\x0f=\x1d\x19\x04м8;#=', 'text': "To continue, the current distribution of meat-based to vegetable-based dishes available at each meal is approximately 30/30/30: 1/3 are meat dishes, 1/3 are “half-meat”, and 1/3 are “蔬菜“ or “vegetable dishes'' (whether this means vegan or vegetarian has not yet been determined). Although the distribution of meal options seems even, vegan and vegetarian students are unable to choose from— at most—two-thirds of the menu options, as reported by the amount of meat offerings by DKU Operations. The dining hall staff have mentioned that the styles of cooking used in campus dining use meat and animal products by default, and indeed many Chinese dishes use ingredients like chicken stock for flavor. However, there is certainly precedent for vegetarian diets in Asia, simple adjustments—such as a black-bean sauce instead of a pork sauce—are doable. Vegetarianism has a long history in China, with the invention of tofu, for example, over 2,000 years ago (Cao, D., 2018); this precedence and history could be nurtured at DKU. In the future, we hope to see the gradual increase of vegetarian and vegan options at DKU particularly for the sake of vegetarian and\n---\nvegan students, as well as DKU’s environmental and carbon footprint. The choices and correctly and systematically label food. To add, DKU should work immediate first steps toward this future goal would be to implement an with clubs and organizations within and outside of the DKU community to information program on a sustainable diet, as well as including at least one provide education on food sustainability. For example, the local Kunshan Yue plant-based protein per meal on campus. Feng Island Organic Farm can provide a potential collaboration in providing organic food items to DKU’s menu and aid in education campaigns about sustainability.\n\nFinally, we recommend the improvement of labeling. There have been several reported cases of mislabeling in the dining halls; for example, gluten-free labeling has been incorrect with dishes reportedly marked as gluten-free containing gluten, as well as reportedly vegan dishes still containing animal products such as egg. DKU should work to eliminate this harmful error by truly understanding the composition of dishes, as well as providing the necessary information or training for employees to answer to and accommodate a variety of diets. Additionally, conscientious labeling could be improved by marking meals on the menu that have low-carbon footprints or are sustainable choices. Universities, such as UCLA, have successfully implemented conscientious labeling to encourage students to make the sustainable choice in dining (UCLA Sustainability, 2023).\n\n# Conclusion\n\nDKU has yet to adopt a sustainable food policy to maintain sustainable food conscientiousness, so many additional steps should be taken to improve sustainability. It uses vendors from within the Chinese mainland to provide food service in compliance with DKU's food and dining standards. These standards take into consideration student health and the school's food budget. However, they do not seem to sufficiently take into account sustainability criteria and the variety of dietary preferences and needs among its community. Sustainability and dietary preferences should be balanced with affordability to cater to the entire student body. In the future, it is ideal for quantitative data on food procurement and menus, such as the amount of food locally sourced or the availability of vegetarian dining, to be collected. To obtain such data, we recommend DKU to set specific and feasible sustainability goals that will influence food-related decision making on campus. With set goals, we hope that DKU Operations will carefully consider food suppliers that align with such goals. Considerations regarding affordability, ability to accommodate dietary restrictions, and food variety should apply to both DKU’s sustainability goals and to the food supplier. DKU should inform students of the impacts of their dietary\n---\n101 102\n---\nDKU has made limited efforts to promote good waste management practices for all types of waste, namely residual, recyclable, food, and hazardous. These include clearly marking waste bins in both English and Chinese and strict waste management operations. However, DKU does not collect detailed information on waste production, such as by building or waste type. Generally, DKU generates approximately 10,000 kilograms of waste per month, resulting in a monthly per capita waste of 4.91 kilograms. When compared to other universities globally, DKU performs averagely.", 'ref_doc_id': 'f08f6039-d647-4f0b-9085-0b3ea6516e56', 'doc_id': 'f08f6039-d647-4f0b-9085-0b3ea6516e56', 'file_name': '2022-DKU-Sustainability-Report-FINAL-14.11.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2023/11/22095841/2022-DKU-Sustainability-Report-FINAL-14.11.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{24916 total, docs: [Document {'id': 'test_doc:d0115143-430e-4f6e-aef7-923890926e3c', 'payload': None, 'score': 101.0169851541303, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '112550', 'document_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', '_node_content': '{"id_": "d0115143-430e-4f6e-aef7-923890926e3c", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "hash": "0726ffc974b24f970bf6421bb51c3ade1de60edd796cf23d140f982f7c10de6e", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ab538701-256d-4eab-8f23-bc2b6ff6d2fa", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "hash": "dae3fb0c2d969c49b50eb5752ffc5029228f3af57c975ad492c0f38f4b03f58f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "705942d2-e4db-4a47-9d46-150d9de5cd08", "node_type": "1", "metadata": {}, "hash": "b7eace9b105576763f42d00293558e93727678f4acf348860de34c7fdd283cb5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6225, "end_char_idx": 10141, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', 'vector': '\'\x11<.#&=?e\x0c\x0e:\\vN9=;;\x04L=\x1b=;o;;gk=\x1b:2üWh3<"7O|11ȇ\x1e\x01=,=Z;$;y⼦\x16?nм\x17\x01>4\x11}=Q=f2C<\x06o\x191\x07)7}\x14Yi\x1bm<;\x7fԳl3:ӻ\u07bbK]]4+ae\x14^:\x13<\x1c\x1d/=\x01{\x7f;hټ\x14<-_\n=;N=6<\x1e8"-\x199,<\x04=_([ 4+\x05,Q%c=&=S;?Q\x00";=OGP<$\n;N%7\x1e=kG1u1Q\x10\x07=\x05u=\x1f:wgn\x1aY\ro<৵=<ͻ6=\x1d\nX<՞,><\\v+>;ȇ<|B˼Q\x12\x0bV{:!<Ǻdtμ<\x07FP8Ꜳ<<\x0b=o\nBT\t#\x1f{՜\x02)=([х;Q<)\x1aǻ\x1a\x02\x0c=/.\x05=;;*k\x02=Ɔ\x13<\x03,C7\x05y<%37L\x12\x03&F^N=\x16ĺ=b\x0f=h;\\ߡ;4\x11NI;\x03,2;,$;`;pltvd=5\x15F=\'dSlO*;\x06=W<\x0c\u0381\x1eiWX=<-\x0cR;\n\x0bƻXV\x19F\x03d>\n{\x14>\x0f㼒z^=Nz{=\x16<\x0eKjG_<谼\x15~q2<\x1eAF<&\x08l;"0X;s,=\x00ebȻ\x10=/\x03v*=Ժ<\x13Hf\n/\x03=&f;%=T@;;W<\\;\x7f>\'b_i;+]3E<\x06\x00\x0e>l=9ܻMJ=\x0e\x15\r>f\x1e;-\x1e\t;=t0he\'=\x17xż\x0b$ͼۧ\r,OdƘ<^\x1e~;\x14؏=0 **All courses** link.\n\nIf an instructor would like to continue making changes to a site, allow late submissions or other changes in their site, they can switch the site to be dictated by course participation dates instead of the default term dates. This is done within each site’s course settings. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354) on this process.\n\nIn addition, instructors may set within the course’s settings to ‘restrict students from viewing course after term/course end date’. By doing so, the instructor would retain access to the site but students would no longer be able to access the course at all. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269) on this process.\n\nNote: Sandbox & Collaboration sites are not dictated by the same controls by default as they are not associated with a specific term.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSetting up course site and content\n----------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nHow can I enable/disable a tool in the Course Navigation?\n\nOn your Canvas course site, there are some links (Home, Announcement, Modules, Grades, and DKU Library) enabled by default in the Course Navigation. But if you want to customize your Course Navigation by adding or removing links, you can\n\n1. Go to Settings in Course Navigation\n2. Select “Navigation”\n3. Drag and move the tool(s) you want to add or remove\n4. Click “Save”\n\n\xa0\n\nFor more details, please see [How do I manage Course Navigation links?](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-manage-Course-Navigation-links/ta-p/1020)\n\n\n\n\n\n\n\n\n\nShould I adjust the time zone in Canvas just like in Sakai?\n\nYes. All DKU users are recommended to change their **personal time zone preference** to China Time. See [this documentation](https://community.canvaslms.com/t5/Student-Guide/How-do-I-set-a-time-zone-in-my-user-account-as-a-student/ta-p/414) for detailed steps. All DKU courses use the China Time as the default time zone.\n\n\n\n\n\n\n\n\n\nHow can I copy over existing content in my previous Canvas sites to a new site?\n\nInstructors can copy content from an existing Canvas site to another including course settings, syllabus, assignments, modules, files, pages, discussions, quizzes, and question banks. You can also copy or adjust events and due dates. Student work cannot be copied over to the new course. Find out detailed instructions [here](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-copy-a-Canvas-course-into-a-new-course-shell/ta-p/712).', 'ref_doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c533cdc5-9ca9-4392-838a-416efcc47b89', 'payload': None, 'score': 81.23253071214191, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '417741', 'document_id': 'f4ece21d-8d06-40e7-a47a-297ff4d2cf02', '_node_content': '{"id_": "c533cdc5-9ca9-4392-838a-416efcc47b89", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f4ece21d-8d06-40e7-a47a-297ff4d2cf02", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "ddade1bcbfe7aaccdbc3b5146863be9efdcc4f12b4b4bafd131f8ed6ef19e3eb", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "896a8981-c39a-43b8-a50b-7d769ef500f6", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "3ee38770b0a269b83f5bd48fca6fad36d601082d6c68f0f9348d7c45748b08fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3fb6dee9-bad4-4058-a845-288ff4a1356a", "node_type": "1", "metadata": {}, "hash": "5a79b341b4a35ac8fd3dff0c2bbb3cf27a6cfe724a34804ba1c42913f9a75588", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 103547, "end_char_idx": 106536, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html', 'vector': '\'-Aۼ\x0f\'y?/6j༁|;q\r=\x161.=5aJ 6@zH:`\x1a\x0c=]<\x1c1H<5a<^!<]={2<\x02GwNrb`\x1a<\x1d\x03p\x7f=#C )R\u07fbz;/o\x13w\n\x10+s"l\x18B=/=T)ڼ\x12<\x1b(<ûJg\x8a"q\x18=O\x11ټ:\x03\x12=1\x033;\x17\x12\x19\x01Z;\x15=oX9\x0bM<\x1dP<4=,ۯ,<\x03\x18=(n:\x1a\x16h==\x10+sHK"Ȳa7"(@\x05<ϊ<\x13*\x15<`\x1a\x0c:;Sb<=Yky<\x0bF=\x18<\x11ԹF\t%~?\u07fcðli\x1a.W\x16y\x15M.\u074bƙhL\x00=\x19\x1bo\x03m<\tK\x17;ѻg\u07bc#=/<,=]e<\x00\tхd<5\u061c=NcQ<\x1d3<\x11\x1e\x04)2@μɑ(\x11K\x1c=-JP=T\x1bɖ#<\x18=;\r=\x03t;l<4\x1c\x1c\x03F<\x14\x11t<3젼F=S\x14;\x1d")hܹf.\x06\n\x13=̼\x0f+r}12\x132=J@dTJ\x05\x0e\x10b@};?X;M+ZD.\x06\x11\x0e9A\x1aչN!ۼ#=Գ-5=4ԃ(:\x18NH!\x1fPռ\x16\u0383G\x16=J<70<"f\x18Q=Kt<=\x1a =dU!<\x1e<\t\r\x1c\x15=J<8;g;*ɦ<9*yr=[\x02k=T\x13\\:\x1d=Vf<μs\u07bc]=Ⱥ"=Hճ;%\te<\x19\'c=S쁻 \x0fF^KD\x05hn@@Zbu=*\x01\x1f+ip;\x19kr\x04,U?<\x038G=pP;뻠S1X<Г<\x06lH\x06\x19k2ca:ּْ;ܼSeqP=K\x0f\x19\'\x1bۢ*\x18y\x0ex\u0383h@=\x17[L3h\x11\x05\x0f/ϼP\x04.\x7f>;,ٌ/+=\x07~\x0b<\x04^\x1aZ\x0bx&~D<\n/\x1c0:\x02<\x16\x18]\x12QDH]qX\x19;k`<\x10G=(<>6I<+X~;Y\x1d=]>;\r\x1cl\x1fDw\x0f<{Nsc\x1a\x06\x03$Z<%\teZs<,<\x05=fN=R\x03F=EUݼ9\x0f\x1e=\n}.^x<\t\r<\x08<9㡱=$|=\x08;bo\x06\x16\r<آ\t\x16<{zS㼠\x05i\x0b*\n=[G="\x1ew\x18=\x12ps+ĻZy \nSP\t)\x022=;RM(\x11<\t\x15t<\x1b_=;vY<1BFi\x1b=\x1f<\r5<6mW\x1bE=*=8<آ\x13\x01\'ޠ:;JD&=jX{Wܶ<<ƨ\x07Rϼ\x11!=\x01\x13\x1f;\x02=9n+&\n<<0{\x11мkh.=!L\x10<\x19\x0e nFQ=\x1dީ=\u0557;H\x1e\x7f\x04ּ\x0f==<\x113Swo{<,=%\t=sa\x19TH\x0e~<.B<\x7f=~z;FtkK:\x05,`\x0e꽼;\u0ad5u\x08w];ȼ\x0co:q<;m>\x1e+N}\x18<:2"=\x01!ϼ\x16<\r=\\ʊ<Ȑ\x0f\x10\x1f<\x7f.\x0bR<\x19-4z\n=\x06o\x15;B;=.\r<ڊ\x1bB;>k\x14̎ڼ\x05r{\x11<<آ\x13&竻OegF9%;<\x7f\'L\x1e0BFNI;<\x0c\x08<2;\x01QvY6üw<\x1a_˼NZS&<\x00?\x11y?\rwS<\x15a;WK\x022={W<=h\x08==Ҥ\x0f=\x1d\x19=\x12k$=t={):6*NY,7\u07fb\x7fm\x1bk=x\x17:BA=p<L\x19!ki=.ͷ:<<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nLibrary Spaces\n--------------\n\n \n\n\n\n\n\n\n\n\n\n General Rules \n\n\n\n\n\n Study Rooms & Team Rooms \n\n\n\n\n\n Functional Rooms \n\n\n\n\n\n Wind Finance Lab \n\n\n\n\n\n Multi-Media Booths \n\n\n\n\n\n\n Please follow the general guidelines below to use the Library spaces/rooms:\n\n1. **Open space seats and study rooms are on a first-come, first-served basis**. Please take your personal belongings with you when you need to leave for more than 30 minutes.\n2. Do not use personal belongings to occupy seats. The left items will be cleaned up by library staff and we will not be responsible for any loss.\n3. When using **functional rooms** or places with equipment, please send an email to [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn) to make a reservation, then go to the 1st floor service desk to exchange your ID card for a temporary key card after the reservation is approved. Each reservation is limited to 3 hours with additional 3 hours renewable. Course reservations will be given priority.\n4. Please **keep quiet** in open space, use team/seminar rooms for group discussions.\n5. **Telephone booths** on the 3rd and 4th floors are available for phone calls.\n6. If you need to move around furniture in a particular space, please return it to its original position when you leave.\n7. Please keep the environment clean and don’t litter.\n8. **No eating** **on the 3rd floor and 4th floors.**\n9. You can [check for space availability here](https://dukekunshan.emscloudservice.com/Web/BrowseForSpace.aspx#), but please note you cannot reserve rooms on this site.\n10. Contact to reserve classrooms.\n11. Follow any additional guidelines for other special spaces listed on this page.\n\n\xa0\xa0\xa0\xa0 \n\n\n\n\n\nStudy rooms are on a first-come, first-served basis, and we don’t make reservations. Reservation is required for events and classes in the team rooms.\n\n \n\n\n\n\n\n| **Study Rooms** | | |\n| --- | --- | --- |\n| **Floor** | **Room Number** | **How many people can fit in?** |\n| **2F** | 2103 | 2-3P |\n| 2109 | 2-3P |\n| 2111 | 2-3P |\n| 2117 | 2-3P |\n| 2119 | 2-3P |\n| **3F** | 3101 | 2-3P |\n| 3102 | 2-3P |\n| 3105 | 4-6P |\n| 3106 | 2-3P |\n| 3107 | 2-3P |\n| 3002 | 2-3P |\n| 3003 | 2-3P |\n| 3004 | 2-3P |\n| 3007 | 2-3P |\n| 3111 | 4-6P |\n| 3112 | 4-6P |\n| **4F** | 4101 | 2-3P |\n| 4112 | 4-6P |\n| 4113 | 2-3P |', 'ref_doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'doc_id': '14801b0a-322e-4a4d-b8d2-706cf94df741', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/library-spaces/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d6d27406-84ee-4f2e-8fe9-40d837477efc', 'payload': None, 'score': 8.034300961561675, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '156358', 'document_id': 'b921af15-be3d-4648-a832-9eff128b796a', '_node_content': '{"id_": "d6d27406-84ee-4f2e-8fe9-40d837477efc", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b921af15-be3d-4648-a832-9eff128b796a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "944bdda3371daca1284fd390ca0a29a9d73fc0764ea88d2c55fcc8bb495cf062", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f14b732-8c96-4cc7-aab4-34c23342640b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 156358, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html"}, "hash": "b811c1fef340a9b0e4ac9860aaf0bcb4eafbaec57628f2ce4f38eb3f1faa6f9a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36aec92c-b4af-4794-9536-0cf40ffc99bb", "node_type": "1", "metadata": {}, "hash": "9f61e90e3cf6222cad0453557dba29fa4656b2d87ad996c0b95a8bf1221add9a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 38850, "end_char_idx": 43900, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', 'vector': 'ꁽ\x18;ًL;;\n\x0bBXb\x07<\x10.\x1e=FB<1;Ҽ?\x17=\u197bwI|Q;\x12;{eRWŜLüY\x05=،<\x062ҴbEnYg\x17l$\x17\x13=ND1=\r!5"G<\x15\x0eD(!\nh\x1ab\x1d=\x0eV<\x07=h`\u07bc&=\n\x1bd=3u<\x1d;k[:\x04PО퐟\x1an(|<_:=7v<\x15aR\x00Ǒ\x0b<<<X=ԼbL=Bx<\x00f=jZr=\x0258r=<;fK?7)Q\x02\x7f<ܔo,:,\x19C;<;\x03\u05fc@To3\ru\x03=Vt\x02):s\x16=6\x06\x13V eRWVP;@?ޛ;+0;(\n?k%ڍ=*\x13<~ąw\r N\x07=;;ll\x14\x0b7)Q<;lI+"~\x15j\x06\x1e3=&+<@<¼v\x08̢BXg=\x0f=. P\x0c=^9=J<֡ٻ\x06\x172Ҵ:<8"9=!\n*9\x11oŻbLp8\x00\x01v=6b<;ll;RZ\x1e\x11\x00(=m?k%=Pp<', 'text': '* ***Time:*** *10:10-10:30 & 15:00-15:20*\n* ***Location:*** *LIB 3015 Tea House*\n\n \n\n\n\n#### A Brand-New Learning Resource Centre – Your Gateway to Learning\n\n*Xiaojia WU, Assistant College Librarian (System & Facilities), Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nIn this Poster, we invite you to step into the enchanting realm of the Learning Resource Centre, where the pursuit of knowledge has no bounds. Building a brand-new library is to build a knowledge palace for readers, thinkers, and dreamers alike. This poster provides a glimpse into the myriad treasures and opportunities that await you within these hallowed walls.\n\n1. Exploration: To embark on a journey through the vast expanse of literature. To discover books spanning genres, from timeless classics to cutting-edge research.\n2. Innovation: At the Learning Resource Centre, we embrace technology’s transformative power. You can dive into our digital resources, e-books, and interactive learning platforms.\n3. Community: A library is more than just books; it’s a vibrant community. You can attend workshops, book clubs, book fairs and lectures that foster intellectual growth and social connection.\n4. Empowerment: Knowledge is the key to empowerment. Highlights the various educational programs, information literacy instruction services, and career resources that are available at the Learning Resource Centre.\n\n \n\n\n\n#### Learning Support through LibGuides\n\n*Jane ZHANG, Reference Librarian, Beijing Normal University – Hong Kong Baptist University United International College Learning Resource Centre*\n\nAs a common practice among libraries, LRC makes program guides to help students of different programs to learn about library resources and services related to their study and research. The program guides enable us to further consolidate our collection to the requirements of program syllabi. Previously we stored program guides as PDF files on UIC’s Moodle – iSpace. With information from course-related books to databases to library services, a guide can be more than 10 pages long, and not very user-friendly. This summer, we officially move the guides to LibGuides. The platform provides us with more flexibility and possibility to present library resources. First, with the “page” function, the sections of the guide are more visible and the organization of the guide is straightforward to the users. Second, LibGuides allows us to add more functionalities for better user experience, including direct linking to the resources, the support of multimedia contents, adding notes or contents without disrupting the flow of reading. Furthermore, the guides are cross-referable, allowing the library to build a complete information literacy program to facilitate self-learning.\n\n \n\n\n\n#### Practices and Challenges in Academic Library Space Projects\n\n*Pin WANG, Team Leader of Library Operation Team in XEC, Xi’an Jiaotong-Liverpool University Library*\n\nThe poster looks at the practices and challenges in academic library space projects. It consists of 5 parts. The first part identifies the user activities in the library, such as collaborative learning, individual study, library classroom learning, socializing, events and exhibitions. The second part shows the functional spaces in the library, including learning commons, group study room, training room, reading pavilion, research commons, outdoor area, exhibition area, etc. The third part summarizes the most recommended practices of library space projects, including communication between librarians and users, frequent meetings with related departments, visits to other libraries to find out good designs, etc. The fourth part tells us the challenges and solutions, such as noise reduction, seat occupation and power outlets. The last part shows the future opportunities of academic library spaces. With the development of artificial intelligence and education reform, academic libraries are facing their challenges. In the future, the library should merge into the innovation ecosystem. Space innovation such as demand-driven and technology-supported labs to enhance user experience may be a very good start.\n\n \n\n\n\n#### Professional Excellence: A Library Assistant’s Growth Path\n\n*Cai YAN, Library Assistant, Duke Kunshan University Library*\n\nThis poster will share what professional qualities a library assistant should possess and how a new library assistant grows in the workplace.\n\n1. Learning by doing: This part will share some examples of how a library assistant learns from doing everyday work.\n2. New library, new challenge: Moving to the new library also brings about new challenges. This part will share the case of the DKU Faculty Works Project about how this display project turns from proposal to reality and the constant process of occurring and solving problems.\n3. The nurturing of leadership: This part will share some experiences in training and organizing student workers, thus shifting from the role of a follower to a leader.', 'ref_doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'doc_id': 'b921af15-be3d-4648-a832-9eff128b796a', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:75b0644f-1aa4-48e9-8944-0ad15f0edc50', 'payload': None, 'score': 4.472326396705618, 'document_id': 'index.html', '_node_content': '{"id_": "75b0644f-1aa4-48e9-8944-0ad15f0edc50", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "152dfeb0-eda7-4982-885e-b8bd274fd1aa", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c646a76d-1b42-402a-a04b-29eeefc6ee86", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x03c\x05?nTG\x13\x0f;1yӼR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 4.4723263967056175, 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 4.4723263967056175, 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{21581 total, docs: [Document {'id': 'test_doc:fcb633a2-6c05-48f0-b0d8-b87eb05e2719', 'payload': None, 'score': 53.320656670711976, 'emphasized_text_contents': '["How do I post grades for an assignment in the Gradebook?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "fcb633a2-6c05-48f0-b0d8-b87eb05e2719", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I post grades for an assignment in the Gradebook?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I post grades for an assignment in the Gradebook?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-d/o-I-post-grades-for-an-assignment-in-the-Gradebook/ta-p/576", "filename": "index.html", "filetype": "text/html"}, "hash": "bc2dc66bd93e299e4dcf6414557cf0c2890f4571f325a582c3a27cc0c948178d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d84c961e-ee7f-40d8-bd3d-321747a981be", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I post grades for an assignment in the Gradebook?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "b5b606ef39068b3c54fb329302bfcf81f47af11bb50cdb389a8ac7a130d0109e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "374c9cc1-ba3f-4510-a77f-2aac67da0a33", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x17=\x18[\x19/\U00044f0b9F9;̼$\t\x18=="hɔR~<<&?q<<<Ѵ;;L[`;\x1b<\x0e\x10v\x1c;Nu=J=hհ<\x0b=o(=9<=ػ>\x17Ƌ4\x17<4\r\x007p=\x18[;\x1a=\x1d<\x06⯺\r9/=S\'\x14/`;d\x00=\x14)FEҝ\t=E<=\x1fس<^M|ԼV\x07:\x19-t;\\@\x0b\x1bAO<;5(\x7fb<\\=\x07\x0c<.\x08=|\nbϼ6*;\x1bҼz\x0b:3Xޜ]%N,\x1c<\x1cg=I˼@U<?ۼ\x00a;`:=;启=Oo\x01D6*Ļ6\x12:\x11\x00~\x12n=xF <[Qau\x1b&\x0e=dɺ\x12<@M\x19=:;=ЍI\x05ȱfQT`"\x0b¡mG<\t>jCз<\te=;fz\x16<=<;\'<\x15;e=pQ\x16=(\x02=\x19\x032:]\x14K\x1e;S̔\x13\x1e\r<8p\x03;*;.\x1e):p\x01=o<\x13.4G\x15=\x132=\x02-p\x11<<\r=3p\t=\x13\x13&zw3=O\u05fc_z<鎌Wz(<-pE<\x06\x14\x13R(`2G়֟<\x086zz\x1b\rM=f\x02pżo(^Q\u07fc%=ˈ.;kG:W\u07fc\x17]\x15=w=@w҃\x017=\x15ֻP=C?\x131;=">.\n7f`;=\x1b\x07;P\x10=١~j$l,ć;$\x15\t(\x01SgQ<=DUv\x1d\x7f=\x018ͻl.@<ϲ=T\x9a5;\x01ϩo<\x0e=`=Ѽ8+=ԉ=4#L[5=jɛ;;d<\x12(ļQ\tIN\x7fb=p3/L<\t%۸=kp4\x08@PWDJ&=z<\x05\x1f=25:\x12m<\x03Qt+(FQÔ\x00<2J]\x0e\x1c<\x12&;EA=\nhi\x13<ƹ=5W!:C<\x19rgl\r7\r<,>\x03;ΌN\x08M<ڻ\x18.=o{=?;j"u\x0b\x17;̇;\x144=7\x04zC\x10=\x15ϼތ<\x1f\x0c#=tKF!T};\x00\x0cĂ\x05Aм\x15\x03|\x07<)II\x17v!<\x07Fg@*6;c<\\;0\x03=\x07[8=S<\x1dW<7ekpuH\x1e<\x02<Lۻ\x07[80=\x0b4#\x03H<"i1÷IN\x08ͻ\x08G=!㼭i+D\x07j\x1f<=\x0c\x15UL\r\u05eb[\x07l&+I=:M\x1f\x06eV\x1c;>=(#\'ؼ\x1f<:\x17:e\t<ӡ\x12Y2;>!ci\x16F=ϔ\r\x0e<\x0fӛT=5)\x06=\rl$¼\x0f=<#;l&=tK=H{=0$\x13\x18[\x13a<<<\nN\x05\ueea0<_Q\x18:IHr="<3<)=z\x06];Tr\x1c_=!\x14<', 'text': 'Settings\n\n* [How do I use course settings?](/t5/Instructor-Guide/How-do-I-use-course-settings/ta-p/1267)\n* [How do I set details for a course?](/t5/Instructor-Guide/How-do-I-set-details-for-a-course/ta-p/1037)\n* [How do I change a course name and course code?](/t5/Instructor-Guide/How-do-I-change-a-course-name-and-course-code/ta-p/1234)\n* [How do I add an image to a course card in the Dashboard?](/t5/Instructor-Guide/How-do-I-add-an-image-to-a-course-card-in-the-Dashboard/ta-p/624)\n* [How do I set a time zone for a course?](/t5/Instructor-Guide/How-do-I-set-a-time-zone-for-a-course/ta-p/1295)\n* [How do I change the start and end dates for a course?](/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354)\n* [How do I restrict student access to a course before or after the course dates?](/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269)\n* [How do I change the language preference for a course?](/t5/Instructor-Guide/How-do-I-change-the-language-preference-for-a-course/ta-p/1246)\n* [How do I enable SpeedGrader to launch filtered by student group?](/t5/Instructor-Guide/How-do-I-enable-SpeedGrader-to-launch-filtered-by-student-group/ta-p/947)\n* [How do I enable a grading scheme for a course?](/t5/Instructor-Guide/How-do-I-enable-a-grading-scheme-for-a-course/ta-p/1042)\n* [How do I use grading schemes in a course?](/t5/Instructor-Guide/How-do-I-use-grading-schemes-in-a-course/ta-p/870)\n* [How do I view and manage grading schemes in a course?](/t5/Instructor-Guide/How-do-I-view-and-manage-grading-schemes-in-a-course/ta-p/1188)\n* [How do I add a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-add-a-grading-scheme-in-a-course/ta-p/1054)\n* [How do I duplicate a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-duplicate-a-grading-scheme-in-a-course/ta-p/601384)\n* [How do I edit a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-edit-a-grading-scheme-in-a-course/ta-p/601385)\n* [How do I archive a grading scheme in a course?](/t5/Instructor-Guide/How-do-I-archive-a-grading-scheme-in-a-course/ta-p/601386)\n* [How do I customize visibility options for a course?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-a-course/ta-p/844)\n* [How do I customize visibility options for course content?](/t5/Instructor-Guide/How-do-I-customize-visibility-options-for-course-content/ta-p/814)\n* [How do I set a Creative Commons license for a course?](/t5/Instructor-Guide/How-do-I-set-a-Creative-Commons-license-for-a-course/ta-p/1059)\n* [How do I include a course in the Public Course Index?](/t5/Instructor-Guide/How-do-I-include-a-course-in-the-Public-Course-Index/ta-p/812)\n* [How do I set a course format?](/t5/Instructor-Guide/How-do-I-set-a-course-format/ta-p/1089)\n* [How do I change the format of a course ePub export file?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'filename': 'index.html', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'emphasized_text_tags': '["span"]', 'filetype': 'text/html', 'category_depth': '1', '_node_type': 'TextNode'}, Document {'id': 'test_doc:5de98e40-d933-49c2-90eb-c286525861b1', 'payload': None, 'score': 53.320656670711955, 'emphasized_text_contents': '["How do I manage my Canvas notification settings as an instructor?"]', 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "5de98e40-d933-49c2-90eb-c286525861b1", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-manag/e-my-Canvas-notification-settings-as-an-instructor/ta-p/1222", "filename": "index.html", "filetype": "text/html"}, "hash": "3d1a042c6d4a1bae721210c0a10127a1615064bd928e2854d5b7c96e2e2f1134", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16302703-378c-45c0-9106-9ad07470f8e3", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 1, "emphasized_text_contents": "[\\"How do I manage my Canvas notification settings as an instructor?\\"]", "emphasized_text_tags": "[\\"span\\"]"}, "hash": "860beb54725152d1658bbd2172b5f691ae88263f5cc891530405e4e0ab8b697e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b26b7f66-993d-49e0-894f-a130d7cd1140", "node_type": "1", "metadata": {}, "hash": "4e949fcbf30f95e615ab6d3a7b593bc4770a570260d549e0473c357c6d465b6b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'k\x0fpB\x15\r\x11\x1d;uYº\x02\x06Bd<\x15;I\t\x7f\x03=U1[}:iKW\x1e=\x0e;{n伢ږ< .\x1eF<\x1260=8ahP\x12<\x0cļW=<=%\x07=kP<>6(=,;*Cܻ@\x03*|ӓ7<\x19\x13\x00=B\x0cZ;MW=\x07\x0bL=\x1dg<\x02\x04<\x12\x1f\x1a\x1e=ڟ\x7fK\x16=\x01I\x1f<\x19\x04q=9Y@p#T`:,q;`%\x14ԡ=R2,\x17;\';)] <.\x1e\x00=4eȻ:;\x12wnʀI*`L9Q+K<\x1c<8=\x14w\x01ؼ\x11=\x1cL=(\x13t!r<*\x13\t=\x15Rh<\x06\x0e=ɱ8}<9N[<\x00=\x1cU:d$N\x13\x1bRh9W<<\x12\x1e;\x1e\x05H^{;!2=+\x1c#\x1dg\x19\x12n\x07"/y;R"缬\x19.\x1eN\\=\'VG\x11mm\ncg9\x1cL1=Ik\x1eA\x13R<\x11<\r,= \x07\x10<8qG\x03dCo\x16\x19\n\x08<\x11w`:=\x073;Y=T\x1a\U000bc5bdKH\x06f\x04NG\x1e<09p獜VX\x18H\x08;w#*\x16vLp,=7#\x15NR>=\x08\x02\x16=\x17H<\x08י;\x16Ƿj:2<1;=96Uʼ7;5λ4\x1bڼ(hk\x10]*=\\;Hi6<&hl=r};u\x03M=gM";7<\x18%=4\x1bZ<ȍU_Ӿm\x18=nC5\x1d;y4=sHe<*\x167˜U<\x08\x11y4\x04<\x0eU\x10ȹ֦;9m=V=-;\x16d1Cw:so;,s\x167=Y\x00:}<\r;HR}\x157;\x12WE<\x1aw?=h<( <;A^\x7f#<4b[=uϺ\x19h\x03&(\x10=9\x08\x1d\x1c\x14f\x173VY;\'\x1c#p=r<6f-^\x15֊5<َ):=Ӻ3;8[9\x1aY2;h\x12=碌J\tM\x15\x0cмSb<4\x1a<\x17H4bۻ\x7fd \x1b\x03\x12\x10\x12\x08=Hz<<$K\x0e\n4A#;o\x03=\t\u07fcG)<<\x14z\x06=vƶ뺭X;\x02;\x05GӼ\x0bm\x06\x1dU<{\x15̼\x05t\x0e\x1abK=>2\x08E:/?}@<\x19=\x1d\u07bb\x056=\x043=*6<\x17MQ=\x13+;|Ղ;O缚Tu{=0=tp\x0c=8n<)a\x7fou<\x0e==3Ox|\x08;C\x05=7\x1bڻ?Y?h<\n\'Q;Wg3<5<(|O?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 13.665268487780724, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;xOTJ=i%\x13\t,HFL:V-\x18\x02\x17>\x17=f=0!e\x1d=V-\x18=+#A.=\x08qARj% ҼU(\uf04d#E,< <,HFG\x17\x1a8ZxC8\x01bX2K<)\x14<8I;j{<9:<1\x08d;\x03m,=f\x19<\x1ce*;E=~xX2E\x06=[_<\x0fZ\rP\x1f]&z<%\x06+<Ճ_\x00*0=x\x15ܶb/Q<*\x18:qc<:\x15\x08\x00\x01Q\x12>$q=J"-=M%"\\jW\x14U;\x00Rs%<_Z<;\x1a\x12=h\x10(<\x0b\x00K\x15={l\x00=HɻlEs-g<*k;\x03=\x17ܼ\x7fk7\x17\x04\x08v\x03\x1cvz좼t\x1aB\x1b=Ͼ,\x04\x01;ƶokOcB=&?o=?]\x0e\x17=<\nǼ6]\x1fw=\x10\x1eGB\x1b=S>\x1c:F<\x18\x05·P\x11y\x1dbX2QԎN', 'text': 'Citizens of this community commit to reflect upon and uphold these principles in all academic and nonacademic endeavors, and to protect and promote a culture of integrity.\n\nTo uphold the Duke Community Standard:\n\n- I will not lie, cheat, or steal in my academic endeavors;\n- I will conduct myself honorably in all my endeavors; and\n- I will act if the Standard is compromised.\n\nIt is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe Reaffirmation\n\nUpon completion of each academic assignment, students may be expected to reaffirm the above commitment by signing this statement:\n\n“I have adhered to the Duke Community Standard in completing this assignment.”\n\n[Student Signature]\n\nDefinitions\n\nLying, Cheating (including plagiarism), Stealing. Definitions for these terms used in the Duke Community Standard appear at https://studentaffairs.duke.edu/conduct/z-policies/academic-dishonesty-0\n\nApplication of the Community Standard to the Master of Engineering Management Program\n\nThe Duke Community Standard encompasses both academic and nonacademic endeavors. The first part of the pledge focuses on academic endeavors and includes assignments (any work, required or volunteered, submitted for review and/or academic credit) and actions that are taken to complete assignments. It also includes activities associated with a student’s job search since the definition of lying includes “communicating untruths in order to gain an unfair academic or employment advantage.” Some of the aspects of academic endeavors as they apply to master of engineering management students are:\n\n- Group and Individual Work. Please note that in many classes there will be both group work and individual work. Students should be sure they are clear about what level of consultation or collaboration with others is allowed.\n- Studying from old exams, assignments and case studies. Many courses have case studies, exercises, or problems that have been used previously. Students should not use prior semesters’ work to prepare for an exam or assignment unless allowed by the instructor.\n- MEM Program suite, computer laboratory, library, meeting rooms, and other shared resources. There are numerous shared resources that are available to support a student’s studies. Use these so that they will remain in good shape and equally accessible for others.\n- Career Service Resources. Use these so that they will remain equally accessible for others and so that the MEM Program will remain in good standing with Career Services. Abide by Career Center policies found at https://studentaffairs.duke.edu/career/about-us/policies.\n- Implicit Reaffirmation. Some instructors may not require students to include the reaffirmation on every assignment. If the instructor does not require students to write the reaffirmation (“I have adhered to the Duke Community Standard in completing this assignment”) or it is omitted from the assignment, it is implicit that every assignment submitted was done in accordance with the Duke Community Standard.\n\nThe second part of the Duke Community Standard extends its reach to nonacademic activities undertaken while enrolled as a MEM student. Students are expected to observe:\n\n- all local, state, and federal laws and\n- to abide by Duke policies including university policies on discrimination, harassment (including sexual violence and other forms of sexual misconduct), domestic violence, dating violence, and stalking. Details for these may be found at\n- https://oie.duke.edu/knowledge-base/policies-statements-and-procedures and\n- https://studentaffairs.duke.edu/conduct/z-policies/student-sexual-misconduct-policy-dukes-commitment-title-ix.\n\nJurisdiction\n\n- The MEM Program may respond to any complaint of behavior that occurred within a student’s involvement in the MEM Program, from application to graduation. However, complaints of discrimination, harassment (including sexual harassment which, in turn, includes sexual violence and other forms of sexual misconduct), domestic violence, and stalking will be addressed under the Student Sexual Misconduct Policy (for misconduct by students) or the Policy on Prohibited Discrimination, Harassment, and Related Misconduct (for misconduct by employees or others).\n- Any MEM student is subject to disciplinary action. This includes students who have matriculated to, are currently enrolled in, are on leave from, or have been readmitted (following a dismissal) to programs of the university.\n- With the agreement of the vice president for student affairs and the dean of the Pratt School of Engineering, jurisdiction may be extended to a student who has graduated and is alleged to have committed a violation during his/her MEM career.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c58cedc7-cea5-41b6-bc3b-3a771c4f86d6', 'payload': None, 'score': 89.22829267208752, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '347133', 'document_id': '7979214c-3a83-4371-9c7d-5b3a396437e0', '_node_content': '{"id_": "c58cedc7-cea5-41b6-bc3b-3a771c4f86d6", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7979214c-3a83-4371-9c7d-5b3a396437e0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "68b037e71e4a1ff245a8b811d8fd9bb3d143078a8f45b0130a1cf34eb9ef7896", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf2b9747-ad6a-4006-8d4d-1c44a2e498fd", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 347133, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html"}, "hash": "78102f4238ea0c0199c9d290540cf6c0b09dde573d8c3c651955aba49ea65d6d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0d0262fd-5f63-4d3c-a40b-85f68f5e806d", "node_type": "1", "metadata": {}, "hash": "fc841255189697ca2eb6dedd5ea92f4eeb4dbf26140e34f28f8a094c39bc5b37", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5572, "end_char_idx": 10685, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies.dukekunshan.edu.cn/academic-policies-and-procedures/index.html', 'vector': '/*ܼ9Oڼ\x07.5̧\x04\x15̻\x7fF\x05Ǽhp<."<\x03\x18\x1f=~\x19=Ѕ-\x11i\rERL;St\x1a;+;v{ٻQHżf\x14;<\x1c\u07fc\x0cX7uּǿ<^\t!/b\u05f9jIe=#<3\x04Y<\x1d\x11<\x19\x1c;|͢<\x15!\x07\n߰<%~<\n)-=:\x19^<2W=3\x15=<\'3;{<ǿB<+\x00=\x06M\x1er\u07ba\x13\x05\x0c=b\x0c컗༁}<\r~]uY<9O<8\x06M\x0c\x16;0=rv\ue37d8w̧=QHE;uZ\x15=\x1a=|\x19nh&鼾\x11%;J<\x06Y,/<\x175ƻc=l\x04;\x11\x1e\x10\x00ڼ;\x01e̼cQ- Ʒ.<;g;U;˂Hηn=D`\n=>l2\x01<ܼ\x17/yV1㴽*\x1e˻{ϼ]<\x02Ի\x18=$ \x14c=pΊ%ͼw=%T=R\x0f<:2x-\x16\x163<\x06\x0fӻ\t|a,\x0c4\x04$v{O\x1e\\\x06A\x1aWk;;\x13;u=\x18[;߀\x03\x12鎈3HK;3H<-.;=+v-"N\x1c\x16-M=4\x0b=}\x1e=Ӽ>>܀ѼH\x0fLqD_\x15=9\nm\x11cޢ))9=+a=#<2H<٭\u07fc=\x0ba<>q =?X<\x04%\x06\x0fY\x1c(=2\x0c@&&\x0f<&l,H=\x02<\\B\x07r=Ы;yN<\x14om<\n5ƞ87.=D_!\x15n<2\x04)n(=\x1e\U000fc5e5;:`G{;4`\u07fb\x1b:\x1f=cw4&\r<>$\x00\x01\x14\x102a<.ة]-0"=\x1b<\x16ӵ0R<\x00\x0f;,Z!;Kٮw>=zkdjG<{\x08y:\x0f\x02N<\x02>.=x=*\x02<\x03=\x0fܼ="\x1b<0ǿ<\x14\x0c<\x1fnG;l5Y\x05\x1b4;\x17a\'^ڼg;l\x12\x13\x03=+t=J<6껝<\n\x0b=\x02/:\n\x17:} мc(/OT<\x02!=?䗽;N=ᕼ} )ȼ4\x19=ټ\x07;\x08ռ:^\x06v\x11jŞ&mg2;LoXu\x17\x18><]=\x7fS\x10g<\x01o=V$^-\x18m\'X;꼼K=\tbݼ뽘<\x13rZf:=!_; ;v<:|3!<|,\x07qi,\x03\x1cPLjŞh*^\x19<\x1ap(P<\rټ\x06vmuM9b<ּi9V<\t\x13=AЇ\x04f<\x18\x7f=|I7Buٻ6\x1dv=Db<\x1bE;_}:\x83I&\x14$_D5=(\';6\x1dv<\x11eo=%r=F\x04+:L<Ҭc<;5㵺\x0bJ{\x1br<ڋ9_\x7f+<<γ3=ʺ<<\x04H\x13?\x11;^l<3/be<\x08K=\x1eG<$s\x14:\x1dd¼tdӬbT=|a;Z\x04}$=:]c4;ܺ<8dǼ\x023:!\x04=7\x17<2]:;OW\x1c;ëd\\O\x10=;\x85=+9\x1eq3<\x18;vs#k:=фckkI+\x1b=_#\x19s,R]<2\x07\x17\x1b;÷}\x0cԻ|WFI=I?\x1b\r\'\x10=7m;\x14V݃<ӻ<˴-4E\rl?V:Î=γ;R\x1c=\\\x1e/\x14<0\x05|ȼj:<\x18<*=Y<-t;\x02\x1fb\x06<^\x13<\x0cY}\x0c\u0600\x1a:\x01\x05#=/=\x08=Nj|\nv<2imh\x10[J:N\x12:c켔C\nh=Ք=ݍ=p<\x15C/<{ǏL9RqM=\x1b!<\x17#:@<5<0\x06h<\x7f<\x16\x0f9:\r\x0cкX:\x00&=&`]=\x18K\x03_\x02\x0b\x12FwGg<\x04ix>7\x1a",o\x1d\tN")E\\<\x05\n<\x14H3V;\\<\x01>ƻ\x05\x05n\x07=\x17#\x16=ȼ\x05\r3\x0eN;\n=J:=)l;<\x04\x10=\x11&V\x08<"9&<\x168.T7\x08~=s3=/j6\u07fcisVqJ$\x03ʆ9*:\uf237<,ۼ\x158\x05\r87t\x00=kٖ:Z]R7\x04?<\n^I~F<|\x1d\x12s\x1cl\r;1\x13=<\x04E\x1b<|4D=o<͝\x12V=Ӎ=%\x06=%J=\x18k< \x0e\x0f\x1c\x1a\x10c˵<\x15ഗ\x15<\x17\t{~=/+!#\x18\x1b@8\x12Bi<Ƽ5\tc;إK7\x08\x00>DY;)\x19ZOz<\x15=UqJnI<)υ\x10o< <̻\\\x11\nxhO\x17;`߫\x0b0Q#<\'\r=%ɗ-qD;.h!={\x1f\x16<\x18C\x1f;`:\x0ex2<\\So\x03=#PA\x0er!=\x1bټ\x0b=\x198\x12x;W\x01=,=\x028,ኼ,^&\x04R\x12=Rר!\x04ӓ<\x03ZBG<^;$e\nި<~(<\u07fbr\x04Zwn戽8#?<\x12x=6\x05\x14;T!m;Z,κ=)<\tA6G[=\x13bS\x10&', 'text': 'The two cultural pillars of the Spanish and Anglo culture, Miguel de Cervantes and William Shakespeare shared the same times, and almost, the same day of death, April 23, 1616. Both, lived fully, as we do today, in tumultuous and tempestuous times and shared it in the tragedies and comedies coming out of their imagination. We, their heirs have adopted, used, and transformed their legacy -our language. Also, we do share that history, one of imperial dreams and nightmares and the expansion of a global Eurocentric culture that transformed the globe during what we called modernity. They foresaw such forces, those that unleashed our own wild and turbulent times. Art still creates out of Cervantes Don Quitoxe. This paper was commissioned for the first of a number of exhibits produced by the Artists Studio Project (ASP) for the annual Quixote Festiva, a nine month cultural adventure that takes place every year since 2015.Save to library[Download](https://www.academia.edu/attachments/64930199/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=44495782)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[![Research paper thumbnail of Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://attachments.academia-assets.com/49530053/thumbnails/1.jpg)](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)[Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultur... [more](javascript:;) In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultural loss for more than five centuries. Today, within the framework of global policies for open markets, the community has developed new strategies or resistance: documentary video and community radio, public and community based performance, and symbolic uses of ancestral objects are threaded with cosmological knowledge. New media technologies and collective performance are part of the strategies that indigenous organizations in Southern Colombia are practicing in order to close the generational divide, build communities in resistance, share, and make visible their struggle. The emergence of the ACIN\'s Tejido de comunicación and the"kiwe Ten\'za" (the Indigenous Guard) are the result of this process. Developing a communication platform while fighting against resource extraction operations, illegal crops, and land disputes, the tejido and the guard inform and protect Nasa communities targeted by local, national, and transnational forces. The Nasa are actualizing their tactics through a combination of historical means of resistance (military and political), by strengthening their core values, and by processes of autonomy, education, and circulation of inherited means of governance. Miguel Rojas-\xadSotelo is a Colombian art historian, visual artist, media activist, scholar, and curator. He holds a Doctorate (PhD) in Visual Studies, Contemporary Art, and Cultural Theory (U. Pittsburgh, 2009). Miguel worked as visual arts director of the Ministry of Culture of Colombia (1995-\xad2001), building participatory cultural policy for the visual arts in his country, and he works independently as artist, curator, and critic ever since. Currently works and teaches atSave to library[Download](https://www.academia.edu/attachments/49530053/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=23676786)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[!', 'ref_doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/duke.academia.edu/MiguelRojasSotelo/index.html'}, Document {'id': 'test_doc:7ae4106a-10a0-40f8-8cc5-971e807c885e', 'payload': None, 'score': 38.53360199092106, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '235942', 'document_id': '71dea93b-9b52-4783-bcd3-f27c0c643427', '_node_content': '{"id_": "7ae4106a-10a0-40f8-8cc5-971e807c885e", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71dea93b-9b52-4783-bcd3-f27c0c643427", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "hash": "0e1208392f260a647322efa9a480d331435548499b5ad3056d939be3965d5865", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3192, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf', 'vector': '\x16\x1c\x00ռtW듼\x0c]UX."Ѽkũ<\x16߰\x1c\x08ʼQ0\x03;0\x08rxڻI=hk<\x16\'=ˌ<;\r=:C=ݔl;;lW;̂i;Ab={x\u07bbQռ<<\x11\'%;̋\x070*n;c=\x02Ak<\x0cw\x1d\x189E<>7\n=䝁<0.wܿ0\x08.\x0fμ#M\x04C\x18\x1eݹ\x0f==<\x08/<\x1f<{<\x0e,0=>7\x06\x12=yW-g8\x01\x11\t_<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&+=i$9j*<xp̼;\x14\x17;W/I7\n/A$x\x1af<\\x\x077\x10:\x04;:a2\x17\x19{<(@MhU\'=݂VfR=\x12qW/;j>Y=T\x02=\x11\x05.KD3\\9*\x06\x08=;wo쵂<2=|\x1bs滊:lI;{<:\x16v-W\x10.7zk=F\x08i<,l<_w#/i`\n̼]<\\:LAA<\\@\x1f<;UX(\x06\x19;u,MI80<\x03\x10\x0f9<\x11=g0Y\x12+\x1c<\x0b<$ټx=o\x07\x13kt\nnLv=<\x11<\x0fm\x05=s\x04n\x00M\\\x11=Q$ļ\x11\x14:M\x1a', 'text': '# Hiring Process for Student Interns\n\n# Interview Coordination\n\nThe hiring office should be responsible for coordinating and conducting interviews. The Office of Human Resources will not engage in the interview sessions. In most cases, the interview of student interns will be conducted by phone/video. If the hiring office would like to set up an onsite interview on campus, they should be responsible for relevant logistics and cover all related expenses.\n\n# Interview Guidelines\n\nDuring the interviews, the hiring manager could introduce the stipend and daily work to candidates if necessary. For student intern positions, the hiring manager is encouraged to reach initial verbal offer agreement with candidates at this stage.\n\n# Candidate Confirmation\n\nIn the interest of recruitment efficiency, the hiring manager is suggested to confirm the candidates with the following situation during the interview:\n\n- Internship duration, starting date and ending date. It is suggested the student intern should be available to work for at least 3 months;\n- Working hour: five days per week, eight hours per day. From 9:00 am to 17:30 pm. In most cases, student interns can work full time. However, some may only work 3-4 days per week;\n- Work location and accommodation: student interns should cover the accommodation fees by themselves;\n- Intern stipend: 3,000 RMB/ Month for full attendance.\n\n# Step 6: Extending Offer\n\nOnce the hiring manager confirms to move forward with the candidate, he or she should send an email to the Office of Human Resources with the following information included:\n\n- Job title\n- Candidate’s resume\n- Working period (possible starting date and ending date)\n- Fund Code\n\nThe Office of Human Resources will make the offer to the finalist and inform the hiring manager about the offer status. If the finalist accepts the offer, the Office of Human Resources will initiate the onboarding process. Otherwise, a new round search will start.\n\n# Step 7: Preparing Onboarding\n\nBased on the previous cases, the best practice is at least 7 business days are requested for onboarding preparation, which includes Net ID, cubicle, campus badge, laptop preparation, etc. When the hiring manager gets the student intern to offer, he or she should consult onboarding day with the Office of Human Resources. Onboarding date for student interns will be on every Monday.\n\nHuman Resources Office\n\nLast updated in September 2019', 'ref_doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'file_name': 'Special Recruitment and Hiring Procedure for Student Interns.pdf', 'last_modified_date': '2020-04-28', '_node_type': 'TextNode'}, Document {'id': 'test_doc:cc53bb11-993a-4bce-85e9-7a9551a2b0a0', 'payload': None, 'score': 22.589322974382366, 'document_id': 'index.html', '_node_content': '{"id_": "cc53bb11-993a-4bce-85e9-7a9551a2b0a0", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "link_texts": "[\\"Skip to main content\\"]", "link_urls": "[\\"#main_content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/www.usajobs.gov", "filename": "index.html", "filetype": "text/html"}, "hash": "45c0cbe6c6319b689d183634e068b1e0493205d12944909bf7636263451dba0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e668195e-a704-43d4-9ecf-a0c10ce996c6", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "3121985528011eddaaeceb8318bd0711168712c909b1106297b0331421a264d0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8301d50-ab04-4123-b28f-033c7cccbbae", "node_type": "1", "metadata": {}, "hash": "63f7b310cde3076c049d2de420e99084a5288a9f9612f11fe1f9bc178f0af792", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-5\x0e<\x1avdHQ&;-i\x19=Z=H\x7f[<\x075k=0F=;\x02No*>0Fɼ;T;턽;c(=\x1a<\x12>F\'=\x04W!\x0e?=ˀƼ\x1d\x18;Ӯ)<,@<*_x~V"P=ƏY@kW\x188rF=4Yo3aP<\x03=\x1eڸDpDe\x00V<}IKShC\x16N\x06Jo=:\x13UcǹC=\x14&<\x04xżq<\x046\x1fܦ`\x1f,=mμ\x14şbLӼ(\x11b;\t@3\x15\x02xi;@6<\x08J\x1f=xgb\x12LL\'\'WՈ]Z\x0fY4W<\t=*b*l\x0bK V=\tȻx\x04¼5F<6\x1b;\x1flm\x7fU\t9b\x15=~\x19=V\x01n\x15*\x0cs=ƋuA/Lμ <;ƻ;%l\x16\r\x0c=b;ң5f<ݭl;@()\x06j\x1a9\x14@I\x7f<\x1f}B\x14=WI90?G\x1d=һ<\x1c\x0b<6j\x141=fI<\u070e}Ɓ4\x11=\x102ڣ\x1fe_<@ac\x03W\x08?L\x0fD;A\x1d<^\x1a;x;\x18KZݼ\tb<0\n\t6\\<<ڼ5FC;nؐT.=%\x1dϨ<1*vY`K!\x16v!V"m\x1f<6\x168< =5n<5>=\rG=\x17;\x1fHcw\x0fǦ?<\x0c=4=\tY\tF;\t<=\x1c躕v!\x1chQɿ+\\_=.\x06.#\np8=/\x11"Q<&yx\x18d4W\x13 =@\x1d;p~\u05fc\x14\ua6fcLec(\x0c1:rQ<\x06<$e\x17Bi<*I<\x1fd5<6\x7f<\x11U\x19={;`\t=\'O\x136=;\x13\x02=If\x05\x1cQi\'=٥gN\x04=;<8)<,C"29)2#\x03\x16.;Z\x1d=]k\x0c=\x13{\x1eĺźyt\t=7Դ:P=G\x1b<\x13;60;\x03\x0e\x0e<\x08:JOWs7Ae<\x14GoU4/;=LC\x17};K\x14=I;?\x16[\\=\x05W)7#aB\tk=^q|=ݾ\rvmzM)l=*\x0fw+`\t<"` <\x0c\x0fǫ` ;\x05<\x00ˀ<\x17\x00=+L\tK<}F\x19v\x1a\x053=\x1bo\x02y"=im<\x1d\x19=^\x12\x0f=A<@b<$\\ʸi\'<\\\x08<\x1f\x12At6Ι\x0cGp@<^1\x15Qs`y;Z\x02=\x19=\x1d\x04=<ب1=9즺Y,Kܾ\x0f=<&\u07bb\x03=\x11\x1f\x13\x1a;6,\x0fo\x08;O\x12~\x10:\tH=\x14G=X\x02\x18"\x0bm,?CB)=e<\nֺ<\x07ft<\x1f\x16<-ʌ=;-\x14\x04;TC:\x1deʼZ;\'kڼ}NP\'+=;i"D\x04Dq;\x0fo=\x1eWuc!㼝\x13;1$%;O\x04=\x1b\x07=`;:;e<\r\x15ؼs\x05M\x02vB=\t#<֝B<7F\'l>:\x00\x0c=z!=NW=̼\x12<\x12I=e˽¼OU\x1b=;\x1cB"=C=ӻ>\x04vS; \x1a73E^<}Չ<$]?u(=\x0b1\x13\x1f&W*+ +c=κZ;tI\x04=;,<}\t;qĊ;\x0fI\\=\x051o2⻌R\x05=\'kڼ"I\'\x13<\x1f=f\x04=S=\xa0\n\n\n\n\n\n\n\n\n Frequently Asked Questions \n\n\n\n\nWhen your student comes to Duke, there are always questions about university life, including selecting the best dining plan. To help select the right dining plan for your student\'s needs, check out the plans described in the "Plan Profiles" section above.\n\nIf you have questions, contact Duke Dining\xa0at 919-660-3900 or\xa0[dining@duke.edu](mailto:dining@duke.edu).\n\n**How does the First-Year Dining Plan work?**\n\nThe First-Year Dining Plan is designed to enhance the \nundergraduate experience. Centered around Marketplace, the main East Campus dining facility, the First-Year Dining Plan provides a wide range of choices and fosters a sense of community through dining.\n\n-BOARD PLAN: Students receive 14 meals per week for dining at Marketplace as follows: \n-5 breakfast meals (1 per day, Monday-Friday) \n-7 dinner meals (1 per day) \n-2 brunch meals (1 per day on Saturday & Sunday) \n-All other meals are purchased by way of Food Points and can be used at any on-campus location,\xa0 Merchants-On-Points (MOPs) vendor, food truck vendor, mobile-ordering, or campus convenience stores.\n\n-If a breakfast meal is missed at Marketplace students may still utilize that meal at The Skillet (Brodhead Center) by 2pm, at Trinity Café from 8:00am-12pm, or for lunch at Marketplace from 11:30am-2:00pm. The swipe equivalency amount is $5.70 and anything over $5.70 will automatically be deducted from the student’s Food Points.', 'ref_doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'doc_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d28b1dee-0129-4bff-aa4b-713d1852ad80', 'payload': None, 'score': 19.888226658218823, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '81625', 'document_id': '4b7d8b1e-ea97-4931-9d28-4f74876bafc0', '_node_content': '{"id_": "d28b1dee-0129-4bff-aa4b-713d1852ad80", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4b7d8b1e-ea97-4931-9d28-4f74876bafc0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "06d84dfad93dc9440c05a73eecc088556df596178b7b4c3735ddd6cf91a1abea", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b9804bb2-aed2-4e49-8177-a1042b494e41", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 81625, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html"}, "hash": "ab6de2f8d496838bc4d558fab517f7136b2dab6b3a3bbbade681d455f1e01718", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43aa2b93-9f7d-442d-b104-cd44eb2584e4", "node_type": "1", "metadata": {}, "hash": "2822754110ae2cd497d63424e85ca2d3e1d42008c583c1b1eccae8d784c2a4a0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2882, "end_char_idx": 6756, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/students.duke.edu/living/dining/plans-points/index.html', 'vector': '&ރ%\x07gX\x7f|UCߙb<\n \x02\x17S<)=b\x11Iǀ!\x0c=M;>\n=Ӓ\x02+ î\r{ȼ\x10<]<+=<\x1cMw6\x1d<\x0c<\x03="<&\x03<\x08\x1cN\x11);Ct;\x02ma5\x18;(.;,9;:ޱ&=H:)\x06\x06@wJ\x03\x7fɦ\x14gu\x08<)v=ˍs\x0b=\x1b<\r_Ly;\n\x02|;y<\x12"=).<\x1c%=0l/K;\x1d=BB5t:;<\x18\x0e\x13=4z05\x0fj\x13\x14\x0e+F=y\x19l\x0f=yHg9\r\x1c\x1a=ѭ\x1c<(@\x08:\x08\x0f<\t4\x02V<\x1aOxN~/u1\x17GZ\x12g\x1f\r_=GF~g9C\x04f\n^#\x0e\x188TQ`a5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհa5<ЃֈY;$\r\x13!+51\x7f3=;4=T\x06=s\x11=\'\x17fo\x14];&$<@FrE=^0&C!|\x1e=\x02_7\x0c3\x124^ü; N;`\x05pP<<؎\x1b<$Ҫ=Z!ݚ|ü+\x04\x16\x02;\x06R\x18<\x18hu!=<:<8\x01<[*9\x10q\x05\\;\x05aհ<\x08,g=Dd;b\x18=\x06a\x13żzv8\x15\x10"=k\x1a=h|r\uf500hٽ\'=+;Cs\x15\x12R\x07=>=Z03;\x06=\x15F=\x11=\x0b<\x13-)7\x1e|;Cw\x16\t8\x11~=\',<\x1c~ؼZ03\x05t8;\x18=5"<+\x11#Qf<)\u07fbrX`z7Buٻ6\x1dv=Db<\x1bE;_}:\x83I&\x14$_D5=(\';6\x1dv<\x11eo=%r=F\x04+:L<Ҭc<;5㵺\x0bJ{\x1br<ڋ9_\x7f+<<γ3=ʺ<<\x04H\x13?\x11;^l<3/be<\x08K=\x1eG<$s\x14:\x1dd¼tdӬbT=|a;Z\x04}$=:]c4;ܺ<8dǼ\x023:!\x04=7\x17<2]:;OW\x1c;ëd\\O\x10=;\x85=+9\x1eq3<\x18;vs#k:=фckkI+\x1b=_#\x19s,R]<2\x07\x17\x1b;÷}\x0cԻ|WFI=I?\x1b\r\'\x10=7m;\x14V݃<ӻ<˴-4E\rl?V:Î=γ;R\x1c=\\\x1e/\x14<0\x05|ȼj:<\x18<*=Y<-t;\x02\x1fb\x06<^\x13<\x0cY}\x0c\u0600\x1a:\x01\x05#=/=\x08=Nj|\nv<2imh\x10[J:N\x12:c켔C\nh=Ք=ݍ=p<\x15C/<{ǏL9RqM=\x1b!<\x17#:@<5<0\x06h<\x7f<\x16\x0f9:\r\x0cкX:\x00&=&`]=\x18K\x03_\x02\x0b\x12FwGg<\x04ix>7\x1a",o\x1d\tN")E\\<\x05\n<\x14H3V;\\<\x01>ƻ\x05\x05n\x07=\x17#\x16=ȼ\x05\r3\x0eN;\n=J:=)l;<\x04\x10=\x11&V\x08<"9&<\x168.T7\x08~=s3=/j6\u07fcisVqJ$\x03ʆ9*:\uf237<,ۼ\x158\x05\r87t\x00=kٖ:Z]R7\x04?<\n^I~F<|\x1d\x12s\x1cl\r;1\x13=<\x04E\x1b<|4D=o<͝\x12V=Ӎ=%\x06=%J=\x18k< \x0e\x0f\x1c\x1a\x10c˵<\x15ഗ\x15<\x17\t{~=/+!#\x18\x1b@8\x12Bi<Ƽ5\tc;إK7\x08\x00>DY;)\x19ZOz<\x15=UqJnI<)υ\x10o< <̻\\\x11\nxhO\x17;`߫\x0b0Q#<\'\r=%ɗ-qD;.h!={\x1f\x16<\x18C\x1f;`:\x0ex2<\\So\x03=#PA\x0er!=\x1bټ\x0b=\x198\x12x;W\x01=,=\x028,ኼ,^&\x04R\x12=Rר!\x04ӓ<\x03ZBG<^;$e\nި<~(<\u07fbr\x04Zwn戽8#?<\x12x=6\x05\x14;T!m;Z,κ=)<\tA6G[=\x13bS\x10&', 'text': 'The two cultural pillars of the Spanish and Anglo culture, Miguel de Cervantes and William Shakespeare shared the same times, and almost, the same day of death, April 23, 1616. Both, lived fully, as we do today, in tumultuous and tempestuous times and shared it in the tragedies and comedies coming out of their imagination. We, their heirs have adopted, used, and transformed their legacy -our language. Also, we do share that history, one of imperial dreams and nightmares and the expansion of a global Eurocentric culture that transformed the globe during what we called modernity. They foresaw such forces, those that unleashed our own wild and turbulent times. Art still creates out of Cervantes Don Quitoxe. This paper was commissioned for the first of a number of exhibits produced by the Artists Studio Project (ASP) for the annual Quixote Festiva, a nine month cultural adventure that takes place every year since 2015.Save to library[Download](https://www.academia.edu/attachments/64930199/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=44495782)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[![Research paper thumbnail of Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://attachments.academia-assets.com/49530053/thumbnails/1.jpg)](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)[Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultur... [more](javascript:;) In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultural loss for more than five centuries. Today, within the framework of global policies for open markets, the community has developed new strategies or resistance: documentary video and community radio, public and community based performance, and symbolic uses of ancestral objects are threaded with cosmological knowledge. New media technologies and collective performance are part of the strategies that indigenous organizations in Southern Colombia are practicing in order to close the generational divide, build communities in resistance, share, and make visible their struggle. The emergence of the ACIN\'s Tejido de comunicación and the"kiwe Ten\'za" (the Indigenous Guard) are the result of this process. Developing a communication platform while fighting against resource extraction operations, illegal crops, and land disputes, the tejido and the guard inform and protect Nasa communities targeted by local, national, and transnational forces. The Nasa are actualizing their tactics through a combination of historical means of resistance (military and political), by strengthening their core values, and by processes of autonomy, education, and circulation of inherited means of governance. Miguel Rojas-\xadSotelo is a Colombian art historian, visual artist, media activist, scholar, and curator. He holds a Doctorate (PhD) in Visual Studies, Contemporary Art, and Cultural Theory (U. Pittsburgh, 2009). Miguel worked as visual arts director of the Ministry of Culture of Colombia (1995-\xad2001), building participatory cultural policy for the visual arts in his country, and he works independently as artist, curator, and critic ever since. Currently works and teaches atSave to library[Download](https://www.academia.edu/attachments/49530053/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=23676786)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[!', 'ref_doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/duke.academia.edu/MiguelRojasSotelo/index.html'}, Document {'id': 'test_doc:7ae4106a-10a0-40f8-8cc5-971e807c885e', 'payload': None, 'score': 38.53360199092106, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '235942', 'document_id': '71dea93b-9b52-4783-bcd3-f27c0c643427', '_node_content': '{"id_": "7ae4106a-10a0-40f8-8cc5-971e807c885e", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71dea93b-9b52-4783-bcd3-f27c0c643427", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "hash": "0e1208392f260a647322efa9a480d331435548499b5ad3056d939be3965d5865", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3192, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf', 'vector': '\x16\x1c\x00ռtW듼\x0c]UX."Ѽkũ<\x16߰\x1c\x08ʼQ0\x03;0\x08rxڻI=hk<\x16\'=ˌ<;\r=:C=ݔl;;lW;̂i;Ab={x\u07bbQռ<<\x11\'%;̋\x070*n;c=\x02Ak<\x0cw\x1d\x189E<>7\n=䝁<0.wܿ0\x08.\x0fμ#M\x04C\x18\x1eݹ\x0f==<\x08/<\x1f<{<\x0e,0=>7\x06\x12=yW-g8\x01\x11\t_<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&\n-֞@C\x0fqI<ҠNL\x07=\x7f%:nмAcM6<7Յ\x01Qʧx)ެ\x1b=\':\x11\x1f=Y[k\x06{.v;:%Э;$t\x07\x1c=F*z\x0e\t8\x1d\x18\x19<~><\x1e\n;{\x1dڼ|M0+<=R<-7<\x03=.\x05\r=R\x0e\rR<=\x03\x01߿\x16R=A<\t$P:_=\x15\x16=l\x1dY-<\x01Q)+%=šrٻߦ+G\x08=J\r\x1c;dZ;\x008̡<[\x7fy;X\x1dF\x0cFq\x04\x15\x07;0)\x1b|\x19\x13;V4=\t\x029z<;"; <ސ<6l\x1dKOO.\u05fcT\x06\x0e\u07fc\x01Q\\ؠ<\x16i=\x1eu=\x17FE=၀Msr5<\x08u\x1f=\x04\x01U<\x1b*<Ɏ\x0f=fT\'=<[\x0b\x17ӂƼZgԼq\x0e=";P:=ǺxR?:N3\x01=Ӽ&V@\x03Q:Düt<~ӂƼE\x16=J.i;<(\x00<\x16\x14<< 0<۹<:È;ӱ.;\x00ms\n=~g\x04<;N!s<ĉ|;Y\x16j`\x1e;^<\x111=7\x05M\'<.<,\x10DO<', 'text': 'Professor Kisha N. Daniels (Dr. D) was the instructor of both EDUC 101 Foundations of Education and EDUC 204 Educational Psychology, the two courses I took in the 2020 fall and 2021 spring semesters. She adopted a strategy called flipped classrooms (Nechkina, 1984), which is a type of blended learning (Friesen, 2012) requiring students to complete the readings and learn contents before class, and have discussions instead of listening to lectures during class time. Before each class, students needed to watch Dr. D’s pre-recorded lecture videos and read materials to have an overview of the class content. Then we filled in a note-taking guide to reflect on what we had learned. Finally, we attended the class to have in-class discussions, group activities, etc.\n\n\nAs a math major student, I was used to listening to lectures without speaking a single word for a whole semester. I had even thought about dropping this class after I read the syllabus! However, Dr. D’s class opened a whole new world for me. Since then, in every class, I would excitedly click the “raise my hand” button in Zoom—I could not wait to share my ideas in the heated conversation.\n\n\n**Optional Attendance to Synchronous Classes**\n----------------------------------------------\n\n\n2020 was a year of chaos. Coronavirus and the international travel ban are distributed to students all around the world. It brought many uncertainties to our lives: unreliable internet access, different time zones, infectious outbreaks, etc. The school year taking place at the same time was obviously not easy at all. To ensure class quality, some instructors took mandatory attendance for those who were able to join the synchronous sessions. However, Dr. D was an exception: she made her synchronous classes optional, even though it was discussion- and activity-based. I was wondering why she did not make it mandatory, how she provided a relatively equivalent learning experience for those who couldn’t join lively, and why almost all the students still came to the synchronous classes.\n\n\nDr. D believes having a certain level of flexibility as a professor is always difficult, but educators should still manage to do so since it is not the reality to control everything in education. Students are adult learners and should be treated as individuals. They might have different learning preferences and face different situations. Giving them flexibility can be a form of warm support through hard times. For each assignment, Dr. D prepared two versions (synchronous and asynchronous) with detailed instructions: if you can come to the class, then you can work in a group to do the assignment; if you cannot, then finish these sections of the assignment as equivalency. By doing this, every student was fully supported.\n\n\nAlthough Dr. D’s synchronous class was optional, it achieved a relatively high attendance rate. To tackle the low attendance rate problem, Dr. D invited students to relate their own background knowledge to the course concepts. If some students did not come to class, they may not have a chance to realize how educational psychology relates to their everyday life, and what their peers’ educational experiences are like. Once students agree that class is the place where they can learn more, it will become their motivation to attend class. “Students are adults, even my freshman students. They are starting to figure out who they are in the adult world.” She, therefore, lets the students decide what is the best study strategy for them.\n\n\n\n> This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9aefe5bf-1e1f-4b31-ae11-5874c5393dbd', 'payload': None, 'score': 11.807439363540126, 'document_id': 'index.html', '_node_content': '{"id_": "9aefe5bf-1e1f-4b31-ae11-5874c5393dbd", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/lile.duke.edu/blog/2021/12/flexibility-adult-learners", "filename": "index.html", "filetype": "text/html"}, "hash": "c12bb19afe9091cf6fafa09e70f8b388092e96d62da508203161dace2cb3af57", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a427db5-ac02-4ad5-96b7-8dae766073a9", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "da61cf9bbb421fc985a175359a38bfee69742fb1d22c5e91ab9fc51a580553c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28a6432f-f95e-4e16-97a2-bc96b30e43f2", "node_type": "1", "metadata": {}, "hash": "734cbde4b860d7eb88633b64f3ce5635c61c46f1eee2dd8fb3ea547d481396b2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '@..\x1a!>\x02L)=<¼LR9"-=f2\n\x1f8;I\x13\x06̼\x19E;ǁB=^\\"Ⱥ)=)@缚RV\x1bJ܋g\x1f\x18e\\s=|\x0e<\x12\x19k 0h;o\x06\x08=^`:62<\x0eM\'=<\x0b\x1b_=59?/\x05\x1f[=I\x04\x7f<\x0b\x0e[;\r Qp=\x1e_+DySz\x14:D4;e:<\x15uN=={;\x1eF!8<{\x15\x03J\x19\x0b\x1c;\x12=!<+DP̥,\x10.\u07bc+-<1\x15=\x00k<\x01=\u05ce6-\x11֚ȼ0\r`;nB;\x1e\x19<Ѝ;]<*\t;\x1d*|$;^\x14SGJB)_\x05\'\x14\x03X8\x1c%=eX=\x13<{z=%W39L\'߷{:IC2=E(<\x1cAVR\x7f\x01KR\x02\'\x12<\x0cI>\x00\x19R<<^<@Pg#=C \x08=ߟ<.<һ`d#\x16<\r<-s\x0fϼ =\x14fڙ;\tB4<\x08 This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000\\).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:8164a0d1-1226-4de6-8d7a-39699df9bbb1', 'payload': None, 'score': 7.2496097371351755, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2826244', 'document_id': 'bfe60902-d299-44d5-af13-f68c06604fef', '_node_content': '{"id_": "8164a0d1-1226-4de6-8d7a-39699df9bbb1", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfe60902-d299-44d5-af13-f68c06604fef", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "4423c15f0262081da99b5983d0c0d4888dd19d09a77408a79310122494d98daf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1101e903-21fb-4f1a-a913-cd4d0db09034", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "a0ce698216bb12351e6c53c1f0a2e4b69df29c33d5af55c6ee316510f7e616c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc4f1340-3c4f-489a-ad6f-ff61fc6ae5bb", "node_type": "1", "metadata": {}, "hash": "f086c88c19abfef10f0e7100cf75308dc71e1c1a8b0f65ac1fe88aa3b3693b3a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3197, "end_char_idx": 6819, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf', 'vector': '\x10\x1br\t\u07bc\n}\x19\x02JG<;JT}\'j\x16q<\x0c\x0f\x03!:ʊ\x0f\rnQD;?#M;O,<ⶊ<\x16q1<\x1e\r軛ٲ8-}Իg\x0e=\x080?#M\x17M4\x0c:Z{\x13<\x1e+!5(r>*x~=J<姻J:SVkB\x0c:=\x1d\t;\x00<\x04\x12s\tB1j=s\x195f=ӻ-<1GŒ:[.\x0cb =$k\x0bJ<\r=姼\x1b\x08<\x04)\x05\x06=IWD\x00=˼\x17o\x06+=Ą=\x0e/\x0bl,<_\x0b<\x07<{\x0f;Ym?l:=dp@<{<\tZ̼\x12\x0c\x03=\x1a\x01"=]\x0c:;\x05=ޓ\tf/y\'=\x1aָ݅\x17\'<\x1be<\u0602;A\x0b*a<ɳ<>\n\x15\x7f줼~+\x0c:R]=\x14\u07fc\x0b\\<ʽ\x07;k\x111G\x1f\x104jOn;ej0A=F];\x00\x1e;\x080"6V\rr4\x1ad\x05u/<+8;\\\n6=r q<ȝ\x12=\x15\x0e\'#=A\x1dⶊtlлS!m=\x1bU<2\x14=`\x1b8»\x1c⻨ӌ],\x13,&r>*"L<\t\x10d|\x0c:$:\x07<8T\x00\x05=\nL=lv;ќ\x12\x0c&)\x01oxE\x10g\x01D\x18\n:4Q컼c;\u0bfcч&ثF<⠼ּ\x0eO=ܯ;FV=\\<\x03I㼋7\'ٕ};\x7f 7=\x1b=\x02<\t༜뻘NmB\n\x13㣼fһ;TW5=\x02;0\x1fD;뼮<$;\x1d =>"=/"==\x7f\x19\x1fʼݎ廬C꼈\x1fLoU/:#t\x1f{=(#=-<܋;+E>;\\G\'x\x17\x13kΊ\x027s5T=\x1eV\x0e@\x7f 7IϼxI/ͼ;\x0f=[<-<\x06\\+<\'g;k6<3\ue63b\x13=u=\x18)b\U000bb508B>"=\t=\x1cwC=#\n;nop\x05;%=I\x1e=8Ƹ~vw\\Uȼb@z6Ja\x0fq1:țJ=,~\x7fȼ3㊻\uf7bb\x15;=`\x04\x06<\x02\x00E< “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom \\[when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs \\-animals – photosynthesize, so it is eye\\-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step\\-by\\-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:3813364d-5d0b-43b2-8b98-89f90953c7b8', 'payload': None, 'score': 7.140919556971079, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67846', 'document_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', '_node_content': '{"id_": "3813364d-5d0b-43b2-8b98-89f90953c7b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c67a53bb-8127-4a54-8b71-e1b38caa9ff1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "19d045065fa9deb404ca09df5d278e17246849ecf0ad229013a4f1b8ebdf6baa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44dee6a0-7eb8-4a9f-96db-c955c8a4af03", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "d32b9c44375b348bc666ef0aec15d9716110288a771b9adacf9715e299e14eb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "db799e37-46c6-4470-b828-20f113c1c7e1", "node_type": "1", "metadata": {}, "hash": "95ca862141792c058376d879a3bf777f6a55c3680aed266ff9ed2bdabe4d79eb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3981, "end_char_idx": 8579, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', 'vector': 't4-N\x19\x16\x04\x06%3\x0b;)R;Xv\x12@:\x1aXv4!&m\x08<(0j=\x0cr뺚\x00 \r9:\x03R=y௺\x00F\x1e<\x1a;;\x16\x02:->=ۜ<6\x11=VI,aK)Aнx<;)<;<\x1a,=\x08|WA<~y/=DI9\x04+L\\}=W\x1b<]üt\rxtR<\x1c\x17+< \x10\x1bP=<\x17\x12z\x0e<(0j:L\x03EZFe\x10h;WTb=Y<\x1e\x0c=\x17,;\x16%<<\x11\x1e8\n\x0c+\x12;\x16%<\x0e\x1d<^Y\x04<<]\x1aj<<;twϻ`?\x07p=JӍ;&\\"y;IwF7"\tgIw<\x1bw@\x1dP\x15E\x08! “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom [when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs -animals – photosynthesize, so it is eye-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step-by-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{17534 total, docs: [Document {'id': 'test_doc:a3142f03-b03e-441e-9145-cd8db74a9829', 'payload': None, 'score': 24.640297524336233, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '135317', 'document_id': 'e3d484ea-0b8d-4a2a-8390-5a54898ee946', '_node_content': '{"id_": "a3142f03-b03e-441e-9145-cd8db74a9829", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 135317, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e3d484ea-0b8d-4a2a-8390-5a54898ee946", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 135317, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html"}, "hash": "71b24b2ee13f18595183b8296d4c42b8622ec1facb75d8fb2aba38a3b8c96856", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "de8de648-1ddc-42dd-8935-914cf27506bf", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 135317, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html"}, "hash": "5fb3274fd35dad69a18d0c4cd77cb8baea6d828a186911ec3b04127090269193", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5566, "end_char_idx": 8500, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html', 'vector': 'vE|vS/wa:%DB= =h1ilN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 14.485480856092394, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{24161 total, docs: [Document {'id': 'test_doc:a47ff809-7f1d-4fac-842a-288e0331980b', 'payload': None, 'score': 29.280630913042284, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '356480', 'document_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', '_node_content': '{"id_": "a47ff809-7f1d-4fac-842a-288e0331980b", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Policy/DKU Policy on hiring student worker/Intern_For Non-DKU student/Special Recruitment and Hiring Procedure for Student Interns.pdf", "file_name": "Special Recruitment and Hiring Procedure for Student Interns.pdf", "file_type": "application/pdf", "file_size": 356480, "creation_date": "2024-09-02", "last_modified_date": "2020-04-28"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71b7ed09-edbf-489d-9bab-a3b83ac1220f", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Policy/DKU Policy on hiring student worker/Intern_For Non-DKU student/Special Recruitment and Hiring Procedure for Student Interns.pdf", "file_name": "Special Recruitment and Hiring Procedure for Student Interns.pdf", "file_type": "application/pdf", "file_size": 356480, "creation_date": "2024-09-02", "last_modified_date": "2020-04-28"}, "hash": "e8952b524ea8c9fa9639d8057ae93c6afe4db74e396209cad0f49dac63cfc655", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2432, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Policy/DKU Policy on hiring student worker/Intern_For Non-DKU student/Special Recruitment and Hiring Procedure for Student Interns.pdf', 'vector': '+=i$9j*<xp̼;\x14\x17;W/I7\n/A$x\x1af<\\x\x077\x10:\x04;:a2\x17\x19{<(@MhU\'=݂VfR=\x12qW/;j>Y=T\x02=\x11\x05.KD3\\9*\x06\x08=;wo쵂<2=|\x1bs滊:lI;{<:\x16v-W\x10.7zk=F\x08i<,l<_w#/i`\n̼]<\\:LAA<\\@\x1f<;UX(\x06\x19;u,MI80<\x03\x10\x0f9<\x11=g0Y\x12+\x1c<\x0b<$ټx=o\x07\x13kt\nnLv=<\x11<\x0fm\x05=s\x04n\x00M\\\x11=Q$ļ\x11\x14:M\x1a', 'text': '# Hiring Process for Student Interns\n\n# Interview Coordination\n\nThe hiring office should be responsible for coordinating and conducting interviews. The Office of Human Resources will not engage in the interview sessions. In most cases, the interview of student interns will be conducted by phone/video. If the hiring office would like to set up an onsite interview on campus, they should be responsible for relevant logistics and cover all related expenses.\n\n# Interview Guidelines\n\nDuring the interviews, the hiring manager could introduce the stipend and daily work to candidates if necessary. For student intern positions, the hiring manager is encouraged to reach initial verbal offer agreement with candidates at this stage.\n\n# Candidate Confirmation\n\nIn the interest of recruitment efficiency, the hiring manager is suggested to confirm the candidates with the following situation during the interview:\n\n- Internship duration, starting date and ending date. It is suggested the student intern should be available to work for at least 3 months;\n- Working hour: five days per week, eight hours per day. From 9:00 am to 17:30 pm. In most cases, student interns can work full time. However, some may only work 3-4 days per week;\n- Work location and accommodation: student interns should cover the accommodation fees by themselves;\n- Intern stipend: 3,000 RMB/ Month for full attendance.\n\n# Step 6: Extending Offer\n\nOnce the hiring manager confirms to move forward with the candidate, he or she should send an email to the Office of Human Resources with the following information included:\n\n- Job title\n- Candidate’s resume\n- Working period (possible starting date and ending date)\n- Fund Code\n\nThe Office of Human Resources will make the offer to the finalist and inform the hiring manager about the offer status. If the finalist accepts the offer, the Office of Human Resources will initiate the onboarding process. Otherwise, a new round search will start.\n\n# Step 7: Preparing Onboarding\n\nBased on the previous cases, the best practice is at least 7 business days are requested for onboarding preparation, which includes Net ID, cubicle, campus badge, laptop preparation, etc. When the hiring manager gets the student intern to offer, he or she should consult onboarding day with the Office of Human Resources. Onboarding date for student interns will be on every Monday.\n\nHuman Resources Office\n\nLast updated in September 2019', 'ref_doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'file_name': 'Special Recruitment and Hiring Procedure for Student Interns.pdf', 'last_modified_date': '2020-04-28', '_node_type': 'TextNode'}, Document {'id': 'test_doc:cc53bb11-993a-4bce-85e9-7a9551a2b0a0', 'payload': None, 'score': 22.589322974382366, 'document_id': 'index.html', '_node_content': '{"id_": "cc53bb11-993a-4bce-85e9-7a9551a2b0a0", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "link_texts": "[\\"Skip to main content\\"]", "link_urls": "[\\"#main_content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/www.usajobs.gov", "filename": "index.html", "filetype": "text/html"}, "hash": "45c0cbe6c6319b689d183634e068b1e0493205d12944909bf7636263451dba0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e668195e-a704-43d4-9ecf-a0c10ce996c6", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "3121985528011eddaaeceb8318bd0711168712c909b1106297b0331421a264d0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8301d50-ab04-4123-b28f-033c7cccbbae", "node_type": "1", "metadata": {}, "hash": "63f7b310cde3076c049d2de420e99084a5288a9f9612f11fe1f9bc178f0af792", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-5\x0e<\x1avdHQ&;-i\x19=Z=H\x7f[<\x075k=0F=;\x02No*>0Fɼ;T;턽;c(=\x1a<\x12>F\'=\x04W!\x0e?=ˀƼ\x1d\x18;Ӯ)<,@<*_x~V"P=ƏY@kW\x188rF=4Yo3aP<\x03=\x1eڸDpDe\x00V<}IKShC\x16N\x06Jo=:\x13UcǹC=\x14&<\x04xżq<\x046\x1fܦ`\x1f,=mμ\x14şbLӼ(\x11b;\t@3\x15\x02xi;@6<\x08J\x1f=xgb\x12LL\'\'WՈ]Z\x0fY4W<\t=*b*l\x0bK V=\tȻx\x04¼5F<6\x1b;\x1flm\x7fU\t9b\x15=~\x19=V\x01n\x15*\x0cs=ƋuA/Lμ <;ƻ;%l\x16\r\x0c=b;ң5f<ݭl;@()\x06j\x1a9\x14@I\x7f<\x1f}B\x14=WI90?G\x1d=һ<\x1c\x0b<6j\x141=fI<\u070e}Ɓ4\x11=\x102ڣ\x1fe_<@ac\x03W\x08?L\x0fD;A\x1d<^\x1a;x;\x18KZݼ\tb<0\n\t6\\<<ڼ5FC;nؐT.=%\x1dϨ<1*vY`K!\x16v!V"m\x1f<6\x168< =5n<5>=\rG=\x17;\x1fHcw\x0fǦ?<\x0c=4=\tY\tF;\t<=\x1c躕v!\x1chQɿ+\\_=.\x06.#\np8=/\x11"Q<&yx\x18d4W\x13 =@\x1d;p~\u05fc\x14\ua6fcLec(\x0c1:rQ<\x06<$e\x17Bi<*I<\x1fd5<6\x7f<\x11U\x19={;`\t=\'O\x136=;\x13\x02=If\x05\x1cQi\'=٥gN\x04=;<8)<,C"29)2#\x03\x16.;Z\x1d=]k\x0c=\x13{\x1eĺźyt\t=7Դ:P=G\x1b<\x13;60;\x03\x0e\x0e<\x08:JOWs7Ae<\x14GoU4/;=LC\x17};K\x14=I;?\x16[\\=\x05W)7#aB\tk=^q|=ݾ\rvmzM)l=*\x0fw+`\t<"` <\x0c\x0fǫ` ;\x05<\x00ˀ<\x17\x00=+L\tK<}F\x19v\x1a\x053=\x1bo\x02y"=im<\x1d\x19=^\x12\x0f=A<@b<$\\ʸi\'<\\\x08<\x1f\x12At6Ι\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 337.1156939543695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=F\x10>s\'<\x13\r@;\x16;#d=WV7>\x15"=nJ;\x12{]\x14V\x07 \x02\x03@:Bv\x16=;s<\x03f:ơ;<@85D!\\e7\x06\\RĖO;\x12?\u07fc\'ռ\x16~;Uv;GI4\x1fuN=k>w..\\R\x00<\t¼`*!<\x03\x00+<(@=Qw;<,\x13&=/Y\x04\x0e\x01=QЛRx\x05,p"\r\ue89f<:\x18l#2=;\x16<.;u#vF\x15\x02mul;\x02\x7f;R\x07w;==<Ƹ\x11\rWvSw;X¼.0<\x02;t0=CC@<<\x05\x0f\x1d7<\x15"=\nE<\x1c9=\x14\x19PuN\x06FN/&#aȇ̠<@<\x03\x14=\x16S=\x15;\ue89fe|*l=\x15Q~B\x05\x04\x07=7\ue89f\x06<\x11㻲;;Ӻ0ϼp\x19\x17ykE\x16-δ;F:I?S<:`y<1v|}77\x17<_c\x0f˼x\x1c<\x1a+=/\x1d6\\\\<\r=;RƼOz;\x04\x07=;\uef3d\x01~S\x03\x14<;M;;<<^<\x0f\x04=g<*l<\x12?_5Ai\x14<0ϻw\x15\x05<}i\x06Y;{=ˢS\x13d\x08`V<\x1fA=\x04\x0eW*(=:xȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{8922 total, docs: [Document {'id': 'test_doc:59658922-5d45-4f71-ae3d-6e9c8fd2a127', 'payload': None, 'score': 2.7492999279050983, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '65825', 'document_id': '02754c4f-5423-460d-b925-3ad5258b6a23', '_node_content': '{"id_": "59658922-5d45-4f71-ae3d-6e9c8fd2a127", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/www.fuqua.duke.edu/alumni/connect/fuqua-around-world/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 65825, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.fuqua.duke.edu/alumni/connect/fuqua-around-world/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "02754c4f-5423-460d-b925-3ad5258b6a23", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.fuqua.duke.edu/alumni/connect/fuqua-around-world/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 65825, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.fuqua.duke.edu/alumni/connect/fuqua-around-world/index.html"}, "hash": "a78240e32a02deca43bf252ed4d0cb2bce16190bf15ed633ac6d3238dd396403", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6c69bd24-d0b7-484b-b026-029582313a58", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/www.fuqua.duke.edu/alumni/connect/fuqua-around-world/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 65825, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/www.fuqua.duke.edu/alumni/connect/fuqua-around-world/index.html"}, "hash": "427247762f3b0a7d9dc809ad6c3a1d27355b91bde0e93fbee7b2c2bf0bed12e9", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 10739, "end_char_idx": 12848, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/www.fuqua.duke.edu/alumni/connect/fuqua-around-world/index.html', 'vector': '6"bγ4\x11мy5gûp;u_d{<\x15; \x04%j\x05e;fhT5>\x0c<\x17v=\nѺ\x00,\x1cGGi,<.bBÿܼV\x04<[i<*>W\x0c9\x07{=}\'*\x0b\u061c<"=k|<^UFω뼙hp]\x1bq<4\x1cy;we\x11<5\x0e`Lq)\x0c<5\x1ebT`\x1cr>e]<<^{ֈ%j:b3=\x7f/x\x03\x04\'\x1dڹ\x1ag\x04B<24\x144O滺\x0b\x06<\x12=;vA=\x02h\x00<\uebe9#+;N\x0f\x10w<\x1c

<#\x08;r붼G;_ydy=@I(\x03=aETƼ<<\x05=>=.G!\'\x04^U;yʑt6a뻽\x15c\x1d=4\x05F=ڂH=\x7fr/=ݞ\x7f\x15B2@m\x17Bi<*I<\x1fd5<6\x7f<\x11U\x19={;`\t=\'O\x136=;\x13\x02=If\x05\x1cQi\'=٥gN\x04=;<8)<,C"29)2#\x03\x16.;Z\x1d=]k\x0c=\x13{\x1eĺźyt\t=7Դ:P=G\x1b<\x13;60;\x03\x0e\x0e<\x08:JOWs7Ae<\x14GoU4/;=LC\x17};K\x14=I;?\x16[\\=\x05W)7#aB\tk=^q|=ݾ\rvmzM)l=*\x0fw+`\t<"` <\x0c\x0fǫ` ;\x05<\x00ˀ<\x17\x00=+L\tK<}F\x19v\x1a\x053=\x1bo\x02y"=im<\x1d\x19=^\x12\x0f=A<@b<$\\ʸi\'<\\\x08<\x1f\x12At6Ιybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:16a9f1a3-7686-441e-bfe1-6bcbe98a6cba', 'payload': None, 'score': 2.1419471653848623, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '247848', 'document_id': 'd676cc2a-236b-4e27-afd3-70cc52597f68', '_node_content': '{"id_": "16a9f1a3-7686-441e-bfe1-6bcbe98a6cba", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/admissions/application-requirements/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 247848, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/admissions/application-requirements/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d676cc2a-236b-4e27-afd3-70cc52597f68", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/admissions/application-requirements/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 247848, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/admissions/application-requirements/index.html"}, "hash": "e7a2543259ec091c93e5cb670b98619b617cf74b60caf2b65cef1d4608dc8dfd", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "232c10b4-5827-4455-a17e-cff210fcfc3f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/admissions/application-requirements/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 247848, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/admissions/application-requirements/index.html"}, "hash": "aaaa742fe476de36e895cbbcac98f1db28be5aeb412e4f4ad532a12dbad5eae7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9cc5339f-36b9-4125-a40e-1e05240bf8e2", "node_type": "1", "metadata": {}, "hash": "05a1d6bdf7f29985b83f93dd851cedf8dfb2e00e07b182ca1c11fc50ecaabbca", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 17997, "end_char_idx": 22088, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mms.dukekunshan.edu.cn/admissions/application-requirements/index.html', 'vector': '7N+l\x15H4\x17ʼ|Y<\x14>\x15R\x10X<=\x02Y6*<[;\x10bB\x19/м1Eȣ\x15=\x13(FE\x1fQ<]5VRI\x1e=2\x12;hú-(=\x10;t<\x1f?\x0f\x1b;;ڥG\x05ji \x11~\x0fF=JҼ\x14\x151\r-\x03=\x0b-?<\x1c>\x18r3<\'ne=In<@\x07-;{={\x11=\x19%¼#\x17\x07;AM=\'u&hV\x11=>(\x19={!<\x16\x06<&\u07bc$»\r\x04#\x192=\x08dg\x1d<]4|#<\x0cؼ4"8<><;\tX>ü\x0c\x00I?\u07fba輯\x11\x0f=\x12X2\rF)= z\x16\x1bR<2!=̿c:f\x7f-[.\x11 \x11~< w<`=\x0e=%;&=\x7f\x11<\x0cg,bn\\dɼ3<=\x00\x1e)p}b!\x0e=GHe{!7\x85::@{=\x1cWN=5t\rAM\x0e*\u06dd\x0f=\x0eJ<\x05n}>B(\x19X<%\x0f\r%la<<[P<%\x0f\x14;\rt\x10\x18O\r<[O\x14=(㼇̿\x1e;\rFڄ%43&=.м=\x12"G\x05=b\x03\x048\r\x02U2\x16\x151\x14H-ډ<8<\x17\x00o玹+\n\t\x02 \x108\x12\x07\'wkCb:=\x11=\x0fL\x06<5pc\x02G+=iJ!=6<\x0f%:=#<~<\x1f#\x05<\n; \x07<:=펼\x10l0Tk\x00w~JO\x06\x07xn<\x1bu=\ue9fcgr<=g\x13<\x03ٍ<~\x13\x7f#\x11i<\x1e_\tb\x15<\x19Ev2Yyú;\x04j8\x14DG\x0cRX<\x1c\x18=/\t=ۨ\\\rF\x7f\tW8"=\x1e=1\x01\x16;/+p;߹\u05fb\x14m<1<\x7f\\<;kaw\x0f=B\x01>Tw:&\x0fs\x1c=և"*=}) \x1d&=6<%#I ˔Rq=M\x02<\x07=\x11R\x11l`;%\t\x07<45j=-:H\x1b=N}-=\x11㼻\x01\'=d\x10E¡N=N\x15n#=\x0co;\x7f\x01`a\nx\t~]0 Ev<\x19,+qi\\<\n<\x0fa< i\x14<Ѥ-\tr.t&F<`H<\nӵ<2Y<\x03\x1a><*!\\\x1d:Y\x1a=\x1dT<[e(=\x1eIjo0={;8؞U:', 'text': 'It is conceivable that the individual might even be offered a new contract, as in the case where failure to reappoint is due to the loss of an instructional component in the position, but the individual still performs a valuable service.\n---\n# Guidelines for Adjunct Faculty Appointment at Duke Kunshan University\n\nGeneral Criteria for Adjunct Faculty\n\nIndividuals who are interested in engagement in the DKU community may be considered candidates for an adjunct faculty appointment if they are committed to one of the following four activities at DKU:\n\n1. Teaching a course or guest lecturing on a regular basis at DKU.\n2. Advising DKU students or serving on graduate committees on a continuous basis.\n3. Collaborating on research with DKU faculty, ideally on projects involving DKU students.\n4. Providing strategic advice to DKU at the university level or at the program level, helping raise the visibility of DKU within and outside China.\n\nAll adjunct faculty positions are approved in advance by the Vice Chancellor for Academic Affairs (VCAA), and adjunct faculty can be hired with or without a search. Initial appointment can be made any time.\n\nAppointments may be offered at any of the established ranks or titles for which the person is qualified. The “adjunct” designation precedes the specific rank in the title. The particular rank offered shall be commensurate with the candidate’s current rank in their primary academic appointment elsewhere. If the individual does not have a current primary academic appointment elsewhere, the rank offered will be commensurate with education, experience, and professional distinction.\n\nInitial Appointment Procedure with No Search:\n\n1. In the no search scenario, a unit head (including division chair) in the relevant hiring unit submits a nomination letter to all regular rank faculty in the hiring unit. The hiring unit can be any of the five academic divisions at DKU (UG SS, UG NS, UG AH, LCC, Graduate Program), or an interdisciplinary research center. The letter should state why the candidate merits consideration for adjunct status and should propose the adjunct faculty rank or title (e.g., adjunct assistant professor, adjunct associate professor, adjunct professor, etc.). The nomination letter must be accompanied by the candidate’s CV.\n2. Regular rank faculty in the relevant hiring unit vote on the candidate. If approved by a majority vote of regular rank faculty in the hiring unit, the hiring unit’s recommendation for appointment is submitted in writing by the unit head to the VCAA along with the candidate’s CV.\n\nApproved by the DKU faculty March 22, 2017\n\nVoting should be done anonymously and a quorum of two-thirds of faculty in the hiring unit is required. All faculty eligible to vote at meetings of the Faculty Assembly are regular rank faculty.\n---\n# Initial Appointment Procedure with Search:\n\n|Step|Procedure|\n|---|---|\n|1.|When the hiring unit, in consultation with the VCAA, determines that a search is required, a search committee is nominated by the hiring unit head to initiate and conduct the search. The search committee consists of at least three faculty members in the hiring unit. If any one of the hiring units cannot provide three such members to serve on the committee, the unit head must nominate an expert(s) in the candidate’s field from Duke University or Wuhan University, who will be invited by the VCAA.|\n|2.|The search committee may also choose to nominate additional experts in the candidate’s field from Duke University or Wuhan University to serve on the committee, to provide further quality assurance, but this is not required. The search committee keeps the relevant hiring unit(s) informed as to the progress of the search and draws up a shortlist for their approval.|\n|3.|Following interviews with the short-listed candidates, a selection is made by a majority vote from all regular rank faculty in the hiring unit(s) and the committee presents the recommendation of the hiring unit in writing to the VCAA, along with the candidate’s CV.|\n|4.|The VCAA will forward the hiring unit’s recommendation and candidate’s CV to the Adjunct Appointment Committee (AAC), who will make a final recommendation to the VCAA with a majority vote of 3/5 members.|\n|5.|The VCAA will make a decision on the appointment.', 'ref_doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'file_name': 'FACULTY-HANDBOOK-_2021_V7.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1c87e679-887f-4a0b-b35a-c188f0bcaed8', 'payload': None, 'score': 13.01484707813104, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '193207', 'document_id': 'd5a239be-05cf-45e0-9828-34393051404c', '_node_content': '{"id_": "1c87e679-887f-4a0b-b35a-c188f0bcaed8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d5a239be-05cf-45e0-9828-34393051404c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "hash": "8069a53c337274902b62806d298e9279bc96e16473bbe77769fe70f130122797", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6caff452-949e-40d1-9746-c66f5be65cad", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 193207, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html"}, "hash": "58495177c60795f324bd77fb361e896b2432564f79796a595bdb92dbb9e8ef49", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "047b0129-8c66-445f-8058-67bcf739a63d", "node_type": "1", "metadata": {}, "hash": "768d0d40af3f683dbd2807beb595e2b7e8dddfcb44178481a33e76165e973cba", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 2569, "end_char_idx": 7099, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/vaxlab.dukekunshan.edu.cn/en/project/%e5%9b%9b%e5%b7%9d%e5%a4%a7%e5%ad%a6/index.html', 'vector': ']0$ȝ5@tx;\x1c_\x192@+`!<]@\t<<λ떼mT\x0b=\x1d\\T*\ue1bcQl<\\\x16=}E"= \x06<ɼSv<\x0ef\x04\x1d;yvm%<͑;iIz\x1a\x0bH\x12=\x06:<ļ=\x18\x06O!";.0t^\x0e(J<~#\x00\x1b;#=T{yv-;+ȼ0oQ\x11\x11n\\<<\x08d;K\x04;p\u05fcl*=թ,\x02\x0b=,;Tȭ\x02ol\x1a]<;\x1eE\x13Oؼ0Z<&\'\x08Q\x19=\x15Sb\u07bc\x0b;\x15\x11!<\x1d<\x12!Y$<\x1b<\x15ɥ@}<=<}(\x08\x17<|F=ޝ\x02=*O;ȝ5#=,8;\t\x1a!\x00;l\x0cP\x05\x1bCߌ<=;<\x1c\x19p\x13:?k<<:\x1cü-\x00=Z=\x0c8Xd7cR̼4\x0bs\x05\'\x12<5\x06=*\r:1\x14o;u\ta;."<;T,<[:TY<%;~=\x1bc\x00=|\x18;\x05M=\x184~;|\x0eJD;\x16P\x04G\x02d qQ\rD<;+@\U0010be49D=\x14N5ge=<*;*=U<<Լ\x0f;;=8\x7f<ڈP=b< \x10,\x04<_Z\x021t=lܴ꼚\x141<}I+@\x04<|u\x1f.J]\x11\x07,\x12^cX\x1c\x01<Š/\n=\'\x174<\x00j㻚f;\n?}l$ɘ(Ly<\x17=>\x19E\t=\x01\x030!<([:\x1b"<:\ne=\x12=./%\x08%=1<\x1e$=YoZ?;z\x0b/6\x08%\x0f\x15;\x1fV%=_\x1d\x17J.wd<\x7fg}*\x0e<\x1b=Z\x11p0G\'亥<<\x1b^$P:|>_Sh<>B\x11=f<(ݼQ=}< Q~=\x005<\x1bd$b\x06\x084;5ч;\x10t~ռ+A;6d;+\x0b\x05\x0b8\x12:I_-3j2?=j;kYg<;ɻ\x08;\x05v<\x11\x17<<0<\x04A=zlS<^8<+6=p\u07fc\x04ٻ<>=\x10켢a\\\x08\x19I0=Ca&\x0cf<31=\x0b=a!=\x18o4=+Jt=ǪD/D\x07C\x03=\x07<=:\u05fa\x14=5X\x13\x16\r̼\x1bJ_K1=\x06l\x1b0=\x1el:\u07fct/<\rN<>=\x0e\x01\tsJ<\\1\rλnY\x1e1\x17=G;+=~\x03=M2!=\x14M=qa=w\rH<\x1c="<\x062;AZ4?\'Ц<\\=a:Iۻ\x10]թ6<[<\rJ=<\x0f;.[8<\x1fxsx<3\x12\x0f<+>\x1dIW<Ø]\'-\x0b&<\x15X\n;d\x1f<㣽]&z\x7f\n<\x0cZ\x16/\x19\rKoI<Ǫ<\x04z=Ț{y~=:04>=6=\x7f<̬Z0\x05M2s<6<%4JK\x17C<\x05b<\x7f\x0f\x17=ȗ<\n.=h9\x19sKNF:b?\x1d<#<<\x1an\\ n=O3\x05:;\x11{=\u07fce-;;R<)q\x1c=Z:19\x12=?\x05;f\x14<藾;IS<,=S/=\nM91\uf57c\x14뼗}\x02(\\%=8L NỈ\x1c=\tR<\n<}\x0e;\x05m!\x15=O2H\x1c_\x1dS&\x12=\x15oo\x1a)ܻ%+<\x05<\x1e\x04\x197<-\x04D*\x0f)@\x1fS;\x03|%k=<+y*Ц=7gx1u\nChQxdQ"=:<$`<\x06;(p\x08J=h"ּ5`Ҽb<#\x05ܼX6ALv\x12V:\x12\x14<[;ژ;BGu<}*=sNs="wK6;)〻\x0f\n<~<<\x02ڤ;u\x17;\x1d5:\x0b\x1b=˺;뻞nM\x15\x0ew\x0c\\=o:iKF\x0f=ɸ/=\x02$\x07\n9=Ï<\x04\x0f|8:\x00/<<4{\x00\x01(.k\x11@<\x0fE;}*=Tr=\x02l1B\x1a5Ǭ6\x1b\\\x11j;Lۨ;vn/<8Z\x0e\x05\x07=\x12"\tAv\x1d.\x0fǼzc!=ډ<\x05쥇=֟T2zW\x17<Ö;<<\x0b\x11<;\x11={;\x141\x15/!\x134%Kn@=<%u\x11ݦ47\x07mowVAwb\x1b"=\r<#<;Q0\x08@\x16b\x18ּƩҼu+c<ۼC\x12*9\x0f\x16<;>;hFΘ<1*=kAw\x1a=\x01$\x19=\x7fTtF\nHJ\'\x1e;7.\x18\n=m4<\x1a4ᤃ0\x08@\x11yX.<\x19\x17=<\x16Ҥ;!\x15<<#\x1df9;!\x13\u0383T٩\x028<-=\x12v;f;d;]f/dR1=:|1=&&<2<<\x17gW:4\x18<<4;\x06<F\x1d\x1d=agoK\x15\x0eףw]\x1ff=\x0fql?i\x0f=`0=\x16$#\x019=я<6z(:#\x0fǼ<^5\x07\x16<%r;!*=\x07u\x00\x15q\x0fGf˻j<9=QB^5<\U0005a17c;\x16<<;;б\x11ݦ┼|1Gd\x10=\x1e\x1e=k|=\x1f}<\x1bb0G<\U0005a17d)\r?<\x00М\x03<\x1f\n<\\\riГNsR?V~}N<\x159G<"x\u0530Y^>4R\x07=0"A\x08\x1d4%1=Y:\x1b;\x0b;;?=}ey<\x14pN\\\x0fǼzc!=ډ<\x05쥇=֟T2zW\x17<Ö;<<\x0b\x11<;\x11={;\x141\x15/!\x134%Kn@=<%u\x11ݦ47\x07mowVAwb\x1b"=\r<#<;Q0\x08@\x16b\x18ּƩҼu+c<ۼC\x12*9\x0f\x16<;>;hFΘ<1*=kAw\x1a=\x01$\x19=\x7fTtF\nHJ\'\x1e;7.\x18\n=m4<\x1a4ᤃ0\x08@\x11yX.<\x19\x17=<\x16Ҥ;!\x15<<#\x1df9;!\x13\u0383T٩\x028<-=\x12v;f;d;]f/dR1=:|1=&&<2<<\x17gW:4\x18<<4;\x06<F\x1d\x1d=agoK\x15\x0eףw]\x1ff=\x0fql?i\x0f=`0=\x16$#\x019=я<6z(:#\x0fǼ<^5\x07\x16<%r;!*=\x07u\x00\x15q\x0fGf˻j<9=QB^5<\U0005a17c;\x16<<;;б\x11ݦ┼|1Gd\x10=\x1e\x1e=k|=\x1f}<\x1bb0G<\U0005a17d)\r?<\x00М\x03<\x1f\n<\\\riГNsR?V~}N<\x159G<"x\u0530Y^>4R\x07=0"A\x08\x1d4%1=Y:\x1b;\x0b;;?=}ey<\x14pN\\>fŷ\x16>=<,|\'ﻭ7<܆:\x08\x19\x0c>§\x15휻\x10ٜVփ=Gqbt\x01\x04\x10=1\x0e0=$\x0b9=Lӻ\x06\x1eq딼<]<ƿм<\x12`]}պ\x0b\x1a=V;2b,-\x02Ր\x13\x1d=ؤ^=V3dӻ\t,q༧\x157<\x06:<\x16F\x0c;_\n)UQo\x1a<\n(_\x0cB?<8;U*=\x07\rq<\x10;\x1eY\ua87c\x04<\x14=ue\x07ļ\x11d:|;sxּK\x1dϼ\'V˼<ɬ\x12;\x13Ȼ4A\x01<\x0c@j=IW\x03|=0Ӽ-u\x0cgs=\x16<|\x11;XZ?u=\x02¼\x00\x7f\x08FL\\\x1a<(:<;=*ezM5!xM\';Ɠ<\x06:;\x1b<\x1c-=f0\x01\x04֘z;\x08,̻>\x10\x15<1\x0cۼj <\\:H<\x0eJZ\x135"N=%ü3e*&\rɛ\ue757\x10=s\u05fc9:⚼(\x00?YVփk\x1d\x0b>T&<*92\x10\x05=sW\x13ܺQ"L<\x08!5=N:\x03=Ǎ;}\x133=seuR<\x17&\x03<\x12:_Ż\x13h\x0bļo;k<<Ϣt\x19\x102<\x7fƼs#}ț=;crD? =(\x07<<-\x18\nV)K&U\x16=V©jN\x07;ٻ\x1b\x0b\x05>;3\x02=FK<\x02=Bfl~\x1c=&;RA\x01:X=\x02;;iL.=\x06|e<+="LD9ϫm<`J\x13-;\x058м\x02=ئ\x19}\x1eqs;H\x12\x0f[=\x1atwc<\x160:\x18\r>6X[<~<\x04\x10%wV3<\x1eI\\\x07ۼw.;.]A\x19\x16*\x089)\x1at<ǻ\x02@Bfl<\x0c\x064<}/Z\x07\x02ݼ-<\x0eТD\x16\x0e;dư(f;\x04=.*1\x13\u05fcRE<>\\h)K=W/< ?\x1eI\x1f%;[\x7f\x1bux\x11U=3M@<.l&rR/ڼ`=9<24_<%9<\x13\x12\'<Ɣ#=\x0c\'*\x0e0\x1e<\x1bux=\t\x0cڌz<\x0c/\x0c754T\x1bN??=]\x0cǻ!-\r\x0b\rт7up=g\tMouwCx)u=^;y\x16=;d\x06<\x18<\x11\x16\x1c<>;\rCnFu=E6=B^9=Z/1<>\x17\t=m\x11D=_X\x12;1z:Q\x15i<-<\x1buxaL<ӼW%P\x04[I\x0f=kμ;\x13*/Z\x0f:E~&ϷYɼ^cC7<\x008R=L\x14=3C|\x0f";y5a2\x0c\'y5N<;\x06=>>)3\x01"\n=i1=k2k<\u07fcR5<\x02\x065\\><6\x1b\x02=Lvo-\x0f\r=\x1d㼢\x19F\x03¼S\x01>s2\x02Eb;a8=\x14}=c:<\x07\x02=a4<\x7fq.=h<ڼSٞ<\x0f\x1c|=\x12<\x11<^<0>=Eڅ\x15i&;_\x08#]G)=ԛ,\r;5F\x03B[3[3` =Z<\x08&*;\x1b\x0e=.;c\\T\x11s<+SrA<̫O<;\x06 0=\x19=cS<ނλ՟¼+=\x11<><\'\x11!= k^=\\j%+AU=8$<#=\x1c>\x06XF=ڑ~(ڪ\x04\t&\x06vE\x1dK=sHN{<\x00\x1c\x05{^\x18=˗\x04/g,\x05Mdo\'=\x18=\\zTEH`=\'\x00\x16siEU=/eY;0\x7f|]<\n\x02B%\x1eSD=[h)t\x1dG7=M:c\x13u\x19=U2\x06=\x0e\x1fZd,<&2tK<\x05ҿlw\\l.;\x1a:i5PM\x06XF=\x11\x0b<]C\u07bbV+\\I\x19\x0c|=d,=!=D=?Or\x1a6\x10ѷ\x1c\x04/J\\uX;\x14ݹ<<))<\x0eȫ<ȶ<\x13\x03T:;\x1c>\x18CN;Q=\x12~<\x13)\x1f_Q\x15jfD<\x1b^:ozļ=\x00\x12:\x7fN;R~3\x19\x18\x0e=Ůf;InZ@<̳vI\t=Re@\x0c,W\u07fbSKn<\x08cz\x18\x10=\x1a;1@\x04\x12\x02!KC<.M<\x01Jl\x01)pa\x13=\x08\x1c=\x08=\x18\x1d}GIt)\x0e-\x1e\x19\x15Y=V\x12\x00n;<5=ၹ<\n\x00;`<\x11V\x02:Å<.`\x0f<(ս$6<\x11,=\x1ayGG\x01ItOc\x0eѻ<5RD\x1a=>/=q=,t1\x03<\'<2\x15;\x0b6=\x0e;<=\x0f˼~;d&".%\x19=?\t K`3zBVA<\x05\x0b\x05=,7;&<=5\x0b=\x07\x01;cKp\x10Ywټa\x02\x13\x00>;zًmu;ݥ)<></k\x0f\x13홃6\x18/=O~\x15[<{c;-g3\x03\x02;IkT*I\x08\x1cZ\r\x076,6ۏ\x06\r<=ļyB\'<) XN<Ɋ<{%YּJppa\x133$=\x04Ќ{F:Rμـ;\x13i\x0fvm8=\x14\x15<=ɻRe<2<\x1f\x83:\x06<<\x14<]\x07\x1a3w<=\x1f=\x15Ȼ\x0e;QcA<.5j<߆\x1a<:x\x07%\x15Ud=ш\x0f\'x1=\x05:t\x07<ح<[3:ӻ\x04{{<)\x0b=v;"\x00%Y\x18"t\x0fճh\x05uY\x19\x1eHrG\x01.=\x0b=+=%c=<\x15<\x14u;\x1a\x12\x02=\x0f<\x11\x12%<\x14}xYS\x03W[G;;\x04\x07\x1b\x06;4wd\x18ݧ\'.=vϼc;l=\'\x07\x07\x15f=\x01\n\x04\x01=\'6\x08=Q\x15<\x05\n=<(VR\x01ح4wyºf<\x088"L<\x08!5=N:\x03=Ǎ;}\x133=seuR<\x17&\x03<\x12:_Ż\x13h\x0bļo;k<<Ϣt\x19\x102<\x7fƼs#}ț=;crD? =(\x07<<-\x18\nV)K&U\x16=V©jN\x07;ٻ\x1b\x0b\x05>;3\x02=FK<\x02=Bfl~\x1c=&;RA\x01:X=\x02;;iL.=\x06|e<+="LD9ϫm<`J\x13-;\x058м\x02=ئ\x19}\x1eqs;H\x12\x0f[=\x1atwc<\x160:\x18\r>6X[<~<\x04\x10%wV3<\x1eI\\\x07ۼw.;.]A\x19\x16*\x089)\x1at<ǻ\x02@Bfl<\x0c\x064<}<;>9\x02u\\:\n=Y;K^=\x11F_ygDX n\x07+/x=Ӂ\x16J];/x&\x1c:S<|==`̬=+6\x13c\x1f+6Go={=\x06<˺w=\x83s\x18wX\x0c\x05;>p<`|9P5<>\x1c~\x17Ǝ<\x1b2\x0b=R\x04\x16;G\x1cN4>\x02Czc;^<£\x16=Ad\x1fClX)ź\x1b}WuQrŔ<+<\x05<\x15\x133<\x02th0\x0e\x06<%N[\x11\x18\x0f:#G\x0f<;;5˖<\x14o;hny<\'<[ɼu(/5Ӓۯ\r=z~-\\:r\t;n<;";L:\x0e<6Y^;[>-<ͻ}=S1=v\n;PD=>pɱ\x01ļ+м7\x19J*\x0f;\x02ڼz6=b\x11A\x03\x19!8v\n\x0ek=[\x12\x1aa\t<1\x1exB~-\x1d=kwﹰ0\x11]О<ͻ\x19\x1a=k\x1ap3: <\x02D\x0e\x15ѝ0=Ib\x04⢭<\x01ͺIbAhaM8=X;0\x15o\x11:\x08=~⻰߉{<\x07;3j +6ֻ\x16\x11=\x1f<}X)<:Ơ{%(1<\x06X\x12=f^b=x.j<\x0b\x17;Vj=\x1a<=Ӽ\'X\n=81;9\x1fLI=;G[8]=G;Т;\x14\x07\x0f0\x06=d\x02%I9"Wʻ\x12f\x1aN<\x00\x0c\x0b/+\x0fb>\x15=\x07\x06\x01@(p\x1f=;\x0c\x17<1p\x04<\x12<_MЎ;W\x11<\r;\r>:\x1b.ػB;e\x1fk=NP=$v\x0bKG{}L\U0003c704;MQ}\x1b*?&=\x16߁<\'39`\x08R<2*\x1d=\x0c\x17\x16\x1d\x0eM;<\n=\x0f\x06(#;f\x0f=w\x11:^K/Z\x07\x02ݼ-<\x0eТD\x16\x0e;dư(f;\x04=.*1\x13\u05fcRE<>\\h)K=W/< ?\x1eI\x1f%;[\x7f\x1bux\x11U=3M@<.l&rR/ڼ`=9<24_<%9<\x13\x12\'<Ɣ#=\x0c\'*\x0e0\x1e<\x1bux=\t\x0cڌz<\x0c/\x0c754T\x1bN??=]\x0cǻ!-\r\x0b\rт7up=g\tMouwCx)u=^;y\x16=;d\x06<\x18<\x11\x16\x1c<>;\rCnFu=E6=B^9=Z/1<>\x17\t=m\x11D=_X\x12;1z:Q\x15i<-<\x1buxaL<ӼW%P\x04[I\x0f=kμ;\x13*/Z\n-֞@C\x0fqI<ҠNL\x07=\x7f%:nмAcM6<7Յ\x01Qʧx)ެ\x1b=\':\x11\x1f=Y[k\x06{.v;:%Э;$t\x07\x1c=F*z\x0e\t8\x1d\x18\x19<~><\x1e\n;{\x1dڼ|M0+<=R<-7<\x03=.\x05\r=R\x0e\rR<=\x03\x01߿\x16R=A<\t$P:_=\x15\x16=l\x1dY-<\x01Q)+%=šrٻߦ+G\x08=J\r\x1c;dZ;\x008̡<[\x7fy;X\x1dF\x0cFq\x04\x15\x07;0)\x1b|\x19\x13;V4=\t\x029z<;"; <ސ<6l\x1dKOO.\u05fcT\x06\x0e\u07fc\x01Q\\ؠ<\x16i=\x1eu=\x17FE=၀Msr5<\x08u\x1f=\x04\x01U<\x1b*<Ɏ\x0f=fT\'=<[\x0b\x17ӂƼZgԼq\x0e=";P:=ǺxR?:N3\x01=Ӽ&V@\x03Q:Düt<~ӂƼE\x16=J.i;<(\x00<\x16\x14<< 0<۹<:È;ӱ.;\x00ms\n=~g\x04<;N!s<ĉ|;Y\x16j`\x1e;^<\x111=7\x05M\'<.<,\x10DO<', 'text': 'Professor Kisha N. Daniels (Dr. D) was the instructor of both EDUC 101 Foundations of Education and EDUC 204 Educational Psychology, the two courses I took in the 2020 fall and 2021 spring semesters. She adopted a strategy called flipped classrooms (Nechkina, 1984), which is a type of blended learning (Friesen, 2012) requiring students to complete the readings and learn contents before class, and have discussions instead of listening to lectures during class time. Before each class, students needed to watch Dr. D’s pre-recorded lecture videos and read materials to have an overview of the class content. Then we filled in a note-taking guide to reflect on what we had learned. Finally, we attended the class to have in-class discussions, group activities, etc.\n\n\nAs a math major student, I was used to listening to lectures without speaking a single word for a whole semester. I had even thought about dropping this class after I read the syllabus! However, Dr. D’s class opened a whole new world for me. Since then, in every class, I would excitedly click the “raise my hand” button in Zoom—I could not wait to share my ideas in the heated conversation.\n\n\n**Optional Attendance to Synchronous Classes**\n----------------------------------------------\n\n\n2020 was a year of chaos. Coronavirus and the international travel ban are distributed to students all around the world. It brought many uncertainties to our lives: unreliable internet access, different time zones, infectious outbreaks, etc. The school year taking place at the same time was obviously not easy at all. To ensure class quality, some instructors took mandatory attendance for those who were able to join the synchronous sessions. However, Dr. D was an exception: she made her synchronous classes optional, even though it was discussion- and activity-based. I was wondering why she did not make it mandatory, how she provided a relatively equivalent learning experience for those who couldn’t join lively, and why almost all the students still came to the synchronous classes.\n\n\nDr. D believes having a certain level of flexibility as a professor is always difficult, but educators should still manage to do so since it is not the reality to control everything in education. Students are adult learners and should be treated as individuals. They might have different learning preferences and face different situations. Giving them flexibility can be a form of warm support through hard times. For each assignment, Dr. D prepared two versions (synchronous and asynchronous) with detailed instructions: if you can come to the class, then you can work in a group to do the assignment; if you cannot, then finish these sections of the assignment as equivalency. By doing this, every student was fully supported.\n\n\nAlthough Dr. D’s synchronous class was optional, it achieved a relatively high attendance rate. To tackle the low attendance rate problem, Dr. D invited students to relate their own background knowledge to the course concepts. If some students did not come to class, they may not have a chance to realize how educational psychology relates to their everyday life, and what their peers’ educational experiences are like. Once students agree that class is the place where they can learn more, it will become their motivation to attend class. “Students are adults, even my freshman students. They are starting to figure out who they are in the adult world.” She, therefore, lets the students decide what is the best study strategy for them.\n\n\n\n> This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9aefe5bf-1e1f-4b31-ae11-5874c5393dbd', 'payload': None, 'score': 11.807439363540126, 'document_id': 'index.html', '_node_content': '{"id_": "9aefe5bf-1e1f-4b31-ae11-5874c5393dbd", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/lile.duke.edu/blog/2021/12/flexibility-adult-learners", "filename": "index.html", "filetype": "text/html"}, "hash": "c12bb19afe9091cf6fafa09e70f8b388092e96d62da508203161dace2cb3af57", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a427db5-ac02-4ad5-96b7-8dae766073a9", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "da61cf9bbb421fc985a175359a38bfee69742fb1d22c5e91ab9fc51a580553c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28a6432f-f95e-4e16-97a2-bc96b30e43f2", "node_type": "1", "metadata": {}, "hash": "734cbde4b860d7eb88633b64f3ce5635c61c46f1eee2dd8fb3ea547d481396b2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '@..\x1a!>\x02L)=<¼LR9"-=f2\n\x1f8;I\x13\x06̼\x19E;ǁB=^\\"Ⱥ)=)@缚RV\x1bJ܋g\x1f\x18e\\s=|\x0e<\x12\x19k 0h;o\x06\x08=^`:62<\x0eM\'=<\x0b\x1b_=59?/\x05\x1f[=I\x04\x7f<\x0b\x0e[;\r Qp=\x1e_+DySz\x14:D4;e:<\x15uN=={;\x1eF!8<{\x15\x03J\x19\x0b\x1c;\x12=!<+DP̥,\x10.\u07bc+-<1\x15=\x00k<\x01=\u05ce6-\x11֚ȼ0\r`;nB;\x1e\x19<Ѝ;]<*\t;\x1d*|$;^\x14SGJB)_\x05\'\x14\x03X8\x1c%=eX=\x13<{z=%W39L\'߷{:IC2=E(<\x1cAVR\x7f\x01KR\x02\'\x12<\x0cI>\x00\x19R<<^<@Pg#=C \x08=ߟ<.<һ`d#\x16<\r<-s\x0fϼ =\x14fڙ;\tB4<\x08 This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000\\).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:8164a0d1-1226-4de6-8d7a-39699df9bbb1', 'payload': None, 'score': 7.2496097371351755, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2826244', 'document_id': 'bfe60902-d299-44d5-af13-f68c06604fef', '_node_content': '{"id_": "8164a0d1-1226-4de6-8d7a-39699df9bbb1", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfe60902-d299-44d5-af13-f68c06604fef", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "4423c15f0262081da99b5983d0c0d4888dd19d09a77408a79310122494d98daf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1101e903-21fb-4f1a-a913-cd4d0db09034", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "a0ce698216bb12351e6c53c1f0a2e4b69df29c33d5af55c6ee316510f7e616c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc4f1340-3c4f-489a-ad6f-ff61fc6ae5bb", "node_type": "1", "metadata": {}, "hash": "f086c88c19abfef10f0e7100cf75308dc71e1c1a8b0f65ac1fe88aa3b3693b3a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3197, "end_char_idx": 6819, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf', 'vector': '\x10\x1br\t\u07bc\n}\x19\x02JG<;JT}\'j\x16q<\x0c\x0f\x03!:ʊ\x0f\rnQD;?#M;O,<ⶊ<\x16q1<\x1e\r軛ٲ8-}Իg\x0e=\x080?#M\x17M4\x0c:Z{\x13<\x1e+!5(r>*x~=J<姻J:SVkB\x0c:=\x1d\t;\x00<\x04\x12s\tB1j=s\x195f=ӻ-<1GŒ:[.\x0cb =$k\x0bJ<\r=姼\x1b\x08<\x04)\x05\x06=IWD\x00=˼\x17o\x06+=Ą=\x0e/\x0bl,<_\x0b<\x07<{\x0f;Ym?l:=dp@<{<\tZ̼\x12\x0c\x03=\x1a\x01"=]\x0c:;\x05=ޓ\tf/y\'=\x1aָ݅\x17\'<\x1be<\u0602;A\x0b*a<ɳ<>\n\x15\x7f줼~+\x0c:R]=\x14\u07fc\x0b\\<ʽ\x07;k\x111G\x1f\x104jOn;ej0A=F];\x00\x1e;\x080"6V\rr4\x1ad\x05u/<+8;\\\n6=r q<ȝ\x12=\x15\x0e\'#=A\x1dⶊtlлS!m=\x1bU<2\x14=`\x1b8»\x1c⻨ӌ],\x13,&r>*"L<\t\x10d|\x0c:$:\x07<8T\x00\x05=\nL=lv;ќ\x12\x0c&)\x01oxE\x10g\x01D\x18\n:4Q컼c;\u0bfcч&ثF<⠼ּ\x0eO=ܯ;FV=\\<\x03I㼋7\'ٕ};\x7f 7=\x1b=\x02<\t༜뻘NmB\n\x13㣼fһ;TW5=\x02;0\x1fD;뼮<$;\x1d =>"=/"==\x7f\x19\x1fʼݎ廬C꼈\x1fLoU/:#t\x1f{=(#=-<܋;+E>;\\G\'x\x17\x13kΊ\x027s5T=\x1eV\x0e@\x7f 7IϼxI/ͼ;\x0f=[<-<\x06\\+<\'g;k6<3\ue63b\x13=u=\x18)b\U000bb508B>"=\t=\x1cwC=#\n;nop\x05;%=I\x1e=8Ƹ~vw\\Uȼb@z6Ja\x0fq1:țJ=,~\x7fȼ3㊻\uf7bb\x15;=`\x04\x06<\x02\x00E< “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom \\[when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs \\-animals – photosynthesize, so it is eye\\-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step\\-by\\-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:3813364d-5d0b-43b2-8b98-89f90953c7b8', 'payload': None, 'score': 7.140919556971079, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67846', 'document_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', '_node_content': '{"id_": "3813364d-5d0b-43b2-8b98-89f90953c7b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c67a53bb-8127-4a54-8b71-e1b38caa9ff1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "19d045065fa9deb404ca09df5d278e17246849ecf0ad229013a4f1b8ebdf6baa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44dee6a0-7eb8-4a9f-96db-c955c8a4af03", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "d32b9c44375b348bc666ef0aec15d9716110288a771b9adacf9715e299e14eb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "db799e37-46c6-4470-b828-20f113c1c7e1", "node_type": "1", "metadata": {}, "hash": "95ca862141792c058376d879a3bf777f6a55c3680aed266ff9ed2bdabe4d79eb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3981, "end_char_idx": 8579, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', 'vector': 't4-N\x19\x16\x04\x06%3\x0b;)R;Xv\x12@:\x1aXv4!&m\x08<(0j=\x0cr뺚\x00 \r9:\x03R=y௺\x00F\x1e<\x1a;;\x16\x02:->=ۜ<6\x11=VI,aK)Aнx<;)<;<\x1a,=\x08|WA<~y/=DI9\x04+L\\}=W\x1b<]üt\rxtR<\x1c\x17+< \x10\x1bP=<\x17\x12z\x0e<(0j:L\x03EZFe\x10h;WTb=Y<\x1e\x0c=\x17,;\x16%<<\x11\x1e8\n\x0c+\x12;\x16%<\x0e\x1d<^Y\x04<<]\x1aj<<;twϻ`?\x07p=JӍ;&\\"y;IwF7"\tgIw<\x1bw@\x1dP\x15E\x08! “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom [when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs -animals – photosynthesize, so it is eye-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step-by-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{24916 total, docs: [Document {'id': 'test_doc:d0115143-430e-4f6e-aef7-923890926e3c', 'payload': None, 'score': 101.0169851541303, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '112550', 'document_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', '_node_content': '{"id_": "d0115143-430e-4f6e-aef7-923890926e3c", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "hash": "0726ffc974b24f970bf6421bb51c3ade1de60edd796cf23d140f982f7c10de6e", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ab538701-256d-4eab-8f23-bc2b6ff6d2fa", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 112550, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html"}, "hash": "dae3fb0c2d969c49b50eb5752ffc5029228f3af57c975ad492c0f38f4b03f58f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "705942d2-e4db-4a47-9d46-150d9de5cd08", "node_type": "1", "metadata": {}, "hash": "b7eace9b105576763f42d00293558e93727678f4acf348860de34c7fdd283cb5", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 6225, "end_char_idx": 10141, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', 'vector': '\'\x11<.#&=?e\x0c\x0e:\\vN9=;;\x04L=\x1b=;o;;gk=\x1b:2üWh3<"7O|11ȇ\x1e\x01=,=Z;$;y⼦\x16?nм\x17\x01>4\x11}=Q=f2C<\x06o\x191\x07)7}\x14Yi\x1bm<;\x7fԳl3:ӻ\u07bbK]]4+ae\x14^:\x13<\x1c\x1d/=\x01{\x7f;hټ\x14<-_\n=;N=6<\x1e8"-\x199,<\x04=_([ 4+\x05,Q%c=&=S;?Q\x00";=OGP<$\n;N%7\x1e=kG1u1Q\x10\x07=\x05u=\x1f:wgn\x1aY\ro<৵=<ͻ6=\x1d\nX<՞,><\\v+>;ȇ<|B˼Q\x12\x0bV{:!<Ǻdtμ<\x07FP8Ꜳ<<\x0b=o\nBT\t#\x1f{՜\x02)=([х;Q<)\x1aǻ\x1a\x02\x0c=/.\x05=;;*k\x02=Ɔ\x13<\x03,C7\x05y<%37L\x12\x03&F^N=\x16ĺ=b\x0f=h;\\ߡ;4\x11NI;\x03,2;,$;`;pltvd=5\x15F=\'dSlO*;\x06=W<\x0c\u0381\x1eiWX=<-\x0cR;\n\x0bƻXV\x19F\x03d>\n{\x14>\x0f㼒z^=Nz{=\x16<\x0eKjG_<谼\x15~q2<\x1eAF<&\x08l;"0X;s,=\x00ebȻ\x10=/\x03v*=Ժ<\x13Hf\n/\x03=&f;%=T@;;W<\\;\x7f>\'b_i;+]3E<\x06\x00\x0e>l=9ܻMJ=\x0e\x15\r>f\x1e;-\x1e\t;=t0he\'=\x17xż\x0b$ͼۧ\r,OdƘ<^\x1e~;\x14؏=0 **All courses** link.\n\nIf an instructor would like to continue making changes to a site, allow late submissions or other changes in their site, they can switch the site to be dictated by course participation dates instead of the default term dates. This is done within each site’s course settings. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354) on this process.\n\nIn addition, instructors may set within the course’s settings to ‘restrict students from viewing course after term/course end date’. By doing so, the instructor would retain access to the site but students would no longer be able to access the course at all. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269) on this process.\n\nNote: Sandbox & Collaboration sites are not dictated by the same controls by default as they are not associated with a specific term.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSetting up course site and content\n----------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nHow can I enable/disable a tool in the Course Navigation?\n\nOn your Canvas course site, there are some links (Home, Announcement, Modules, Grades, and DKU Library) enabled by default in the Course Navigation. But if you want to customize your Course Navigation by adding or removing links, you can\n\n1. Go to Settings in Course Navigation\n2. Select “Navigation”\n3. Drag and move the tool(s) you want to add or remove\n4. Click “Save”\n\n\xa0\n\nFor more details, please see [How do I manage Course Navigation links?](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-manage-Course-Navigation-links/ta-p/1020)\n\n\n\n\n\n\n\n\n\nShould I adjust the time zone in Canvas just like in Sakai?\n\nYes. All DKU users are recommended to change their **personal time zone preference** to China Time. See [this documentation](https://community.canvaslms.com/t5/Student-Guide/How-do-I-set-a-time-zone-in-my-user-account-as-a-student/ta-p/414) for detailed steps. All DKU courses use the China Time as the default time zone.\n\n\n\n\n\n\n\n\n\nHow can I copy over existing content in my previous Canvas sites to a new site?\n\nInstructors can copy content from an existing Canvas site to another including course settings, syllabus, assignments, modules, files, pages, discussions, quizzes, and question banks. You can also copy or adjust events and due dates. Student work cannot be copied over to the new course. Find out detailed instructions [here](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-copy-a-Canvas-course-into-a-new-course-shell/ta-p/712).', 'ref_doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c533cdc5-9ca9-4392-838a-416efcc47b89', 'payload': None, 'score': 81.23253071214191, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '417741', 'document_id': 'f4ece21d-8d06-40e7-a47a-297ff4d2cf02', '_node_content': '{"id_": "c533cdc5-9ca9-4392-838a-416efcc47b89", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f4ece21d-8d06-40e7-a47a-297ff4d2cf02", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "ddade1bcbfe7aaccdbc3b5146863be9efdcc4f12b4b4bafd131f8ed6ef19e3eb", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "896a8981-c39a-43b8-a50b-7d769ef500f6", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "3ee38770b0a269b83f5bd48fca6fad36d601082d6c68f0f9348d7c45748b08fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3fb6dee9-bad4-4058-a845-288ff4a1356a", "node_type": "1", "metadata": {}, "hash": "5a79b341b4a35ac8fd3dff0c2bbb3cf27a6cfe724a34804ba1c42913f9a75588", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 103547, "end_char_idx": 106536, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html', 'vector': '\'-Aۼ\x0f\'y?/6j༁|;q\r=\x161.=5aJ 6@zH:`\x1a\x0c=]<\x1c1H<5a<^!<]={2<\x02GwNrb`\x1a<\x1d\x03p\x7f=#C )R\u07fbz;/o\x13w\n\x10+s"l\x18B=/=T)ڼ\x12<\x1b(<ûJg\x8a"q\x18=O\x11ټ:\x03\x12=1\x033;\x17\x12\x19\x01Z;\x15=oX9\x0bM<\x1dP<4=,ۯ,<\x03\x18=(n:\x1a\x16h==\x10+sHK"Ȳa7"(@\x05<ϊ<\x13*\x15<`\x1a\x0c:;Sb<=Yky<\x0bF=\x18<\x11ԹF\t%~?\u07fcðli\x1a.W\x16y\x15M.\u074bƙhL\x00=\x19\x1bo\x03m<\tK\x17;ѻg\u07bc#=/<,=]e<\x00\tхd<5\u061c=NcQ<\x1d3<\x11\x1e\x04)2@μɑ(\x11K\x1c=-JP=T\x1bɖ#<\x18=;\r=\x03t;l<4\x1c\x1c\x03F<\x14\x11t<3젼F=S\x14;\x1d")hܹf.\x06\n\x13=̼\x0f+r}12\x132=J@dTJ\x05\x0e\x10b@};?X;M+ZD.\x06\x11\x0e9A\x1aչN!ۼ#=Գ-5=4ԃ(:\x18NH!\x1fPռ\x16\u0383G\x16=J<70<"f\x18Q=Kt<=\x1a =dU!<\x1e<\t\r\x1c\x15=J<8;g;*ɦ<9*yr=[\x02k=T\x13\\:\x1d=Vf<μs\u07bc]=Ⱥ"=Hճ;%\te<\x19\'c=S쁻 \x0fF^KD\x05hn@@Zbu=*\x01\x1f+ip;\x19kr\x04,U?<\x038G=pP;뻠S1X<Г<\x06lH\x06\x19k2ca:ּْ;ܼSeqP=K\x0f\x19\'\x1bۢ*\x18y\x0ex\u0383h@=\x17[L3h\x11\x05\x0f/ϼP\x04.\x7f>;,ٌ/+=\x07~\x0b<\x04^\x1aZ\x0bx&~D<\n/\x1c0:\x02<\x16\x18]\x12QDH]qX\x19;k`<\x10G=(<>6I<+X~;Y\x1d=]>;\r\x1cl\x1fDw\x0f<{Nsc\x1a\x06\x03$Z<%\teZs<,<\x05=fN=R\x03F=EUݼ9\x0f\x1e=\n}.^x<\t\r<\x08<9㡱=$|=\x08;bo\x06\x16I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b<#E<-ؓ<1\x7f\x1bxT;!\x01>f\x089Fj=Ao\'<\x10>\x11<[T(^R.;\'5D9v=0r\x16\x05<\x0c\tt\x0e\x15\x02=<\x15;_p=\x03;ьx;W\x06U;\n<}\x14l\ue47c"iIa=rn\x1dǼLG<[\x18^R.ټ@\x1b:;iWڼ./f\x18\x12=ш+K9eEl8=v<=Hһ+;fJ4Ut\x0e<$)<27;/S=.,\x01L<\'5D\x130;]\rS=?=\x7f\x0c(<:ӈ9\x07~=8\x11\x04\x03ۼӈ@LS<79^$\x1b=\x1e=bO?v\x01\x118y=ː:\x16\uef7cWY\x1a;#\x15<9v7B=\x17ڻ²<\x1c\x0c\x06\x01<\x03\x9aP<(\x1e\x04Yd=~*\x10=fF\x1aR };w;Y\x03L=\x03\x05w<\x15DnT\x14Ip;l탼S\x06=\x18B\x0e\x15r\x16/\x1cfF=|+=\x1c\x7f \'=cM<;WE: \nR]\x17=mc= \x19De@qü\x13\x1d;$=\x00\x08f<|_C9=\x01=\x12N\x12μ+5(<\x05\x0cѼ\x0c_-k$RQ\x13=h\x1c;"69*N=/ü\x1e"9`:5\x12 =垼\x1fqg/"\x1d<\n\x0c!v;\U000a1f1f<=/$Wn=\x0b\x03<\x02\x05\x0cQ=;Kj<<@\x06=&<\x0cJ\x16=?=\x10s{\x18=ؼ\x0c\x7fp\x11<\x1c\r(] <~X\x10=#$\'=7\x16A;O_;\ra=\x14\x06淯Ͳ\x00<~Xu@ݼ-|\x0f=\x14R=,9<\u058b`G\x03:W/\U0003cf02\n;X\x1eҵ\x158\x04=vq

=\x13sJJ6\n<\x05*H=l(\x05"\x1d>=:\x011\x06+;TԼ=&\u05fc\x19=\x1fF}=F;[Ͳ7"\x1d;Qʻ72<&9\x02SJ=m<<\x7f<\nּ\x0c?=\x13l><(0h2\x08|iջ\x01=)\x04\r\x11\x10\t=u<8p(D>=X`\x14f);6$<\x1f\x17T#\x11K28<|E \x06=\x15W5<\t\x17=-tڼ֘\x0cݺO*WQd<詼\x17Lڼf6$\x14🌼#7D:lwm;7mg)=*=\x7f(=q\x03WEM3<\x18;=`;\x05ϻWż\x1b\x19<ݛ\x0f@ac\x19{ʼ@ƻ\x05\x1f=&\x03PI4:<\x1f屽\x17Ӽ\x11l\x074"t=\x1e<"?=bh\rW;m|\r*\x10\x14=K)x\n>\x13\x11;*\\L=\x7f?<\tZ\x17;@\x00\x05 ==_\x19;\x05ϼ\x15@<6\r2=P;t\x1b˼0\x0eP\x17%=T==`7<ބ?\x14Ԇ;ʑ;k\x12\x17S=0\x0e=-g4oN<;T\'Ϻ"\x197;V<\x00<\x04;Y\x1f=t;%Q%*<[?>r =\\Lf=Ȼ(\x01<9,%;a*zsw<\nX<5B5J\x00u\x02:\x1e\x0c{6=Vn<;%d=H»3\x04<,q3\x11?<桥<\x19\x0b2@=R?)\x15=ͩV;#ݼ<\x0bJӼ|\x12\x1b\x0f=<\x19?\x14L\x1e\x0f<\x1a\x04<̛\x1804=cQ<Ԛ\x05\t;4a&8弯xVn\x13=:=9;\x14\x07KY1Rq=g\x16;v;', 'text': 'The code elaborates standards of professional conduct and expounds the responsibility of the University to maintain conditions supportive of the faculty’s pursuit of the University’s central functions. Refer to Appendix D for the complete code of conduct.\n\nDuke Kunshan University Policy on Faculty Professionalism\n\nDuke Kunshan University faculty members have an explicit responsibility to foster an environment of honesty, fairness, trust, courtesy, and respect. Faculty members are expected to model professionalism and ethical conduct and respond to unprofessional behavior on the part of others.\n\nProfessionalism refers to the ethical, legal, and appropriate conduct adopted when at work. Unprofessional behaviors include, but are not limited to, behavior that is intimidating, disruptive, threatening, violent, abusive, dishonest, offensive, illegal, or against university policy. Inappropriate behaviors will be addressed with interventions intended to promote insight.\n\nReviewed by the Duke Kunshan Faculty, October 30, 2020; Approved by the Board of Trustees on December 2, 2020.\n\nRevised and approved by Duke Kunshan Faculty, October 25, 2017; Approved by the Board of Trustees on November 17, 2017.\n---\n# Accountability and Professionalism\n\nBehaviors that embody professionalism include, but are not limited to:\n\n- Adhering to high ethical standards\n- Conducting academic work with honesty and integrity, and adhering to policies on responsible conduct of research (appended in the faculty handbook)\n- Demonstrating core humanistic values including compassion, empathy, collegiality, and respect\n- Taking personal action to support equity and inclusion\n- Responsible fiscal management\n- Responsible, caring supervision of staff and mentorship of students\n- Exercising accountability\n- Dealing appropriately with high levels of complexity\n- Reflecting on one’s decisions and actions, and assuring one’s own fitness for duty\n\n# Faculty Responsibilities to Students\n\nFaculty members have a responsibility to promote a climate of academic integrity. This includes talking with students about the importance of academic integrity, serving as role models for students, creating an environment that promotes trust, and setting clear expectations for the class, including expectations relating to appropriate attribution and the extent to which collaboration is permitted.\n\nThe DKU faculty takes its teaching very seriously. Members of the faculty expect DKU students to meet high standards of performance and behavior. It is only appropriate, therefore, that the faculty adheres to comparably high standards in interactions with students. The following list of specific faculty responsibilities to students is predicated on the fact that students are fellow members of the University community, deserving of respect and consideration in their interactions with the faculty.\n\n# Syllabi\n\nAll syllabi go through a rigorous review process at Duke University before the course is accepted for teaching at DKU. Once the syllabus has been approved, the professor may then make minor adjustments to the content and structure of the syllabus at his or her discretion. It is also useful for faculty to share their course plans with the appropriate deans or program directors at DKU.\n\nAt the beginning of each semester, faculty members will distribute course syllabi to their classes in order to provide students with clear learning objectives, a prospectus on attendance and grading policies, and schedules and deadlines for exams and term papers. Syllabi should include a schedule of topics and all texts to be used so that students may prepare in advance for classes, and a statement about academic integrity (including a clear statement indicating that violations will be reported to the Dean of Undergraduate Studies or Director of Graduate Programs, and on\n---\nhow violations will be penalized). Each semester, faculty will provide a digital copy of their\ncurrent syllabi to their appropriate program coordinator for the University record.\n\nPlease note that coordination must be maintained among all of our various activities, both\nacademic and extra-curricular, and any changes made to an ongoing course may affect other\nelements of the program. Thus, while teaching a course, if a faculty member decides to make\nsignificant changes to the course content, deadlines, or assessments, this is best done in discussion\nwith the appropriate program dean or program director so as to minimize any adverse impact on\nthe program as a whole.\n\nTextbooks\n\nTextbooks will be listed in the syllabi and will be available for purchase at DKU. Copies will also\nbe in the library. Students are responsible for the assigned material in the textbooks. Students are\nexpected to either purchase them or to use library copies.', 'ref_doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'doc_id': '7aba813d-dab9-41dc-a97a-993ec69ba196', 'file_name': 'FACULTY-HANDBOOK-_2021_V7.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/mainsite/2022/11/FACULTY-HANDBOOK-_2021_V7.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{17534 total, docs: [Document {'id': 'test_doc:a3142f03-b03e-441e-9145-cd8db74a9829', 'payload': None, 'score': 24.640297524336233, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '135317', 'document_id': 'e3d484ea-0b8d-4a2a-8390-5a54898ee946', '_node_content': '{"id_": "a3142f03-b03e-441e-9145-cd8db74a9829", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 135317, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e3d484ea-0b8d-4a2a-8390-5a54898ee946", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 135317, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html"}, "hash": "71b24b2ee13f18595183b8296d4c42b8622ec1facb75d8fb2aba38a3b8c96856", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "de8de648-1ddc-42dd-8935-914cf27506bf", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 135317, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html"}, "hash": "5fb3274fd35dad69a18d0c4cd77cb8baea6d828a186911ec3b04127090269193", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5566, "end_char_idx": 8500, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/alumni.dukekunshan.edu.cn/contact-us/index.html', 'vector': 'vE|vS/wa:%DB= =h1ilN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 14.485480856092394, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{31543 total, docs: [Document {'id': 'test_doc:dc6b4b54-668d-4bd5-979f-f5b0d3c1b713', 'payload': None, 'score': 49.627979404357724, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '334289', 'document_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', '_node_content': '{"id_": "dc6b4b54-668d-4bd5-979f-f5b0d3c1b713", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 334289, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f269e798-b4fa-4375-a450-1fceeafbd955", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 334289, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html"}, "hash": "a1859c814216ed9a2152499b293500c8ccf1808497d4fb7009b7c5fac041c6b4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e14a2e57-4198-4d11-b289-ac9959df2fba", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 334289, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html"}, "hash": "22238acb81ca076dffb5802332b6872306c858eda15089149b1795652f5711ae", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "592d6974-2431-44e9-a92e-39c5ec3f01fd", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12759, "end_char_idx": 15985, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', 'vector': 'V`\x1c<Ө\x17\x0b\x0e뻇ϙ?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 49.6279794043577, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u67\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;\x16\x08ڸjo;L=|\x1b\x12~<4vB]ȞI\r\x16Ǽ\t\x14%jF<=3L6\\ 6=3G㼄d\x0fAm=)ϼM\x14gX\n>G<仒\x0c;=\x1d仟3\x13HS0bc=u<\x00\x01p0Iߴ!\x11\x16=\U0008f53cV2<\x073\x0f\x0bЎW<\x1e\x05b<\x164˺k\x1d=ը\x14=l<9~B4#\x18\x15V\x14`r=\x15=.d-\x0f=\x19=If: \x18=\x01]uY抻l\x18ʻ]3[P\x11& v=\x1d;E-uG0=b\x0e=?8@C(5<押 t;;\x1e5;=8Q;:\x14\x11Ѣ;8=NX\x129dwt\x01=OS?=ŦB=ŶIߴqO)0]\x03v:l۞F?=\x033\x150\x12=VCMI\tR<<<<ٽ=`5\x08/x<[*`a\\dDnR<\x04=\x18<%S\t;Iߴ{=\x11\t{\x013;}?\x0e\x1c<%b|;@N5^nqO\x14$\x1e;x\\z,=|\x1b;9A=ڮ<^<\x01;e#i<_1*\x18;:<;R\x01Ec\x00\x07 2U7d\x11={\x051B;+\x01\x1f=(rq;\rt\x07=[:\x03Ey\x0fkF=<7);20茼M\x1f\x0c=^\x10E<ǖü>\x07a3nf\x82nfXȃ=S\x15\x06뻄=$r\x004\x13\x1b|(nf\x02*&);\x13_<\x0bʻG7\x0f\x05=\x0c!:A\x0b=B;n\x1f;=q<0\x0b9؉;m\x16- \x1a_Tp\u07fcv)W?;c\x19\x16B=%HM\x14=S;<;|A4=\x19<\x1fͼz?;\x17$\x14SћI<^:\n<>̼\x06\x00zm_\x17\x14J\x1e<\x19I9l\x1b%5\n\x03\u07bcR=!Vm<\x05=1\x03<6y:9A\x1e=5A=8\x7fJ\x06NV=h><\x18\x11ּT\x0fch<\x148A\x05=\x19h>p\x1a);\x10쐾Xf<\x1f\x07\'5ռqD\x02Ur9u<_\x0eOKw\x04;_8R\r\x03;\x0e%!m-9Ga=3Tr=\\$u\x00;J\x0bʼ\x0c<*w3\x1bη<Ν˼(ּMMKp;\x0bJ<\t<`R<\x0b<փ\x0eƲ<\x193n=\x0e`4ޏsټ|D=ռxH*7\x1dFɖ;G={;u\x06B̼BƼ!te9(=V\x17=lVM$M\x19SS\x7f=e@Ng<р<"\x7fV"\x1c(<\x1em:DSj9Su&\x02,=xG&=v֨;\x1a\x03<1<Κ<\x00;43>S9=\x11<\x10c\x14=ZH<֝;u;X<=F\r^raYL\x0eU\r;*\tM3=\x14S<\x07\x1ax\x0fb9KrWI\x01;K:\tM\x1a㍼;C0oԼN^*\x01<{\'ü+\n\x06=9`\x0b<_\x02<>\x1b\x08)<7RX;=Vk[<\x1aּhS~\x0f\x03A㼐*r\x08=\x0b*ګa<6t;wc\x06vb=7߁\x0eJbڻ\x06:\x14м\x056<\x03\x0c=\rnv`kֻ\t\x06\x14\x00<ӧ;W\u07bcG\x08]\x01\x17!<\'+k<\x1düxg\x1c\x1fh\x1e;\x12\x1c\x02fC<ռ\\=^\x0e\x10=\x0f`=\x03\u07fcd< \x00=\\<8\x0bz<=C,<2\x1a=ټ:Q\x1e7b4;ƜЇ:ݣ;W<3\r<ڰ-_v<~{=Ƽ\x03ʫS~\x02N\x0e\x104GASEYW\x0f;T[:Jºˉ;vd]=\\;:;#\x19ò=\x1d\x1f;̑\x08.(;\x18F\x1f.$=R\x18\t:x<~\x059\x003<;ڶм\x0c`J=\x13;\x15c#!=d<\x12\x03!\x08\'\x15r\x00=\x13<\x19\x1c<"S.<7RXo,:;F.~f&<1eP=wYnD\x1c=F<%1eк1\x7f\x11\x1dY<\x10-y=m<6m:g\x17Ӻ\x1a:bZ<5E\x11\x1dY<;5=މ\x108\x0e;@:*.O? \x13\rs<\x162p4\x1aa*;@A=kT|<%K^PvC\x06\n<ԋ<&ӻ!Y\x019I%xO>;F)\x1a;\x14\x17\x1fFro\'<ݻ8\r\x07<\x0bB軬F;A;77;),\u05fd@=^v:y\u05fc%K\x1e?$"\x16;\x1eW6~=EE\x1ek0\x03=t\x02*=i}]\x00P=|So%o[\u07ba\tV<\x08-D\x01=%xOfqg"\x12<(=ڿn\t=$F;\x11G=m<6~OS;\x03ǼڱH\x16<\x1aU)\x1eTwv2=\x0b>ʡ\x08Qp=a\x11wG<\x1f\x12=8\x16dء\x18<\x1eW\x11_-;8\x07\x13<Ǔu<\x14<,2ET.\x02w0R\x1a\r-;q\x18=\x15\x1e3<\x1dg\x0b\x16^ͼu7=\x01<\x0c)\x1ca\x1dG2\x1ch<\x00\x04\x7f64\x1bL=\x06=\x015ǓܬZ<\x01}sx\x06#@\r\\f\t\x15=";\x0cv=\x16\x0f1[=J[\x11kH\x1d)<֕Y\x07=\x99&\x08w|ﻦ\x05sEE=QcQ=y)hq<\x12U/=0\x05=:q^\\\x19<{\x1e\t2\x0f<\x18=\x00\x0f"\n\x17\x02._1VQ=&Sql=:ѻwL;=Qđu==!\x1e:H;d p<\x18tײ26;z\x02\x1d}O\x0b\x19ӼK\x0c=X \x00q\x00q;\r\x02ftI\x1d\x0eڻSA86<<7\x02N,\u074b< \x0c<8\x05g;AȃN[Qxջ\x157{qe\x06\x04a=мQOҼ\x14?\x0cTR9μg=]|\x1c\x01=\x08\x01:ʽLP\x1f\x1d\x1a堼1J\x06g=\x00<\x06\x04a;]Ժ,!ü[N;&"=<+&<$\x00"P%9lcA;\x13\x1em\x12=\'\x1fA\x1e\u07fcs$\x1bϼ:k\x14<\x03ZT;;Z<\x0e\x14\x14=S_\x1eVC9,g=\x05=i<>ʼ7<\x1cs\x10=d<Շ5<\x1b\x18@W\x1b\x18;\x0f\x03\x7f\x1f=R\x16<\'\x14\x109c<9%*=\r\x10\x12\x10y\x018%\'-?i\x0b=&"\x10=\x0c\r\x04=\uf67czm=p\x0b\x0f\x13\x1e\x08+i\x0b=hݼ!ԇ*Sq\x128^2=O<}\x1dA.=X<._GR=WE=YT:^S9\x120#=\x06\x04\x14<\x1b4ȋ;hݻ\x15\x12=Ǽ\x06ż)6==-6\r\x02A\x1e\u07fcM*=\x19\x1d<ǼH#\x13=o\x0bWE˰Z;\x1b@`(=\x03\'\x12A<-\x03=,!C/\n\x18\x1e~>;k:!=Q\x08;\x14<\x15\x11=Z_+=\x16\x1c=Vka;<\x14;@+S=,gG<`<\x1e=<\x12\x0b);c<~\x158=g\x13<{;\x14w=\x04\x15]<\x12\x04\x19\x05~=<<~\x04I;Ǽ\x01\x16<}\x0e9G2<2R~<~;].<(T=i\x12;\x05yWK\x1c=}\tAq=˝;Na<-=t;\t:\x19l\x0b\x12q;u\x0f\x03<\x0ba\x0b\x08<\' KQɽI^<1]=L*;\n=S\x08Z\x1dڷ=\x14"ia/\x1d?=u\x0e|3ٚ8;;i;\x12=L*=o\x07L;kV;s͝R\x1c:p\x03\r#=({6\x19\t1kּ\'m=+Ҽ<9!\n\x17i\x00=<\x0b";\x1c\'\x04/=+Ҽtm7<<+$\x1b8q@\x17A\x1e=jss\rt]\n\x1cἠt:\x17@\x17o\x164=q\x0e=\r<%C\x13R0=?\x1b=\x1c!1=\x12=.Z+-/=Bpq\x11tu[ݼ\x16+;:\x08=G\nJͼ1Ƚ\x01<tJ<\x01<\rE#ͼ$)r\x17\x04\tӼ^Yn=<.\x0c=Y=;I\x131m\x0f<\x08\x1dG\x04QW3<,\u07fc\x15;\x18)D\t=zH=\x0b<\x01=eWi\'w=\x06\x14;yt\x16yt\x16z\t`;c?=15:\x14ʻS=}[%伙D!=d\x0c7=QD=Ř<\x00n=LWY<\x18)IWlbr\'ʯK=\x1b8`LOg鸕*-=U%u(S/=zU:TW0혼E#M+B=q}\x0c*:=j@C\'tm@̌=qtO=v\x04<.=I<<\\rͼ,;Eo\x11;\x1a\x1e=\x10b;;e\ne?J=$]=\x06\x0cQf+T/3c9Ԁ=/ c;\x1e\x05<=\x08 a]<\x7fBE=\x0c\x03\x08j<߆\x1a<:x\x07%\x15Ud=ш\x0f\'x1=\x05:t\x07<ح<[3:ӻ\x04{{<)\x0b=v;"\x00%Y\x18"t\x0fճh\x05uY\x19\x1eHrG\x01.=\x0b=+=%c=<\x15<\x14u;\x1a\x12\x02=\x0f<\x11\x12%<\x14}xYS\x03W[G;;\x04\x07\x1b\x06;4wd\x18ݧ\'.=vϼc;l=\'\x07\x07\x15f=\x01\n\x04\x01=\'6\x08=Q\x15<\x05\n=<(VR\x01ح4wyºf<\x088<;>9\x02u\\:\n=Y;K^=\x11F_ygDX n\x07+/x=Ӂ\x16J];/x&\x1c:S<|==`̬=+6\x13c\x1f+6Go={=\x06<˺w=\x83s\x18wX\x0c\x05;>p<`|9P5<>\x1c~\x17Ǝ<\x1b2\x0b=R\x04\x16;G\x1cN4>\x02Czc;^<£\x16=Ad\x1fClX)ź\x1b}WuQrŔ<+<\x05<\x15\x133<\x02th0\x0e\x06<%N[\x11\x18\x0f:#G\x0f<;;5˖<\x14o;hny<\'<[ɼu(/5Ӓۯ\r=z~-\\:r\t;n<;";L:\x0e<6Y^;[>-<ͻ}=S1=v\n;PD=>pɱ\x01ļ+м7\x19J*\x0f;\x02ڼz6=b\x11A\x03\x19!8v\n\x0ek=[\x12\x1aa\t<1\x1exB~-\x1d=kwﹰ0\x11]О<ͻ\x19\x1a<ؼ1U]\x00\x0b:Q^"W=|\x16S\r90e1N.ټ\x008<|ڂ<\x00=\n\x1e/p@;\x03zB_{v;\x19;s;Y\x01= Y\x11<\\!b<_\x1f<\x02\x0f1SyW*=!O<\x12ƻ`^FH\x18=U<\x12;q\x12.d="<]=?rM]<1^=Ko\x1e\x1e:\x12A!y?2\nY}<<]l\x0b<{*\x03=!<\x12;\x03\'l\r`d;孧.\x11mSd|]\x1e5\'\x1b=\x11\n<1\x03d=\x025\x01=\x125Ѽ^;mQ^R\x0f\x02\x1a.=]J \x06;"Z;}=^\nx=O]£<{vN).\x08\x11D\x15^;4N<姿]\x00\x05t\x00\x0e\rTƈ\x01\x04={\x1c;=\x12μug\x03,%J=p<}G\x03/n\r<0i!I={)]N?\x1a]<{ϙ=^1Y\\\x02\x03<\x02\x0f\x11\ue5fdǃ/_\n=d[l\x7fԼ\x08{ƽ<\x04<^<䳏<0_I|M|U=1;8{%=Ql\x12;|bxCf>"@u<{&\x13{\x05;D;l:Of\x11|OQ1\x07<{==׆s=/m\x110\x00=@R="<(?Jla\t\rl\x10<5;>\\?Ъ1{=\x024>0:\x12# ]\x15<;2;\x1b_=4n탪;X/\x086\x1d4\U00082f08y<[\r:ŀ\'\ue17dʢ ļuh2<ě;e\x1e){W\x16w;){\u05fc<*!|\x1c^Bɼٺ\x15<8;#b.\\\x0b~M\x0fڼ.<\x18\x17MU\x06=o<<==P9\x16w{ag=҇;`\'\\=%to\x14~$<ðB={\x15b<\x1aʿ:j<\x08\nKi;H=)&=G\x10UN<\x07B=E\x03H:b\x05\x161ֻ\x1fu<U;\x0fr;נ?>q \n\x19\x06<\x18T<\x12\x1f=r\x06=\\\n\x0e\ue188N̼RƼ5J<\x0e0̟\x06\x00K=$x&\x00\x19%\t:^\x17=\x1d숻\';༏6;A\x15a\x1f<<~<\x1f<0_e>\x0fs7T;\x1b(U\u07fcR˄\r9<=aҬ<\x17\x13\x04ς[i\x02YG\x11yA=\x0b̉f5=s"\x1c<7<Lj\x12y輙5v_8o6e;gP\x07\x18s7(=Ҭ;\x07.ٹ<\x0c\x1c<\x1b(h=6\x0b\x04p:\u07fb\x1c>=F=6\x0ba^;B8<-Sog<>$K>\x1d`(:4\na;\x1f=$x\x14*6M=\x0c\x08XX;\x10ym\x18k=S\x04;\x14==\t\n<\x02L9\u07bcA\x155ʔSX \x19Y\x07,S469;\ta<4eJ#<^\x17\\мb!\x01ۻ|)=V8;\x0c\x08=ҀΠR<č<\x1cΠ<\x0foI\x1e=eF\x03\x02=Y̟*f|\x7fN=A\x15=1"#b\x0e=O<=oѽw\x11<<\x18(=\x08`L6ۼP^ּ7\x10Gp\x1d\x1bm<<֢<.G\x10d\x18=ɼ^⇼oѼMȺz۩;ź]D:]=\x00\x18;B;#\x10=N\'\x1a8\x19`_NV@=igoo;\x08<\x1e2<\x07\x13<5%:;.\x0bpD<\x0e_:\x12e5@6Y:\x04J=\x17gB\x01s\x19=bݍ\x1a,\x11J(;\n;WG<\x1f!\x0cr<=\x17\x11\x16\x0c%\x07\x14>w;5%\x1e5;ka\x19E\'m\x15.G;/26P{"=.\x0bp=M(Я\u05fc9=8\x12=><ͮe\x02=.h;\'uD(?=u<*\t?\x02=a|(o;QK\\<\x13`3ļ:l+?\n:\x16\x14<3:ɖ\t켏H=r\x19`=y;j\x0fD\x04,1\x19J\x1c\x11<;պ\'\x08<}u<%\x0c%L+Jpx?={H<\x02W<5:\x15ּx\x0cW\x13=摽V\nʺ=~ %T&=k\x1a\x1d;\x1a;:ē^=?P93\x15<@\x07mfZ:OػCw\x15ݲ<>-έ r7Y;PI^\x05\x10<5<(ȉ;:̡_\x1d=\x04\n=@1ż\x1eQdT<\x15%=D<\x1cU\x19=\x18T\x01;cg=\x10tA\x10&\nH.:Bk;w;\x0f<&\x13~\x0eX\x1e\x02=v=>m3Qoϓ\\\t<{l\\T=¼ r7g=\x01>A|1C\x133V|]Z=v=>)Ye+<\x1et<`\x05\r<~\x10=l\x17\x01<6jbu<証\x010\x19N<`P\x04=@T\';[AR\x1ca6\x17\u05fc2<:Uy;(|<\x18Z<+oqJ1\x1a\x16\x1ch^B+ZH<<,<5V=\x07+9j<;\x1e:d\x10>ɏ;\x02[=Ӈ<\x1eoɦ;V\x0f.X\x1eh?=\x1fJ\x12/=\r;;`<,M\x00;1\x1e7\x07^10<\n\x7fTIv=\x18Y\x16\x18;W0^=\x1c\x19<\x13\x0f<$\x0bZ\x00\n<.<6z<_<=\x0cW<9\x0eQ=n\x19<\x1c1=+_<0=o=\x0c\x00a{:{:k\x03"ȵԼw{b\x1e=\x1eʼ\x19>90\'2<,UY<ƸzJ@\x19m\x15=aC\rRϼh\x0bւ\x17=<\x05=\x19LF\x17#<3=B\x1e{\x06Kʌ=c=\x08=$\x1b06\x01=\x08F\x16r\x0e\x1a|=I\x19<;#\x08-]%\x0374\x04\x1b;(cM8=\x08=#t\x1f\x12k<\x0f\n\x06v8\x18X<-(2\x02̈<6;dv<2TI<2==\x10)༃r\x0e.8\x0c〼\x1e=Queᖻ\x08\x17컅\x14==\x03=(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x122üWh3<"7O|11ȇ\x1e\x01=,=Z;$;y⼦\x16?nм\x17\x01>4\x11}=Q=f2C<\x06o\x191\x07)7}\x14Yi\x1bm<;\x7fԳl3:ӻ\u07bbK]]4+ae\x14^:\x13<\x1c\x1d/=\x01{\x7f;hټ\x14<-_\n=;N=6<\x1e8"-\x199,<\x04=_([ 4+\x05,Q%c=&=S;?Q\x00";=OGP<$\n;N%7\x1e=kG1u1Q\x10\x07=\x05u=\x1f:wgn\x1aY\ro<৵=<ͻ6=\x1d\nX<՞,><\\v+>;ȇ<|B˼Q\x12\x0bV{:!<Ǻdtμ<\x07FP8Ꜳ<<\x0b=o\nBT\t#\x1f{՜\x02)=([х;Q<)\x1aǻ\x1a\x02\x0c=/.\x05=;;*k\x02=Ɔ\x13<\x03,C7\x05y<%37L\x12\x03&F^N=\x16ĺ=b\x0f=h;\\ߡ;4\x11NI;\x03,2;,$;`;pltvd=5\x15F=\'dSlO*;\x06=W<\x0c\u0381\x1eiWX=<-\x0cR;\n\x0bƻXV\x19F\x03d>\n{\x14>\x0f㼒z^=Nz{=\x16<\x0eKjG_<谼\x15~q2<\x1eAF<&\x08l;"0X;s,=\x00ebȻ\x10=/\x03v*=Ժ<\x13Hf\n/\x03=&f;%=T@;;W<\\;\x7f>\'b_i;+]3E<\x06\x00\x0e>l=9ܻMJ=\x0e\x15\r>f\x1e;-\x1e\t;=t0he\'=\x17xż\x0b$ͼۧ\r,OdƘ<^\x1e~;\x14؏=0 **All courses** link.\n\nIf an instructor would like to continue making changes to a site, allow late submissions or other changes in their site, they can switch the site to be dictated by course participation dates instead of the default term dates. This is done within each site’s course settings. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-change-the-start-and-end-dates-for-a-course/ta-p/452354) on this process.\n\nIn addition, instructors may set within the course’s settings to ‘restrict students from viewing course after term/course end date’. By doing so, the instructor would retain access to the site but students would no longer be able to access the course at all. Reference Canvas’ [guide](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-restrict-student-access-to-a-course-before-or-after-the/ta-p/1269) on this process.\n\nNote: Sandbox & Collaboration sites are not dictated by the same controls by default as they are not associated with a specific term.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSetting up course site and content\n----------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nHow can I enable/disable a tool in the Course Navigation?\n\nOn your Canvas course site, there are some links (Home, Announcement, Modules, Grades, and DKU Library) enabled by default in the Course Navigation. But if you want to customize your Course Navigation by adding or removing links, you can\n\n1. Go to Settings in Course Navigation\n2. Select “Navigation”\n3. Drag and move the tool(s) you want to add or remove\n4. Click “Save”\n\n\xa0\n\nFor more details, please see [How do I manage Course Navigation links?](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-manage-Course-Navigation-links/ta-p/1020)\n\n\n\n\n\n\n\n\n\nShould I adjust the time zone in Canvas just like in Sakai?\n\nYes. All DKU users are recommended to change their **personal time zone preference** to China Time. See [this documentation](https://community.canvaslms.com/t5/Student-Guide/How-do-I-set-a-time-zone-in-my-user-account-as-a-student/ta-p/414) for detailed steps. All DKU courses use the China Time as the default time zone.\n\n\n\n\n\n\n\n\n\nHow can I copy over existing content in my previous Canvas sites to a new site?\n\nInstructors can copy content from an existing Canvas site to another including course settings, syllabus, assignments, modules, files, pages, discussions, quizzes, and question banks. You can also copy or adjust events and due dates. Student work cannot be copied over to the new course. Find out detailed instructions [here](https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-copy-a-Canvas-course-into-a-new-course-shell/ta-p/712).', 'ref_doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'doc_id': '9b181f61-1a1b-4e7b-a3c2-a6ab63025f9c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ctl.dukekunshan.edu.cn/canvas/faq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:c533cdc5-9ca9-4392-838a-416efcc47b89', 'payload': None, 'score': 81.23253071214191, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '417741', 'document_id': 'f4ece21d-8d06-40e7-a47a-297ff4d2cf02', '_node_content': '{"id_": "c533cdc5-9ca9-4392-838a-416efcc47b89", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f4ece21d-8d06-40e7-a47a-297ff4d2cf02", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "ddade1bcbfe7aaccdbc3b5146863be9efdcc4f12b4b4bafd131f8ed6ef19e3eb", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "896a8981-c39a-43b8-a50b-7d769ef500f6", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 417741, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html"}, "hash": "3ee38770b0a269b83f5bd48fca6fad36d601082d6c68f0f9348d7c45748b08fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3fb6dee9-bad4-4058-a845-288ff4a1356a", "node_type": "1", "metadata": {}, "hash": "5a79b341b4a35ac8fd3dff0c2bbb3cf27a6cfe724a34804ba1c42913f9a75588", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 103547, "end_char_idx": 106536, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Instructor-Guide/How-do-I-cross-list-a-section-in-a-course-as-an-instructor/ta-p/1261/index.html', 'vector': '\'-Aۼ\x0f\'y?/6j༁|;q\r=\x161.=5aJ 6@zH:`\x1a\x0c=]<\x1c1H<5a<^!<]={2<\x02GwNrb`\x1a<\x1d\x03p\x7f=#C )R\u07fbz;/o\x13w\n\x10+s"l\x18B=/=T)ڼ\x12<\x1b(<ûJg\x8a"q\x18=O\x11ټ:\x03\x12=1\x033;\x17\x12\x19\x01Z;\x15=oX9\x0bM<\x1dP<4=,ۯ,<\x03\x18=(n:\x1a\x16h==\x10+sHK"Ȳa7"(@\x05<ϊ<\x13*\x15<`\x1a\x0c:;Sb<=Yky<\x0bF=\x18<\x11ԹF\t%~?\u07fcðli\x1a.W\x16y\x15M.\u074bƙhL\x00=\x19\x1bo\x03m<\tK\x17;ѻg\u07bc#=/<,=]e<\x00\tхd<5\u061c=NcQ<\x1d3<\x11\x1e\x04)2@μɑ(\x11K\x1c=-JP=T\x1bɖ#<\x18=;\r=\x03t;l<4\x1c\x1c\x03F<\x14\x11t<3젼F=S\x14;\x1d")hܹf.\x06\n\x13=̼\x0f+r}12\x132=J@dTJ\x05\x0e\x10b@};?X;M+ZD.\x06\x11\x0e9A\x1aչN!ۼ#=Գ-5=4ԃ(:\x18NH!\x1fPռ\x16\u0383G\x16=J<70<"f\x18Q=Kt<=\x1a =dU!<\x1e<\t\r\x1c\x15=J<8;g;*ɦ<9*yr=[\x02k=T\x13\\:\x1d=Vf<μs\u07bc]=Ⱥ"=Hճ;%\te<\x19\'c=S쁻 \x0fF^KD\x05hn@@Zbu=*\x01\x1f+ip;\x19kr\x04,U?<\x038G=pP;뻠S1X<Г<\x06lH\x06\x19k2ca:ּْ;ܼSeqP=K\x0f\x19\'\x1bۢ*\x18y\x0ex\u0383h@=\x17[L3h\x11\x05\x0f/ϼP\x04.\x7f>;,ٌ/+=\x07~\x0b<\x04^\x1aZ\x0bx&~D<\n/\x1c0:\x02<\x16\x18]\x12QDH]qX\x19;k`<\x10G=(<>6I<+X~;Y\x1d=]>;\r\x1cl\x1fDw\x0f<{Nsc\x1a\x06\x03$Z<%\teZs<,<\x05=fN=R\x03F=EUݼ9\x0f\x1e=\n}.^x<\t\r<\x08<9㡱=$|=\x08;bo\x06\x16ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 14.67850754759554, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 11.27297648115793, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{12796 total, docs: [Document {'id': 'test_doc:0565997d-7375-4185-8808-0f1a24a2d481', 'payload': None, 'score': 47.449331143376064, 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "0565997d-7375-4185-8808-0f1a24a2d481", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "56580115-5f97-4e69-b6a7-f269291b2307", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "22a7a22291de9eabc9a486ff1fd62fe59240c74137ab6a51af9aa5ec19b11bc4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "75f05425-a154-40db-973d-a626e4336626", "node_type": "1", "metadata": {}, "hash": "c4c8f853bca4407535489a9bcffea6643e05f489374b3504552b5af25b4c64ef", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 133934, "end_char_idx": 138672, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'creation_date': '2024-06-17', 'file_size': '6645174', 'file_type': 'application/pdf', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'vector': 'nbRr@\x02RPI:uN"<\x15Ӽh3;H#K=2X<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19j\x0eu\x08< \x08j)=\x1fԻ6\'<\x02\t<_.r\x1b<8=3b-=\x04\x15\':\x15\x01=6\'= M\x1d\x02\x01\x06\x16\x10W¼\x06%\x06:-;;\r<=0_3\x19V><1=P!\x03f;\x7fzP\x1c.B\ue67b}?Y\x11k\t7\x14\x15:\nE=%żZD<+;\x1fyP=.R\x1bռ;_jF6X\x1d:=.9x~\x08IO(\x0c<<ɼ61U\x1d\x03=\n<\x109\x14Ƽl\x1d^C;1=l =;^\tU Ⱥ=B;f\n&:Q;Q쬼8<;\x0e=F;+jE\x1bKNuk<_kLw"<\x1f\x03F\x12=f{ttl"=\x1c\'R<\u070eI#;\x02`=u}<%༈L=I:y<\x01\x1b"=qr+\x1f;Zi\x06"==\x19Cӻ$^\x10;F\x0ew=R\x14e,\x01N<:3\x148#<5=\x1c=}a\x12<,\x16=p|q\x05&h\t\x03+6qrt;2\x0b=N\t5 Os<\x19\x02\x07<$O\tZm;C&ϫ`\x0bz\u05fcVC=۞\x15A\x03Q\x01MіgQ<&+<\x13Y<\x1dX\x12f\x015\ru<\x1b\'<}vW?it\x0b<\x17$\x15s\x1dX<\x00O3<@\x0cy&\x02tH>=R<3I%\x05?+\x14<\x19;hE\n#;C\u038b=8i\'9)@=rK<,\x1c);[;\x15\x7f<\x03M;\x12G=$];\x00.\x0eF:/]\'1l<%\x19\x18=\x1b1y\x14*o\t/>\x0b=QF\\="1p<-<\x1c:\x18&<=*a<\x11=*$=\x12鵼nD<\x05\x11<\x06лV:<\x19\x1e\x07\x19Aɋe<#^#=\x00rkA<`m\x0e;]=!<\x07\'.;<\x01W\x16<`', 'text': "### CAMPUS LIFE\n\n \n\n\n\n\n\n\n\n\n\n\n\n#### [Student Affairs](#)\n\n \n\n\n\n\n\t+ [Office of Student Affairs](/campus-life/)\n\t+ [Athletics](https://athletics.dukekunshan.edu.cn/)\n\t+ [Campus Engagement](https://www.dukekunshan.edu.cn/campus-life/campus-engagement/campus-engagement/)\n\t+ [Campus Health Clinic](https://www.dukekunshan.edu.cn/clinic/)\n\t+ [Case Management](https://www.dukekunshan.edu.cn/campus-life/office-of-case-management/about/)\n\t+ [Chinese Students Services](https://www.dukekunshan.edu.cn/campus-life/css/welcome/)\n\n\n\n\n\n\n\n\n#### [Student Affairs](#)\n\n \n\n\n\n\n\t+ [Counseling and Psychological Services (CAPS)\u200b](https://www.dukekunshan.edu.cn/campus-life/caps/caps-home/)\n\t+ [International Student Services](https://www.dukekunshan.edu.cn/campus-life/international-student/about-us/)\n\t+ [Resident Life](https://www.dukekunshan.edu.cn/campus-life/residence-life/about/)\n\t+ [Student Accommodation Services](https://www.dukekunshan.edu.cn/campus-life/student_affairs/student-accommodation-services/)\n\t+ [Student Conduct](https://www.dukekunshan.edu.cn/campus-life/student-conduct/about/)\n\n\n\n\n \n\n\n\n\n\n\n\n\n\t+ [Career Services](https://www.dukekunshan.edu.cn/career-service/about-career-service/)\n\t+ [Welcome to Kunshan](https://admissions.dukekunshan.edu.cn/en/campus-life-kunshan/)\n\t+ [Events](https://calendar.dukekunshan.edu.cn/)\n\t+ [Information Technology](https://it.dukekunshan.edu.cn)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n### RELATED LINKS\n\n \n\n\n\n\n\t+ [Campus Health Service](/clinic/)\n\t+ [Academic Calendar](/about/academic-calendar/)\n\t+ [News](https://news.dukekunshan.edu.cn/)\n\t+ [Maps & Directions](/about/maps-directions/)\n\t+ [DKU Commencement](https://commencement.dukekunshan.edu.cn/)\n* [News](https://news.dukekunshan.edu.cn)\n \n\n\n\n\n\n\n\n\n\n\n\n[![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20211%2068'%3E%3C/svg%3E)](https://www.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\nRegistration\n------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n### Undergraduate program\n\n \n\n\n\n#### Registration Overview\n\n \n\n\n\n Registration is completed via the\xa0[Student Information System](https://dkuhub.dku.edu.cn/)\xa0(SIS), a self-service application that provides students with an array of information and direct access to their academic, financial and personal data.\n\nAccess to SIS is gained by using your NetID and password. As a precaution, students should change their password periodically. This NetID is your key to accessing all the personal data contained on these pages –\xa0**do not share your password with anyone**.\n\nUsing SIS to gain access to or alter the registration record of another person, or to gain access to restricted classes without proper permission, is a violation of Duke Kunshan’s Community Standard and subject to disciplinary action.\n\nRegistration and drop/add are available to all students with no outstanding financial or other obligations to the university. Students with outstanding financial obligations must make arrangements with the bursar’s office before registering or attempting to drop/add. Students who have not paid billed fees owed to, or fines imposed by, the university will not be permitted to register until the fees or fines have been paid, even if the student has paid tuition for the upcoming term.\n\nSee the\xa0[Academic Calendar](https://dukekunshan.edu.cn/en/registrar-office/academic-calendar) for the official semester schedule and registration deadlines.\xa0\n\n \n\n\n\n#### Procedure Documents\n\n \n\n\n\n* [Registration Guide](https://dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2022/02/registration_guide_-_student_self-service_center.pdf)\n* [Class Permissions](https://dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/mainsite/2022/02/permission_number.pdf)\n\n \n\n\n\n### Graduate programs", 'ref_doc_id': 'cd8e273c-fa3f-476e-9483-7df9dd95dfc8', 'doc_id': 'cd8e273c-fa3f-476e-9483-7df9dd95dfc8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/lei.guo@dukekunshan.edu.cn/about/registration/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:d455f405-e655-4608-8439-f087a3bfe93a', 'payload': None, 'score': 0.8175745901508786, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '255714', 'document_id': '7f6a6d26-97ec-4eaf-861d-8cf76306b9c0', '_node_content': '{"id_": "d455f405-e655-4608-8439-f087a3bfe93a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies@dukekunshan.edu.cn/about/registration/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 255714, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies@dukekunshan.edu.cn/about/registration/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7f6a6d26-97ec-4eaf-861d-8cf76306b9c0", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies@dukekunshan.edu.cn/about/registration/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 255714, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies@dukekunshan.edu.cn/about/registration/index.html"}, "hash": "1f710992cfafd4b27c308958cd4735740c1c3176dcb2027b421a9470a4a87744", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "559d6e5d-4493-4fff-a6df-955952aa5a2e", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ugstudies@dukekunshan.edu.cn/about/registration/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 255714, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ugstudies@dukekunshan.edu.cn/about/registration/index.html"}, "hash": "2d00eb68ec246f797305fc34bb47030fd5a3c16432b86c317a8a6572d3b54ce1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3986c69d-9fcd-4b66-8e7b-4a708aacd2d1", "node_type": "1", "metadata": {}, "hash": "dbaea0b211f72f74279431e6858fa516805bde4b90dd5996f28dab4be766e3a3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 5882, "end_char_idx": 9665, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ugstudies@dukekunshan.edu.cn/about/registration/index.html', 'vector': 'w)P x\x05(\x7f7H><\x08O@B=<\'%<\x18_\x01

k:B\x05l<\x0bO=:,<0<:*<\x04o<\x13<-\x0f(?\x15Ǹ\x1b\x16F&=]cbR@$d<{\x04\x07[\x17<\tW;S\x08T<^<)X;8I\x12=2\x03;jq;ƻ,,7<>k=J@QԼ5z;w\x0c^\x14=\x1a,=%"u\x0c\x07;cɱ=\x0f7\n}~\x0b?\n=\x0e\x08<\x03H6:k[;B=$;˪c:98\x04UM<4\x14RО:6<&=d\x15N\x1aA%1K=m\r=A=;u\x06\x0e\x06=jd\x15;?a\x1a\x19=g\x17a;\x03\x15MW7=\x1cw1\x0b3 \x1a~\rk\x04<kɱ^\x1e?=Ø;o^\x12=c<\x17\x17!<+Xq"L<\x08!5=N:\x03=Ǎ;}\x133=seuR<\x17&\x03<\x12:_Ż\x13h\x0bļo;k<<Ϣt\x19\x102<\x7fƼs#}ț=;crD? =(\x07<<-\x18\nV)K&U\x16=V©jN\x07;ٻ\x1b\x0b\x05>;3\x02=FK<\x02=Bfl~\x1c=&;RA\x01:X=\x02;;iL.=\x06|e<+="LD9ϫm<`J\x13-;\x058м\x02=ئ\x19}\x1eqs;H\x12\x0f[=\x1atwc<\x160:\x18\r>6X[<~<\x04\x10%wV3<\x1eI\\\x07ۼw.;.]A\x19\x16*\x089)\x1at<ǻ\x02@Bfl<\x0c\x064<}/Z\x07\x02ݼ-<\x0eТD\x16\x0e;dư(f;\x04=.*1\x13\u05fcRE<>\\h)K=W/< ?\x1eI\x1f%;[\x7f\x1bux\x11U=3M@<.l&rR/ڼ`=9<24_<%9<\x13\x12\'<Ɣ#=\x0c\'*\x0e0\x1e<\x1bux=\t\x0cڌz<\x0c/\x0c754T\x1bN??=]\x0cǻ!-\r\x0b\rт7up=g\tMouwCx)u=^;y\x16=;d\x06<\x18<\x11\x16\x1c<>;\rCnFu=E6=B^9=Z/1<>\x17\t=m\x11D=_X\x12;1z:Q\x15i<-<\x1buxaL<ӼW%P\x04[I\x0f=kμ;\x13*/Z\x0f:E~&ϷYɼ^cC7<\x008R=L\x14=3C|\x0f";y5a2\x0c\'y5N<;\x06=>>)3\x01"\n=i1=k2k<\u07fcR5<\x02\x065\\><6\x1b\x02=Lvo-\x0f\r=\x1d㼢\x19F\x03¼S\x01>s2\x02Eb;a8=\x14}=c:<\x07\x02=a4<\x7fq.=h<ڼSٞ<\x0f\x1c|=\x12<\x11<^<0>=Eڅ\x15i&;_\x08#]G)=ԛ,\r;5F\x03B[3[3` =Z<\x08&*;\x1b\x0e=.;c\\T\x11s<+SrA<̫O<;\x06 0=\x19=cS<ނλ՟¼+=\x11<><\'\x11!= k^=\\j%+AU=8$<#=\x1c>\x06XF=ڑ~(ڪ\x04\t&\x06vE\x1dK=sHN{<\x00\x1c\x05{^\x18=˗\x04/g,\x05Mdo\'=\x18=\\zTEH`=\'\x00\x16siEU=/eY;0\x7f|]<\n\x02B%\x1eSD=[h)t\x1dG7=M:c\x13u\x19=U2\x06=\x0e\x1fZd,<&2tK<\x05ҿlw\\l.;\x1a:i5PM\x06XF=\x11\x0b<]C\u07bbV+\\I\x19\x0c|=d,=!=D=?Or\x1a6\x10ѷ\x1c\x04/J\\uX;\x14ݹ<<))<\x0eȫ<ȶ<\x13\x03T:;\x1c>\x18CN;Q=\x12~<\x13)\x1f_Q\x15jfD<\x1b^:ozļ=\x00\x12:\x7fN;R~3\x19\x18\x0e=Ůf;InZ@<̳vI\t=Re@\x0c,W\u07fbSKn<\x08cz\x18\x10=\x1a;1@\x04\x12\x02!KC<.M<\x01Jl\x01)pa\x13=\x08\x1c=\x08=\x18\x1d}GIt)\x0e-\x1e\x19\x15Y=V\x12\x00n;<5=ၹ<\n\x00;`<\x11V\x02:Å<.`\x0f<(ս$6<\x11,=\x1ayGG\x01ItOc\x0eѻ<5RD\x1a=>/=q=,t1\x03<\'<2\x15;\x0b6=\x0e;<=\x0f˼~;d&".%\x19=?\t K`3zBVA<\x05\x0b\x05=,7;&<=5\x0b=\x07\x01;cKp\x10Ywټa\x02\x13\x00>;zًmu;ݥ)<></k\x0f\x13홃6\x18/=O~\x15[<{c;-g3\x03\x02;IkT*I\x08\x1cZ\r\x076,6ۏ\x06\r<=ļyB\'<) XN<Ɋ<{%YּJppa\x133$=\x04Ќ{F:Rμـ;\x13i\x0fvm8=\x14\x15<=ɻRe<2<\x1f\x83:\x06<<\x14<]\x07\x1a3w<=\x1f=\x15Ȼ\x0e;QcA<.5=(XJE7k=\x07<\x108ǎ<¼l\r\x14\x0ekd@\x0e<.S;cs:,bﻵ\x1e;|f<\x1a\x19;Z_1\x0e<tmPO\x13$ӝ=,j;Iּ7F#=\x7fl<0!tq<{\n<\\\x0cd<\uebfcgܵ<\nGݼ\x02\x01*;<\t=J/N\x07;\t\r=\x7f6=Qü\x15\x05\x1b:s<\x032fNhf\x0b<\'0=\n:T\x8a=?x<\x7fG]\x10C\x00tT85=\x13\x14\x17=Ț<\x13\x13w<\x14{<\x02\t\x08<л\x06<\x0e#\x03<켵??\nH\x14\u05fcQu-|\x7f"\x0e;E˚=Y@\x08H*<@ؼ\r9M]\x03=\x07=~\x1dg7\x12qGr\x08c\x10RkWA(\x04\'A=,R;{f<]֔\x0b\x17?;\x1a\'zK\x0cT\x0cJچv\rڨEݼ@<\x198|x.:(Fx<\x15N!Lٻ\x11=<-<`<\x0e=j<\x11\'w69~d\x06鼤nl==H,-<\x1aa\x1dE])r:=;v:Ƽ۲&<<\x0clT<3l;\x1a;\x10=J\x14;f\t<\x03D=@1=\x1c=;;\x19\nѼ\\\x13~\u07fc\x17\x1a;\x000=D qLY?;<\n\x1e_e\x01:#x<\x1cͺ<\x03\x02=\x18iC\'[P\x15g\x1e\x13l=a\x1c;zJ=\x0f`(<\x19\n-\x19\nT=Ul=Y@p\x01;\x0f`;;\x0cc;\x17={:;\x00$\x01lBW\\:<\x1dLci=~<\x11!;l\uef23@.=K<\\<\x1bB=\x14<<\t껒p*<{N;j\x1f$"<\x0b=}Ļ5t<&&GQ\x1a=v\x05z<\x01f\n-;鞜L,<<\x043=4Z=~\x11MT)<<\x01le7!_4ۻ\x0b\x0b;\x0b#j<%c;~V"\x0cT)=\n)h\x11AE<\x1b;\x17x\x00˼@ڼp*YG\x0e[P\x15=E][=N;e}\x0cSDB<\x05\x19\nQ=y\t?nf&RIP\x03;\x7f!ȇe\x0e#a>݆Jft\x12;2<%_:!\x08T#ٍ@;e\x1d\n<\x01y~\x1dx=ch<<}BD\x08;M\x1c=(\x04 X+;(z<\x1b8\x08\x14P^\x1f/\x15a\x0e\'\t]@<\x11|=<&[\x1b=̗<\x0cJ於S<\x08F<\x03\x16H+\x19==\u1afc0}mb0\x1f*s)i`=U}d]}%.=\x19)Rs[6\x0c\x1e<]`<\x17I<9\'\x0e;:~\x05$`\x06=)4E^:`\x0f.4,Z87Z=_\x0e<@=ٻ7iMϪ\r=\x10=6Qܻ87Si`}\\\x03Ѽ\x1bF\x006_\x10#@f\x19{\x17<\\a&=Z*YI\x06h\x1aw,><#=\x19\x08ɼWͼ!\x04\x1aj5ѼLqZ:Z;<\x1b+h<\'Y\x17S<&\x07/=ۺӼL\x07\x07\x07z\x0b\n\x1b=\x03Ѻh<\x03;\x13{Û~Q}\x18=ӣ;0=\'\r?IiVㅽ$=g;\x1fs\x1e\x17g:gJo\x0c~\x16=\x1e\x14D%|=-\nŻJ\x08\x15=<#j<]\x08<\x18\x019g\x10<8\x1aiD\x1e:΅=N\x05lƼi38};\rl\x1a\x12h=n4k\x16=MY!1P\\\x01^A=\x0b=\x1b]i\x03\x05\x7f;΄;CS<.\x12!\x05\x12w7=\x01WToG< 6v3;\x18Fo\ue5fa}+k\n=c\x1a%^q\x08^q\x08Yyz\x11d\r<3u(~X{s?\'\x01/=\x1dڻS\x0e;DT\x1dGwJ=\x03>=Q=\t2<3=T\rz+G<\x19\t\x0c8[;5e0/\ueed9&ݼD<7c;V\x05=K\x1em5<(ۼ\x08ք<.<6\x19\x0f<\x136=+J\x04v\x05\x0e䥼3\x19h-G&N=(p\u07bb?鼁!l?=0ۅB#ճ<\x08h;Ѯ9=\x14\x03(tc\x15\t=5ͼ\x1d߆<=<\x7fR3\x0c=NC%=\x19R=fGyF=Wx,t8\x1a5\x1dR\x19=\x12<\x04o\uf17b!Ո<\x04ɹ\uf17do\x19<(B;>\uf17c\x1a\x12=\x022<ӊ\x08<\x1f+0\x7f\n=\x1e<\x1bKQ<&F\'L\x05\x1f\x0cO#\nE%>\x04@l~\x1f<\x08oK`Y<\x07ͽ=f\x1c<09`=h<*$\x1f<\x07\x08\x17\x1fM4<<\x1290<-\\s<><\x02?r5;Hh<,\x13*<=\\,=-UU<Кfo<=f;\':<\x03s)=zU\x18\u07fc\x00<\x05Ɓ<1»\x10\x18\x00=<\tmQ<\x1e<\x1fw\x18%<Ƽ2B\x0e\x10i]=]<\x02\x15rȝ\x08;\t;gܻO;̼d=\t\x1e#=*T(l~\x1f=\x0fD\x1a8\x1a\x1ej6\x17Ο\x00[<6_D=/Dּx:ڛ"z\rļ\x10&dM;?\x11=Xί4<<]zq4ۼ%\';(<\x14#`5h?<Ϫ<\x16\\:ؼ!\x0bs<"fhk<\x12\x12=H1,sI<\x116)\x18=f<\x14:TNkr%7Ǻ\x1b\x101\x03\x07\x0eB}\x05n=N\x05j:X ٺ[\x04<~w\u07bc\x12=\x18U:Q;iKڛ<\th-d;\x7f\x1bA%=n\x17?\x11<̆;,w\x12z\r=,\x02\x02=H;ЊO9\x0e=\x06.=\x134Q\x05/;w(H\n\x0cN5-f;Ja<Ί=,#=Ka=!<.U=\x1bg6:\x06R\r\x1c\x06c=A5=<;:2\x1e<Ϫ;x\r:O\x1fK<2\x1e;>\x1c(;ao<^Z<4\x0fz>;9o0O!cJ<\x08\x12$˼v*SP\x1c\x17\x08=MCxy\x03мf<ލA-,\x08Ş<\x19"ք"\x04\x7fgc<7}/<\x1d\x04=2U;@\x0c_~μzfAy=e44\x1a8C(< <\t<\\=0C;۬S81=B;\x1b\x03<}_$A\x15=GQ+۱rڻG伹a\x1b=@_\x05$JwP<\x1a0<\x01\x07\x03=LۼļgC_=\x13\x07<\x19M%\x11`g(=\x06 ;<ׂ9Լhd{\x0e%\x15I~Vu< x#$kc;.\x07<\t=$k\\\x17\x0e<[*\x10=2|<\x11ݹ\x11\x15\x1c\x0c<\x0e;\x17\x7ff\U000859bcn\x0cܻ|\'=\x7f=\\\x1a\t\x02<\x1e<\x13X\x01g:B<:K<~\x01@\x1a=\x12\x01/1ՒƼ<+;m?=Z껹43\\\x08`\x06w\x11i|=\x06=<|a<\x1f<:,f\x1fZ\x1bW{}8\'\n"[:k<6={hm/1a;`te\ra\x0e]2D=\'>\x0c=ܪ:\r_<|*$c\x10\x08=~Εe\x19\x15=}83\x08s=kĺ$\x1b=(hd=c˾<__\rn<\x02;Q:!g<;59.\x10E=J;g<|o\x1b\x00\x1e;\x7fǺm<\n\x1d-\x05"R*ݼɼ\x01\x15\x0c=\x19M\x0f\x19X\x15=I<ۆ;|\x1e2y\x01bU=Ҁs*=B=ݔ.=UK=ے$M;*b(\x18sB\x024\'Y=SAv\x03\\N;A_<\x1f169=*\x0f<\x0e\x19=\x06ռI\x02m>ջN=\x0f\x1e;:U<@Iz1<76\x03\x1e=<1)<.З\x00&p=}`\x08<ټHb:4GBL4\'\'=\nغЗ=9XD=\x1b;BjѰ\x03=\x1eºG\x1b;Dh<+\x7fg<+0.<2+=f<տr;CdET40j\x18<ވ5\x0c6Q<"\x19=4=;;\x1e\x7fz=,O;*2x-4$48\x02AE<+B\x137h<&\x00-\x1a<\x07\x0c=#żC.=Վ\x10&&\x01Ӽ^ڶ!;K0R&=2i=\x15f<{\x15=\x00Ҽ\x18<[,:{:\x01:[i(;ȾZ=Ɇ3l.$<.,\x1f;<0R|x<`[==\x1eӺB<*<\x05W<3J\x02~;\x03ܻz6踼:>Ӽ-%O;z&+s\x14=;弑I<\x7f\x0c\x0f|G\x05;\x00<(\x03;:;n<=Ѽ\x7f\x0f=Di4<2-:7=&\x0e*\x04=Ƽ?ؼ;CAv?h<75;c=Ȅ =꣺J;)e@\x05\x1e\x0b\x16_=c<\x12jc;{ -bzM2<&S)%7=Lڻ=z<3識4<2»\x00Ll\x16r<\x7f\x0e=Z;[\rD<\x102/B]=[.u< ֻ \x1dɠ:\x13}=<\x01[=d{<&\x12ovx^λ\x1b<5"E=<\x14$ ;\x02\x03\x1ar:\U000b9ffbV:a<0=\x18*8\x05{ɄAC=\rt5\u05fb»4,5=xʼo\x1c<\x10n߆\x16=;O<^\x1ar4;}:r\x16\x03<\x0b;Z)yr\x0fbd9\x126\x0e\x00_\x15\\:Pll;u\\(t\x14V\x18=.\x1for\x1bB6\x1d1$<\x11NI;\x02\U0007c38fe3\'I;\x06;0=$<\x13e̻A|<\x16r!=#*+=i$9j*<xp̼;\x14\x17;W/I7\n/A$x\x1af<\\x\x077\x10:\x04;:a2\x17\x19{<(@MhU\'=݂VfR=\x12qW/;j>Y=T\x02=\x11\x05.KD3\\9*\x06\x08=;wo쵂<2=|\x1bs滊:lI;{<:\x16v-W\x10.7zk=F\x08i<,l<_w#/i`\n̼]<\\:LAA<\\@\x1f<;UX(\x06\x19;u,MI80<\x03\x10\x0f9<\x11=g0Y\x12+\x1c<\x0b<$ټx=o\x07\x13kt\nnLv=<\x11<\x0fm\x05=s\x04n\x00M\\\x11=Q$ļ\x11\x14:M\x1a', 'text': '# Hiring Process for Student Interns\n\n# Interview Coordination\n\nThe hiring office should be responsible for coordinating and conducting interviews. The Office of Human Resources will not engage in the interview sessions. In most cases, the interview of student interns will be conducted by phone/video. If the hiring office would like to set up an onsite interview on campus, they should be responsible for relevant logistics and cover all related expenses.\n\n# Interview Guidelines\n\nDuring the interviews, the hiring manager could introduce the stipend and daily work to candidates if necessary. For student intern positions, the hiring manager is encouraged to reach initial verbal offer agreement with candidates at this stage.\n\n# Candidate Confirmation\n\nIn the interest of recruitment efficiency, the hiring manager is suggested to confirm the candidates with the following situation during the interview:\n\n- Internship duration, starting date and ending date. It is suggested the student intern should be available to work for at least 3 months;\n- Working hour: five days per week, eight hours per day. From 9:00 am to 17:30 pm. In most cases, student interns can work full time. However, some may only work 3-4 days per week;\n- Work location and accommodation: student interns should cover the accommodation fees by themselves;\n- Intern stipend: 3,000 RMB/ Month for full attendance.\n\n# Step 6: Extending Offer\n\nOnce the hiring manager confirms to move forward with the candidate, he or she should send an email to the Office of Human Resources with the following information included:\n\n- Job title\n- Candidate’s resume\n- Working period (possible starting date and ending date)\n- Fund Code\n\nThe Office of Human Resources will make the offer to the finalist and inform the hiring manager about the offer status. If the finalist accepts the offer, the Office of Human Resources will initiate the onboarding process. Otherwise, a new round search will start.\n\n# Step 7: Preparing Onboarding\n\nBased on the previous cases, the best practice is at least 7 business days are requested for onboarding preparation, which includes Net ID, cubicle, campus badge, laptop preparation, etc. When the hiring manager gets the student intern to offer, he or she should consult onboarding day with the Office of Human Resources. Onboarding date for student interns will be on every Monday.\n\nHuman Resources Office\n\nLast updated in September 2019', 'ref_doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'file_name': 'Special Recruitment and Hiring Procedure for Student Interns.pdf', 'last_modified_date': '2020-04-28', '_node_type': 'TextNode'}, Document {'id': 'test_doc:cc53bb11-993a-4bce-85e9-7a9551a2b0a0', 'payload': None, 'score': 22.589322974382366, 'document_id': 'index.html', '_node_content': '{"id_": "cc53bb11-993a-4bce-85e9-7a9551a2b0a0", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "link_texts": "[\\"Skip to main content\\"]", "link_urls": "[\\"#main_content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/www.usajobs.gov", "filename": "index.html", "filetype": "text/html"}, "hash": "45c0cbe6c6319b689d183634e068b1e0493205d12944909bf7636263451dba0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e668195e-a704-43d4-9ecf-a0c10ce996c6", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "3121985528011eddaaeceb8318bd0711168712c909b1106297b0331421a264d0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8301d50-ab04-4123-b28f-033c7cccbbae", "node_type": "1", "metadata": {}, "hash": "63f7b310cde3076c049d2de420e99084a5288a9f9612f11fe1f9bc178f0af792", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-5\x0e<\x1avdHQ&;-i\x19=Z=H\x7f[<\x075k=0F=;\x02No*>0Fɼ;T;턽;c(=\x1a<\x12>F\'=\x04W!\x0e?=ˀƼ\x1d\x18;Ӯ)<,@<*_x~V"P=ƏY@kW\x188rF=4Yo3aP<\x03=\x1eڸDpDe\x00V<}IKShC\x16N\x06Jo=:\x13UcǹC=\x14&<\x04xżq<\x046\x1fܦ`\x1f,=mμ\x14şbLӼ(\x11b;\t@3\x15\x02xi;@6<\x08J\x1f=xgb\x12LL\'\'WՈ]Z\x0fY4W<\t=*b*l\x0bK V=\tȻx\x04¼5F<6\x1b;\x1flm\x7fU\t9b\x15=~\x19=V\x01n\x15*\x0cs=ƋuA/Lμ <;ƻ;%l\x16\r\x0c=b;ң5f<ݭl;@()\x06j\x1a9\x14@I\x7f<\x1f}B\x14=WI90?G\x1d=һ<\x1c\x0b<6j\x141=fI<\u070e}Ɓ4\x11=\x102ڣ\x1fe_<@ac\x03W\x08?L\x0fD;A\x1d<^\x1a;x;\x18KZݼ\tb<0\n\t6\\<<ڼ5FC;nؐT.=%\x1dϨ<1*vY`K!\x16v!V"m\x1f<6\x168< =5n<5>=\rG=\x17;\x1fHcw\x0fǦ?<\x0c=4=\tY\tF;\t<=\x1c躕v!\x1chQɿ+\\_=.\x06.#\np8=/\x11"Q<&yx\x18d4W\x13 =@\x1d;p~\u05fc\x14\ua6fcLec(\x0c1:rQ<\x06<$e\x17Bi<*I<\x1fd5<6\x7f<\x11U\x19={;`\t=\'O\x136=;\x13\x02=If\x05\x1cQi\'=٥gN\x04=;<8)<,C"29)2#\x03\x16.;Z\x1d=]k\x0c=\x13{\x1eĺźyt\t=7Դ:P=G\x1b<\x13;60;\x03\x0e\x0e<\x08:JOWs7Ae<\x14GoU4/;=LC\x17};K\x14=I;?\x16[\\=\x05W)7#aB\tk=^q|=ݾ\rvmzM)l=*\x0fw+`\t<"` <\x0c\x0fǫ` ;\x05<\x00ˀ<\x17\x00=+L\tK<}F\x19v\x1a\x053=\x1bo\x02y"=im<\x1d\x19=^\x12\x0f=A<@b<$\\ʸi\'<\\\x08<\x1f\x12At6ΙlN~\x07\x16\x12<= /\t%\x00<\'\'\x1eoC%;\x19\x00\x10=Ĉ\x1d\x004=0\x17=4Cc\x03\x04bc=h<:+;]);譸;=C6KHs\'\r|=|;\'\x018d<=<\x14\x10/=u=KW=yw!;X﮼\\\x1e&=\x11!<*<;<\rC;Bºcn5<\x08<;=PDһ!MHy"={1<œ;\x04C-\x03=,\'<=b<"\x02;cx{!<뵿7V <)\n%\'9b"\x11=\x03C4rk\x03=\x1a\x03=*\x10LҦoy\x1e=\x1c\uef3d`^I==\x1f\x0cj)< 9\x1a<\x071<\x01\x05p?\x17<.(=fٻ\x107^91ϼ\x18\x0eHۺ㢻7%`^;\x0e^<;ɔ\x17=z+<)W<\x1e=e\x08؉<{I\x17:rk\no\x07~d؎<_\x1d`;0\x0bPA<\'\x05\u07fcU_ѻDǰ\x1cnGy-<\x06$\x0f];S<:<\\7\x12rk\x03=ܼ\u05f7y\x14\x7fx-<\x00<\u07fc2\x14Lx=*\x1d\x0c=Vq+݄;ӭɴ[<%}B=A?\x10\nMV\x0be=û/=\x7f4=I<妢"<\x06=T_J\x08:$P;20\x0c+b =ʻf8\r\x10="\u05fc\x1fԉ*M\n=.Xmc1̼熐\x13;\x05=\x12\x1e<7=BW\x06o&;e\x1e<\x14\x7fջû/\x0b:\u0378\x14ؼ8=-cBho;E\x0c=Xs":\x1f}|;d;-?=\x83;&N9bzN\x022SDY6:m)b;\x02E<\x04r<ߛ<]9<\\D=+\x06?μ\x7f%\x0bki=m\t\x11k<ށ7;\x17dۼtr8g;\x1bĺAo\t=4\x16(<\x0fA=Yz<(=\x0c^<+}\x08U\x1c=<\x11+(<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'doc_id': '418a2444-e92e-4f60-aa42-efc353d9bf30', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/globalhealth.dukekunshan.edu.cn/precious-/field-research-and-collaboration-add-fuel-to-global-health-dream/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:202c528b-e277-4cec-8fc4-388f33c5d972', 'payload': None, 'score': 17.382577027310873, 'document_id': 'index.html', '_node_content': '{"id_": "202c528b-e277-4cec-8fc4-388f33c5d972", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/globalhealth.dukekunshan.edu.cn/precious-field-research/-and-collaboration-add-fuel-to-global-health-dream", "filename": "index.html", "filetype": "text/html"}, "hash": "3beadfd247aa8ad8135db885328432d57ee06d2ef9001e329ec14ba30c019380", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8fc33e4-3637-4160-8c0c-9a9a50043395", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "801e6218bb176f03059a6d4a99ff025af14e2ceda3c596e2a9144f1ce6f95e55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f046b491-b86b-443a-8eee-65d97cc20a04", "node_type": "1", "metadata": {}, "hash": "76cf2b9a5eec305a46c71031c2c761ecf37aa54f1000574c482a606a006a8c5f", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-cNxż+\x1a\x0f \x17Ἑ{\x07S\n\x136̼*\x13\x0bls\n:\x1c<<[08ў<\x1eM\x0f<1lx;G\x0eQ:x;Gɼպ<#tɻwCd=j;<|ļH#v2<\x0e:ES3@C<5\x14=F\x03=\x04?\x1bp?;P|=f2{\x1a(L\x0c_\x1at=6)=;TK=p=r=\x1e\x05A=|/;#@6\x06-dԼ샗;\x07\x13^ESXGg\x12,g=:ӵr<0=<\u05fct;\x1bŤ<9Ǽ\x18;\x11\t=\x10\x1f"\x01=kO=I[\x17<\x11\t;.-S_\x15=g/T\x086<@Ǽ\x14n\x0b<\x0b}<\x16\x1f{\x7fw<=Eռv;"¼+zЋ<\x0c\x06=.xC8\x1e=*\x1c/A=csNL\x1a<\x08|*|;4\x1f\x11:Kܼ"9[\x12<\x1eB=\x04?e\x1e\x1c%0Pa=g9<|R:<~\x17<07=\\/U.\x19<\x16xmS\n<հ3<2K\x7fX;\x06\u07fbp7QE;kKC\x1bŤ<Ӵ;\x0cr2\r]<\t<|=N큼\x04?tt=}\x0c<<\x05<Ƈ\x1c&=7E;*;6\x16;0;h_G=\rmc\x18܄V3N<9\\kK="-\t\x7f;o0=V\x05<<&\x1d\x14\x12,\x1d\x17<\x01G5\x14=b\x03=E>9=\x11Wo\x081\'X&\'\x0bdt=)=oS K=Θ<ď\x11=AB2*;;<\x15\x1b<*.\x10Lho\x14\x12,\x12\x16=O:_tt<@=<%\u05fc\x16;\x12\x16<\x1eɼI9\'_<1\'<2ļZ=S횼26\x01=\x16O=\x15\x16<\x05\x05;.-\x15=s.{\x08̑;C\x04\x02>=\x03C<\x12Tt20)oĐ9=M6\x0b4s\x06W?a;e{\x0c=+p=\x1c[!.-W{\x07\x1a;<\x1b\x1fvI<\x17p\x7f\nɠ<\'s<:\x1e=++\x1c\x06A=dĮgM\x1a\x1e\x1c<*;<;\n<\x1e\x08\x11\x04=J\x1a<6GcʼR\x02b=\x18\x05{<;|iR\x1aw=\x12\x1f*\x0c<;`3qg_G= \r:\x18gP\nN<\x12⼕L=\x7f-A\to;\x15<\n;\x0cR<;-钻\x18\x166)1O<Șc;,k\x0f= \r\x0b=F=\x10<-*\x11fC<\x13=T<', 'text': 'Before I came to Duke Kunshan, I was a doctor. I spent eight years studying in medical school in China and then another four practicing as a cardiologist in a tertiary hospital. Now my interest is pursuing work at the intersection of disease prevention and primary health care.\n\nI loved my job as a doctor, but it wasn’t completely fulfilling. I worked very hard and treated more than 1,000 patients in four years, and I noticed that many patients were not aware of disease prevention or management. I asked myself, ‘How many patients can I cure in my whole life?’ My conclusion was that I needed to do more preventive health care rather than just clinical treatment.\n\nThat’s why I wanted to change jobs. I wanted to learn more about preventive health care, public health, and health systems and technologies, and the best place to do that was in further education. It was a tough decision. But if you’re confident and follow your heart, you’ll get it. That’s why I went back to school.\n\nMy original target was public health programs. I searched online and, by accident, came across the idea of global health. It was a brand\\-new concept to me. I read all the blogs by alumni and students from Duke Kunshan, and I discovered that the master of science in global health was exactly what I wanted in a program.\n\nWhat attracted me most was the field research component. It was fascinating. You have the opportunity to research and live locally with other health providers from different cultures and health systems and learn about both successes and failures in health care. That’s really precious. Also, you can spend time in three different countries ‘ it’s awesome.\n\nThe courses, the field research experience and the interdisciplinary collaboration were fantastic. I chose the courses on noncommunicable disease in the first semester and learned a lot about how to manage and follow up with chronic disease patients, especially those with diabetes or hypertension, which are highly related to my background. I also learned how to use mobile devices for patient management, which is really interesting and helpful to my career.\n\nWe also had courses related to research design practice, and we learned how to design high\\-quality research projects, including quantitative and quantitative research methods. The statistics and epidemiology courses also helped me dig deeply into how to analyze data precisely and accurately.\n\n \n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2023/08/07145854/ji_xiao_blog_inset-1-395x400.jpeg) \n\nXiao receives her degree certificate from Shanglan Tang, executive director of the Global Health Research Center\n\n\n\n\n\n\n\nI found the field research to be really valuable. I conducted my research with Dr. Ann Marie Navar from the Duke Clinical Research Institute. We conducted an online survey in China and the United States about doctors’ attitudes toward lipid management. It was awesome to work with a professor in the same field in another country. I got to know more about the U.S. health system and why health care providers there have such different attitudes compared with those in China, as well as how different guidelines work for them. I also got to establish very good connections with doctors.\n\nThere was also amazing interdisciplinary collaboration on the program. My classmates were all from different backgrounds, such as programming, engineering, biology, internal medicine, health care administration, and medical English. It’s great when people from various backgrounds work on the same project. It’s kind of like the movie ‘Fantastic Four’ ‘ you all have different abilities and use them to solve a problem. I like teamwork, and I liked my team members. I hope this kind of collaboration can create some spark in the future for China’s health care system.\n\nI can now bring all that I have learned and experienced in the program into practice. Even though my main goal has mostly remained the same, it has slightly changed over time. I can see my future more clearly.\n\nMy next step will be work at the intersection of health innovation and primary health care. I’m applying to join programs in this field in Asia as well as to health\\-related technology companies. Now that I have both a clinical background and a global health background, I plan to integrate them.\n\n\xa0\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/globalhealth/2024/01/07145742/BL_Global-Health-Program_04-copy-e1688519787551-2.png)', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{12561 total, docs: [Document {'id': 'test_doc:c4f28e62-fdf6-49a7-a88e-0d047e91e051', 'payload': None, 'score': 6.748795506943125, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "c4f28e62-fdf6-49a7-a88e-0d047e91e051", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b7b88d89-7a53-4e71-8678-c062ad1bdd29", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fad8155c-cf3a-4e0e-88bb-bae31a75e089", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '\x14o$;]$Ov!ļ{;M<\x15\x1b>\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n 1;\x1a\x1b=3SbA,\x14e\x00Y=L˼N=\x1c=\x18=Ur=\x04y.g<\x7fi黌);F\\<72*<\x01>\rkw\x03\x14R\r\x10f;\x1b7;>;Kܼ&=\rs\'\x0f\x0cj\x08\x14!n\\\x12,@\x14\rOW=;]=7b=;<\x08;\x1c<;Xy<4#;\x10<)@\x0b8%٭Fb\x1a\x1bk<\x18<<\x1fu<|z<_\u07fc;\x1eކ&c=\nu;\x11=\x08<\x16\x02\x03V&\x1el<;04)\x08\x14!d\x07yuz=\x05ӭ\x1d\x06f=:-<`ּ;`\x00=8%;\x10><\x107^|(T}Ἥ\x16;vh\x02=\x0b\x03\x01\x16yd;\x7fn2=06<3S:;<:\x11T\x02=\n<\x06<`qE3S;rD\x0eO<`\x0e\x0e1\x19\n=Y~ @*N<(N4#2g\x1f<:q}\\ <׃ \x1f\r\x01q<7b1me=\t\x02=q<\tk!<\x10>:\'\r', 'text': "His research is not limited to air pollution, but also covers water resources, energy and climate change. Recently, he and his team have been working on the top-level design of China’s carbon market in order to advise policymakers from an economic perspective.\n\n“There is still a long way to go before these theories can be put into practice in China. Perhaps the changes we can bring now are tiny, but as long as they are useful, or they are positive, our return to China makes a difference. In fact, no matter what you research on, not merely in the sphere of environmental studies, so long as you are concerned about the environment in China, you are moving in the right direction,” Professor Zhang said.\n\nIn 2003, Professor Zhang travelled to the US for his degree in Environmental and Resource Economics at Duke University. He planned to pursue his academic career in the US, and meanwhile became a father of two children. He enjoyed sharing his thoughts through academic papers as much as sharing the lovely quotes from his sons through social media. He was appointed a tenured faculty member at the University of California, San Diego, and it seemed that his story would go on in the sunshine of California. Then he made an unexpected decision: he would go back to China to join the recently founded Duke Kunshan University.\n---\nBeing Global Environmental Leaders\n\nBeing a foreigner in China, I’m always asked where I come from. It got me thinking a lot about identity. Norwegian is one of my identities, and female is another. That’s how people tend to position me, but that’s not how I define myself. A distinctive feature of a globalized world is that national boundaries no longer carry much meaning, while our life experiences and outlooks are more important.\n\nAs we all know, global environmental problems such as climate change and marine pollution have emerged. I think the fundamental issue is how to view the relationship between human and nature, and how to make people more concerned about these issues is the main challenge to achieve environmental protection. Therefore, as future global environmental leaders, it is critical that our students are able to identify various ideologies at play and ultimately support and facilitate public acceptance and compliance with environmental policies through them.\n\nProfessor Kathinka Fürst\n\nLaw and regulation researcher with interests in environmental policy processes, law enforcement and compliance and the role of civil society actors in environmental governance processes.\n---\n# Professor John S. Ji\n\nEnvironmental health researcher with interests in population health sciences, epidemiology, occupational health, and energy and the environment.\n\nCan you introduce the research that you have been working on?\n\nI do two kinds of research right now. One is on the science side and one is on the policy side. Both are meaningful. I enjoy more of my work on the science side than the policy side, but we get a lot of information from the policy side.\n\nWhat are you most passionate about in research?\n\nFreedom. You can follow your thoughts even if it's not systematic. It's really amazing that you can find something by accident that deviates from your original idea, but the new idea that you found by accident actually it is more interesting.\n\nWith your experiences and reflections, what’s your current understanding of research?\n\nAt the end of the day, it is answering some very simple questions that currently people don't have answers to. For some of my studies I'm using data to find connections between A and B that I feel exist but they may or may not be there, so I need to do these kinds of research to find out. Some research is very meaningful in the short-run. Some research is meaningful in the long-run. In fact, most are just not useful at all, but they are efforts of trying to be meaningful, that’s important. It is really fun. It's really fun, if it's a question that you are genuinely curious about. Genuinely curious.\n\nIs genuinely the keyword?\n\nYes, genuinely is the keyword.\n\nLet’s talk about teaching. If you choose to open a course at DKU, what would you like to teach most?\n\nI would develop a course on planetary health. I will bring in the experts from each topic. Some econometrics models, some study design, some statistics, some kind of a mapping tool like GIS. And layered on top of these analytical skills, the various issues related to the planetary health, like pollution, climate change, water scarcity or atmospheric processes.", 'ref_doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'file_name': 'imep_year_book-v6_bt_e.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155119/imep_year_book-v6_bt_e.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9d741364-d09e-41bc-a81f-668b2ccb59e2', 'payload': None, 'score': 86.79123908507859, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '132377', 'document_id': '369c95b3-bcf2-4ce6-80a9-da39d8befa7c', '_node_content': '{"id_": "9d741364-d09e-41bc-a81f-668b2ccb59e2", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "369c95b3-bcf2-4ce6-80a9-da39d8befa7c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "145a4af52f9e61f58dcdb62d79e0c007fa5e89084e392a05fda8844d2c46e968", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bac532d5-ec6c-485e-a3e3-892326752fa3", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "17524a3c808e77325ec13cc19f828007c0f8bdeb727086b5ac2265217157efe5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "51eea6ae-e400-402a-ac41-4485ca6aa8f1", "node_type": "1", "metadata": {}, "hash": "7877b626e092c83a74cdcdc07e6ffacb642d90ab1423b25572827f1169d0e63a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 10401, "end_char_idx": 14491, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html', 'vector': 'tY2R@\x035ENC=\x1f<ƿ#[}\x1eVE=Z=\x1d\x1b\x14ŻӺ<˪\x1f_m<7=\x04:\x1b;kA]@_<2鼿/Xa\x08<\tC&ۼq<5]\x1bo<(q+\x1f:ɻO3vvCc\x15Q<$\t)f\x1d\x0e:;^=O<\x18\x07<\x17,\x1a@值l?DtplD`=tp\x03<\x0f\x11^]3@;\x13ූ\x19қ;\x08TM\x12;)S\x06\x1bUx<\x7f3\'bף=ڈ9^;¼ӌ=c\x0e;\x03_B]@\u07fc6JD\nҟW;\x18\x077p\x10s|!<=j\x7f\x01?b\x15\x13ĉ<֯Cʥ<<\x12\u05fbd*ݼ!F\u070ei&=\x13\x03-To\x0cnd髻ڬNrJ\x148T\x03=\x04㼜\x06<^# ƿv\x15-м*A)\'\x15\t=\nPK=+w\x02\x1d٩`hr;i&3*=\x0eJ\x12c=M?<\\\x00ߩQ\'<\x0cV^#<(ˉ<<\x14<3\t\'=;\x0fܕ;\tۼ\rF<\x08<7_\t[Q\x17iW\x0b5U\x18dnN=W:\x10hi=\x00%<͆\x1e=<ƺ\x0bt\x0e;:<*=\x11\x19;\x1dپ4<ɹx\x1f=hrNU>T뫼ঽN\x16w<<\x17=DY::\x00uO=JEvY=uKNU<\x0f"+\x03dnN\x00"=Ml<[X<"X\x10<\\h\x19<}P9C[XG\x11<;WkT;]i#u%;}=9̼]ﻌ=/<5!/\x03x\x0fi=cMl\x10<\x14ǼϞsyA:o`O<<\x7f{6ʼM̼|z1=:\x15=z6;\x13,\x16,¼e@R< HYy݅<{=3\t<6\x03=\x03<=N"=mgJ+)м՜B`EDѝ<\x03eF\x06<\x00=\x0ej\x12<\x1dk:<~tC\x19\x033\x0fq<<=)<ŽG\x11L:/\x1dݼ\x18<\x01\x06<\x05\r0{= \x01\x02dnμGP\x05\x7f!\x04\x05\rw̌G6;js;\x7f?&;3<ݻ`#\x1c\x1d;{\t\x1d\x0e\x17\x01\rN<{;G=\n<.\u0379m\x10g;\x18;1M~&Z=ٟs=4\x0fl<\x11(\x1a:QU=;j"<\x10ڼ\x1a \x01=&M<#<\x01;<\x1aͼ[\x14r{\x1bc<\x17L(\\={Ee"V=\r;.;&=~&ڼ\x14턼~<Ƌ\x1bnYB;Y%;$,<\x1dw;2=\x16\x13;\x049b;\rs,7B7\x05(o\x1fV8=\x08\x066\x07=e78˼\x0ef=>λL=iJV=Fc\x04<9@&\x04\x1e;;\x17<-:9ϼht<\x18_b;\x0fG\x02/r<<ư<_b\x03Q\'EM*;Ubz?;ƥ\x13F;:j$)2\x04<\x00=X\x02\x1c=sb\x17\x08;`ÁFc\x1d3;.ͻ\x01nw[;a.!;zw\x05\x05D9_EgdA<*hL˼\x1f\x06=\x10\x16ja$:\x7f#<\x1dgJ=\te\x07B;H=\x01\x1eO?-<4\x12\x96<;3:ߤ3;\x08\x066\x00EмR\x1d$=];{n~Zi<<5ƅ,u=:\x03= zu3\x1c=p4[;Ϸ;6\x1b<\nC"\r\x05\x1f=$<1%c<3\'f3|0w0<\x07\x0c<)ʼ\x0c;\x0bqZC;q\t=%otH\r<\x185=mS`\x10\x00<[\n-֞@C\x0fqI<ҠNL\x07=\x7f%:nмAcM6<7Յ\x01Qʧx)ެ\x1b=\':\x11\x1f=Y[k\x06{.v;:%Э;$t\x07\x1c=F*z\x0e\t8\x1d\x18\x19<~><\x1e\n;{\x1dڼ|M0+<=R<-7<\x03=.\x05\r=R\x0e\rR<=\x03\x01߿\x16R=A<\t$P:_=\x15\x16=l\x1dY-<\x01Q)+%=šrٻߦ+G\x08=J\r\x1c;dZ;\x008̡<[\x7fy;X\x1dF\x0cFq\x04\x15\x07;0)\x1b|\x19\x13;V4=\t\x029z<;"; <ސ<6l\x1dKOO.\u05fcT\x06\x0e\u07fc\x01Q\\ؠ<\x16i=\x1eu=\x17FE=၀Msr5<\x08u\x1f=\x04\x01U<\x1b*<Ɏ\x0f=fT\'=<[\x0b\x17ӂƼZgԼq\x0e=";P:=ǺxR?:N3\x01=Ӽ&V@\x03Q:Düt<~ӂƼE\x16=J.i;<(\x00<\x16\x14<< 0<۹<:È;ӱ.;\x00ms\n=~g\x04<;N!s<ĉ|;Y\x16j`\x1e;^<\x111=7\x05M\'<.<,\x10DO<', 'text': 'Professor Kisha N. Daniels (Dr. D) was the instructor of both EDUC 101 Foundations of Education and EDUC 204 Educational Psychology, the two courses I took in the 2020 fall and 2021 spring semesters. She adopted a strategy called flipped classrooms (Nechkina, 1984), which is a type of blended learning (Friesen, 2012) requiring students to complete the readings and learn contents before class, and have discussions instead of listening to lectures during class time. Before each class, students needed to watch Dr. D’s pre-recorded lecture videos and read materials to have an overview of the class content. Then we filled in a note-taking guide to reflect on what we had learned. Finally, we attended the class to have in-class discussions, group activities, etc.\n\n\nAs a math major student, I was used to listening to lectures without speaking a single word for a whole semester. I had even thought about dropping this class after I read the syllabus! However, Dr. D’s class opened a whole new world for me. Since then, in every class, I would excitedly click the “raise my hand” button in Zoom—I could not wait to share my ideas in the heated conversation.\n\n\n**Optional Attendance to Synchronous Classes**\n----------------------------------------------\n\n\n2020 was a year of chaos. Coronavirus and the international travel ban are distributed to students all around the world. It brought many uncertainties to our lives: unreliable internet access, different time zones, infectious outbreaks, etc. The school year taking place at the same time was obviously not easy at all. To ensure class quality, some instructors took mandatory attendance for those who were able to join the synchronous sessions. However, Dr. D was an exception: she made her synchronous classes optional, even though it was discussion- and activity-based. I was wondering why she did not make it mandatory, how she provided a relatively equivalent learning experience for those who couldn’t join lively, and why almost all the students still came to the synchronous classes.\n\n\nDr. D believes having a certain level of flexibility as a professor is always difficult, but educators should still manage to do so since it is not the reality to control everything in education. Students are adult learners and should be treated as individuals. They might have different learning preferences and face different situations. Giving them flexibility can be a form of warm support through hard times. For each assignment, Dr. D prepared two versions (synchronous and asynchronous) with detailed instructions: if you can come to the class, then you can work in a group to do the assignment; if you cannot, then finish these sections of the assignment as equivalency. By doing this, every student was fully supported.\n\n\nAlthough Dr. D’s synchronous class was optional, it achieved a relatively high attendance rate. To tackle the low attendance rate problem, Dr. D invited students to relate their own background knowledge to the course concepts. If some students did not come to class, they may not have a chance to realize how educational psychology relates to their everyday life, and what their peers’ educational experiences are like. Once students agree that class is the place where they can learn more, it will become their motivation to attend class. “Students are adults, even my freshman students. They are starting to figure out who they are in the adult world.” She, therefore, lets the students decide what is the best study strategy for them.\n\n\n\n> This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'doc_id': '6d2b6150-a682-4478-99a5-089ba484a7d1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2021/12/flexibility-adult-learners/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9aefe5bf-1e1f-4b31-ae11-5874c5393dbd', 'payload': None, 'score': 11.807439363540126, 'document_id': 'index.html', '_node_content': '{"id_": "9aefe5bf-1e1f-4b31-ae11-5874c5393dbd", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/lile.duke.edu/blog/2021/12/flexibility-adult-learners", "filename": "index.html", "filetype": "text/html"}, "hash": "c12bb19afe9091cf6fafa09e70f8b388092e96d62da508203161dace2cb3af57", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a427db5-ac02-4ad5-96b7-8dae766073a9", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "da61cf9bbb421fc985a175359a38bfee69742fb1d22c5e91ab9fc51a580553c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28a6432f-f95e-4e16-97a2-bc96b30e43f2", "node_type": "1", "metadata": {}, "hash": "734cbde4b860d7eb88633b64f3ce5635c61c46f1eee2dd8fb3ea547d481396b2", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '@..\x1a!>\x02L)=<¼LR9"-=f2\n\x1f8;I\x13\x06̼\x19E;ǁB=^\\"Ⱥ)=)@缚RV\x1bJ܋g\x1f\x18e\\s=|\x0e<\x12\x19k 0h;o\x06\x08=^`:62<\x0eM\'=<\x0b\x1b_=59?/\x05\x1f[=I\x04\x7f<\x0b\x0e[;\r Qp=\x1e_+DySz\x14:D4;e:<\x15uN=={;\x1eF!8<{\x15\x03J\x19\x0b\x1c;\x12=!<+DP̥,\x10.\u07bc+-<1\x15=\x00k<\x01=\u05ce6-\x11֚ȼ0\r`;nB;\x1e\x19<Ѝ;]<*\t;\x1d*|$;^\x14SGJB)_\x05\'\x14\x03X8\x1c%=eX=\x13<{z=%W39L\'߷{:IC2=E(<\x1cAVR\x7f\x01KR\x02\'\x12<\x0cI>\x00\x19R<<^<@Pg#=C \x08=ߟ<.<һ`d#\x16<\r<-s\x0fϼ =\x14fڙ;\tB4<\x08 This is Dr. D’s philosophy: if you don’t have a choice as an adult learner, you are not going to work at your full potential. Only when your intrinsic motivation drives you to study, will you make full use of time and effort.\n\n\n**Differentiated Activities and Assignments**\n---------------------------------------------\n\n\nDr. D is keen on offering students choices in the course through differentiated instructions (Tomlinson, 2000\\).\n\n\nShe would tell the students, “*Here is the outcome that I want you to achieve, at this point, you can decide freely how you would like to do it. You can read articles, listen to podcasts, watch videos, interview, or do anything to finish the Common Ground, which is an assignment to share how we connect our own experience with the class topic, by referring to any available resources (podcast/movie/book/paper/YouTube video/etc.). I can give one resource to you, but you can also pick your own. You are an adult learner, you should learn the contents on your own, and it is my job to make sure you are on the right track.*”', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:8164a0d1-1226-4de6-8d7a-39699df9bbb1', 'payload': None, 'score': 7.2496097371351755, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '2826244', 'document_id': 'bfe60902-d299-44d5-af13-f68c06604fef', '_node_content': '{"id_": "8164a0d1-1226-4de6-8d7a-39699df9bbb1", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfe60902-d299-44d5-af13-f68c06604fef", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "4423c15f0262081da99b5983d0c0d4888dd19d09a77408a79310122494d98daf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1101e903-21fb-4f1a-a913-cd4d0db09034", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf", "file_name": "Registration-Guide.pdf", "file_type": "application/pdf", "file_size": 2826244, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf"}, "hash": "a0ce698216bb12351e6c53c1f0a2e4b69df29c33d5af55c6ee316510f7e616c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc4f1340-3c4f-489a-ad6f-ff61fc6ae5bb", "node_type": "1", "metadata": {}, "hash": "f086c88c19abfef10f0e7100cf75308dc71e1c1a8b0f65ac1fe88aa3b3693b3a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3197, "end_char_idx": 6819, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2022/09/14130952/Registration-Guide.pdf', 'vector': '\x10\x1br\t\u07bc\n}\x19\x02JG<;JT}\'j\x16q<\x0c\x0f\x03!:ʊ\x0f\rnQD;?#M;O,<ⶊ<\x16q1<\x1e\r軛ٲ8-}Իg\x0e=\x080?#M\x17M4\x0c:Z{\x13<\x1e+!5(r>*x~=J<姻J:SVkB\x0c:=\x1d\t;\x00<\x04\x12s\tB1j=s\x195f=ӻ-<1GŒ:[.\x0cb =$k\x0bJ<\r=姼\x1b\x08<\x04)\x05\x06=IWD\x00=˼\x17o\x06+=Ą=\x0e/\x0bl,<_\x0b<\x07<{\x0f;Ym?l:=dp@<{<\tZ̼\x12\x0c\x03=\x1a\x01"=]\x0c:;\x05=ޓ\tf/y\'=\x1aָ݅\x17\'<\x1be<\u0602;A\x0b*a<ɳ<>\n\x15\x7f줼~+\x0c:R]=\x14\u07fc\x0b\\<ʽ\x07;k\x111G\x1f\x104jOn;ej0A=F];\x00\x1e;\x080"6V\rr4\x1ad\x05u/<+8;\\\n6=r q<ȝ\x12=\x15\x0e\'#=A\x1dⶊtlлS!m=\x1bU<2\x14=`\x1b8»\x1c⻨ӌ],\x13,&r>*"L<\t\x10d|\x0c:$:\x07<8T\x00\x05=\nL=lv;ќ\x12\x0c&)\x01oxE\x10g\x01D\x18\n:4Q컼c;\u0bfcч&ثF<⠼ּ\x0eO=ܯ;FV=\\<\x03I㼋7\'ٕ};\x7f 7=\x1b=\x02<\t༜뻘NmB\n\x13㣼fһ;TW5=\x02;0\x1fD;뼮<$;\x1d =>"=/"==\x7f\x19\x1fʼݎ廬C꼈\x1fLoU/:#t\x1f{=(#=-<܋;+E>;\\G\'x\x17\x13kΊ\x027s5T=\x1eV\x0e@\x7f 7IϼxI/ͼ;\x0f=[<-<\x06\\+<\'g;k6<3\ue63b\x13=u=\x18)b\U000bb508B>"=\t=\x1cwC=#\n;nop\x05;%=I\x1e=8Ƹ~vw\\Uȼb@z6Ja\x0fq1:țJ=,~\x7fȼ3㊻\uf7bb\x15;=`\x04\x06<\x02\x00E< “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom \\[when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs \\-animals – photosynthesize, so it is eye\\-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step\\-by\\-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'filename': 'index.html', '_node_type': 'TextNode', 'last_modified': '2024-08-26T07:37:25', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'languages': '["eng"]', 'link_start_indexes': '[-1]', 'link_urls': '["#content"]', 'link_texts': '["Skip to content"]', 'filetype': 'text/html', 'category_depth': '0'}, Document {'id': 'test_doc:3813364d-5d0b-43b2-8b98-89f90953c7b8', 'payload': None, 'score': 7.140919556971079, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67846', 'document_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', '_node_content': '{"id_": "3813364d-5d0b-43b2-8b98-89f90953c7b8", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c67a53bb-8127-4a54-8b71-e1b38caa9ff1", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "19d045065fa9deb404ca09df5d278e17246849ecf0ad229013a4f1b8ebdf6baa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44dee6a0-7eb8-4a9f-96db-c955c8a4af03", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67846, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html"}, "hash": "d32b9c44375b348bc666ef0aec15d9716110288a771b9adacf9715e299e14eb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "db799e37-46c6-4470-b828-20f113c1c7e1", "node_type": "1", "metadata": {}, "hash": "95ca862141792c058376d879a3bf777f6a55c3680aed266ff9ed2bdabe4d79eb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 3981, "end_char_idx": 8579, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', 'vector': 't4-N\x19\x16\x04\x06%3\x0b;)R;Xv\x12@:\x1aXv4!&m\x08<(0j=\x0cr뺚\x00 \r9:\x03R=y௺\x00F\x1e<\x1a;;\x16\x02:->=ۜ<6\x11=VI,aK)Aнx<;)<;<\x1a,=\x08|WA<~y/=DI9\x04+L\\}=W\x1b<]üt\rxtR<\x1c\x17+< \x10\x1bP=<\x17\x12z\x0e<(0j:L\x03EZFe\x10h;WTb=Y<\x1e\x0c=\x17,;\x16%<<\x11\x1e8\n\x0c+\x12;\x16%<\x0e\x1d<^Y\x04<<]\x1aj<<;twϻ`?\x07p=JӍ;&\\"y;IwF7"\tgIw<\x1bw@\x1dP\x15E\x08! “*I do not like biology, but because of Renee Richer, I was so motivated*.”\n\n\nHow rare and precious are comments like this in the days when student disengagement worries instructors all over the world? We had the pleasure of talking to her and asking her to share her experience with teaching online.\n\n\n### Reach out to Students and Establish a Learning Community in Online Classes\n\n\nIt is so hard to connect to students scattered worldwide on Zoom [when teaching remotely and students outside of China cannot return], especially in a large class, but Prof. Richer still tries her best to reach students wherever they are and make ties with them. Besides telling students that whenever they want to meet to just let her know, she also stays behind after each class. At the end of each class, she stops the recording and tells the students they can log off now, but she will stay for a little while in case they want to ask questions or just chat. Turning off the recording helps students that will usually shy away from cameras.\xa0\n\n\n\nShe shares “silly” cartoons about science and does ice breakers throughout classes, so students talk and learn more about each other. To establish a sense of community, she also encourages students to share their work, read each other’s papers before submission, discuss what concepts they are struggling with, and learn from each other. During the lockdown due to COVID, students in Kunshan could not go out, so students in the US went out to collect the materials for a lab. Students in Kunshan contributed by doing what they could, image analysis and calculations, for example. They came together to build the final lab report.\n\n\n\n### Engage Students with Extreme Examples and Relatable Assignments\n\n\nIn class, Prof. Richer uses extreme examples to shock and “wake” students up. For instance, she talks about an animal, a sea slug, which eats algae, incorporates the chloroplasts into it, and photosynthesizes. The animal’s genome has incorporated some genes to keep the chloroplasts alive. Most people are unaware that these sea slugs -animals – photosynthesize, so it is eye-opening and engaging for her students.\n\n\nStudents love her assignments. One student said, “I love the enlightening podcasts professor assigned to us each week, and I love the Six Extinction reading. It makes me fully amazed by and respect the power of nature.” Prof. Richer uses scientific documentaries and podcasts that are fun to listen to and relatively easy to understand to illustrate what they are doing in class and have students write a response paper. Instead of calculations and derivations, students are asked to write about: “How do you feel about this?” “How do you respond to this unexpected scientific discovery?” “How do you respond to the fact that plants can learn and have behaviors?” It gets students to write about how they feel about sciences and how their attitudes toward sciences are changing.\n\n\nProf. Richer also assigns light readings, such as short science news articles, and scientific papers, which she guides students through step-by-step. Students enjoy knowing they have the knowledge and expertise to understand a scientific paper and grow more confident in their pursuit of the sciences.\xa0\n\n\n### Guide Students with Personal Experiences and Train Students to be Young Scientists\n\n\nProf. Richer loves sharing with her students the failures and successes that she once experienced as a student. Students often do not realize that professors might have once struggled in college as well. They may not be aware of the challenges that their mentors have faced and overcome. Sharing that experience with students is an excellent way to establish a connection. Through faculty stories, students can see themselves, their struggles and successes, and how to get where they want. This successful and confident person they admire once struggled in classes as well. What else can motivate the students more when they are down? As Prof. Richer says, “I share so students can see that it is their personal motivation and diverse experiences that are an indication of ‘success’ and not perfect grades.”\n\n\nShe believes every student has unique skills and knowledge to contribute to the academic world, so she encourages everyone. When a student has an interest, she tries to support it and helps students see that their interests can be their careers. She always asks students how they imagine their future and how they would like to spend their time. Do they enjoy being in the field or the lab? What type of work do you imagine themselves doing in that setting?', 'ref_doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'doc_id': 'c67a53bb-8127-4a54-8b71-e1b38caa9ff1', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/learninginnovation.duke.edu/blog/2022/07/renee-richer/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{2099 total, docs: [Document {'id': 'test_doc:d363a1cb-9c5e-4fb1-9d69-efdfe6556773', 'payload': None, 'score': 719.2383613881026, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '508476', 'document_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', '_node_content': '{"id_": "d363a1cb-9c5e-4fb1-9d69-efdfe6556773", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5eed989b-3617-4479-8daf-3dc7f14d35ee", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf", "file_name": "pre-med_advising_faq_official_ay201819.pdf", "file_type": "application/pdf", "file_size": 508476, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf"}, "hash": "1531961555db840cdc91ded673cff60dc58a823e4db217e00c42ad46672df04f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4fe06d28-ef28-45a2-9613-f1128c83acba", "node_type": "1", "metadata": {}, "hash": "810202455f44738a4605524507fef8bf9fccc039bed143acfb4bcd157886b452", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 4710, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', 'vector': '@BGp\'drp\x04}̼hԻ5\'\'$q=w;WX:B\x7f\x1a;i\x14=0\x1a2fo\x1dY\x04ņڻwts}ݹ6=S\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 337.1156939543695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=F\x10>s\'<\x13\r@;\x16;#d=WV7>\x15"=nJ;\x12{]\x14V\x07 \x02\x03@:Bv\x16=;s<\x03f:ơ;<@85D!\\e7\x06\\RĖO;\x12?\u07fc\'ռ\x16~;Uv;GI4\x1fuN=k>w..\\R\x00<\t¼`*!<\x03\x00+<(@=Qw;<,\x13&=/Y\x04\x0e\x01=QЛRx\x05,p"\r\ue89f<:\x18l#2=;\x16<.;u#vF\x15\x02mul;\x02\x7f;R\x07w;==<Ƹ\x11\rWvSw;X¼.0<\x02;t0=CC@<<\x05\x0f\x1d7<\x15"=\nE<\x1c9=\x14\x19PuN\x06FN/&#aȇ̠<@<\x03\x14=\x16S=\x15;\ue89fe|*l=\x15Q~B\x05\x04\x07=7\ue89f\x06<\x11㻲;;Ӻ0ϼp\x19\x17ykE\x16-δ;F:I?S<:`y<1v|}77\x17<_c\x0f˼x\x1c<\x1a+=/\x1d6\\\\<\r=;RƼOz;\x04\x07=;\uef3d\x01~S\x03\x14<;M;;<<^<\x0f\x04=g<*l<\x12?_5Ai\x14<0ϻw\x15\x05<}i\x06Y;{=ˢS\x13d\x08`V<\x1fA=\x04\x0eW*(=:xybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 22.017761321393312, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 16.909464721736892, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{28948 total, docs: [Document {'id': 'test_doc:6b15ce24-5683-49a8-8c49-c2f6e5f2e973', 'payload': None, 'score': 8.076584083339307, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '612545', 'document_id': 'cda9bffc-5494-4a8a-ac70-6b18a1d81efb', '_node_content': '{"id_": "6b15ce24-5683-49a8-8c49-c2f6e5f2e973", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2020/Data Science/DKU Syllabus Introduction to Computer Science Spring 2020-Ming Li.pdf", "file_name": "DKU Syllabus Introduction to Computer Science Spring 2020-Ming Li.pdf", "file_type": "application/pdf", "file_size": 612545, "creation_date": "2024-09-02", "last_modified_date": "2020-03-20"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "cda9bffc-5494-4a8a-ac70-6b18a1d81efb", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2020/Data Science/DKU Syllabus Introduction to Computer Science Spring 2020-Ming Li.pdf", "file_name": "DKU Syllabus Introduction to Computer Science Spring 2020-Ming Li.pdf", "file_type": "application/pdf", "file_size": 612545, "creation_date": "2024-09-02", "last_modified_date": "2020-03-20"}, "hash": "7a8e93809de1d1eab2d43eddf92d65ddddffe687317d7313da713ca9be1cfcd7", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 2959, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2020/Data Science/DKU Syllabus Introduction to Computer Science Spring 2020-Ming Li.pdf', 'vector': '=iA\x19/XWɼy.4wF\x19V"L<\x08!5=N:\x03=Ǎ;}\x133=seuR<\x17&\x03<\x12:_Ż\x13h\x0bļo;k<<Ϣt\x19\x102<\x7fƼs#}ț=;crD? =(\x07<<-\x18\nV)K&U\x16=V©jN\x07;ٻ\x1b\x0b\x05>;3\x02=FK<\x02=Bfl~\x1c=&;RA\x01:X=\x02;;iL.=\x06|e<+="LD9ϫm<`J\x13-;\x058м\x02=ئ\x19}\x1eqs;H\x12\x0f[=\x1atwc<\x160:\x18\r>6X[<~<\x04\x10%wV3<\x1eI\\\x07ۼw.;.]A\x19\x16*\x089)\x1at<ǻ\x02@Bfl<\x0c\x064<}/Z\x07\x02ݼ-<\x0eТD\x16\x0e;dư(f;\x04=.*1\x13\u05fcRE<>\\h)K=W/< ?\x1eI\x1f%;[\x7f\x1bux\x11U=3M@<.l&rR/ڼ`=9<24_<%9<\x13\x12\'<Ɣ#=\x0c\'*\x0e0\x1e<\x1bux=\t\x0cڌz<\x0c/\x0c754T\x1bN??=]\x0cǻ!-\r\x0b\rт7up=g\tMouwCx)u=^;y\x16=;d\x06<\x18<\x11\x16\x1c<>;\rCnFu=E6=B^9=Z/1<>\x17\t=m\x11D=_X\x12;1z:Q\x15i<-<\x1buxaL<ӼW%P\x04[I\x0f=kμ;\x13*/Z\x0f:E~&ϷYɼ^cC7<\x008R=L\x14=3C|\x0f";y5a2\x0c\'y5N<;\x06=>>)3\x01"\n=i1=k2k<\u07fcR5<\x02\x065\\><6\x1b\x02=Lvo-\x0f\r=\x1d㼢\x19F\x03¼S\x01>s2\x02Eb;a8=\x14}=c:<\x07\x02=a4<\x7fq.=h<ڼSٞ<\x0f\x1c|=\x12<\x11<^<0>=Eڅ\x15i&;_\x08#]G)=ԛ,\r;5F\x03B[3[3` =Z<\x08&*;\x1b\x0e=.;c\\T\x11s<+SrA<̫O<;\x06 0=\x19=cS<ނλ՟¼+=\x11<><\'\x11!= k^=\\j%+AU=8$<#=\x1c>\x06XF=ڑ~(ڪ\x04\t&\x06vE\x1dK=sHN{<\x00\x1c\x05{^\x18=˗\x04/g,\x05Mdo\'=\x18=\\zTEH`=\'\x00\x16siEU=/eY;0\x7f|]<\n\x02B%\x1eSD=[h)t\x1dG7=M:c\x13u\x19=U2\x06=\x0e\x1fZd,<&2tK<\x05ҿlw\\l.;\x1a:i5PM\x06XF=\x11\x0b<]C\u07bbV+\\I\x19\x0c|=d,=!=D=?Or\x1a6\x10ѷ\x1c\x04/J\\uX;\x14ݹ<<))<\x0eȫ<ȶ<\x13\x03T:;\x1c>\x18CN;Q=\x12~<\x13)\x1f_Q\x15jfD<\x1b^:ozļ=\x00\x12:\x7fx\x1b=\x0b=8 &<\x18%\x0f=\x1d<\x02\x1aR=b={;\x06=)R=aUee%r\x13<\x07-;\x1e\x1e\x02\x13<:_\x062\x05<͑=!\x06l>\x13`;ryP;=Q\x14<"B;\x0e#=U\x1a&\'"}{\x03 \x1e\\_َ?=!{\x11=\x08<\\z<\x0f\x00*~G\x0b;ބ<¼\x0b<\x0c\r<[Ż\x1e\x1e/J\x10=+V\n;\x14= \x16\x18J;\x18\x7fټ9\x15=8:pтu\x7f\x02A\x104?\x14\x00)NU=Hie<=N<\x06X\x15\x0cXx\x1b\x03v,\x06l`쟽;;\n8\x17\x13\x00F=%U|e\\l0;4\x0f1<\x100]y;8\x1d\x1c:<"6|c<%\x12$Z;A\x00<\x16<\x1fx=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n 1;\x1a\x1b=3SbA,\x14e\x00Y=L˼N=\x1c=\x18=Ur=\x04y.g<\x7fi黌);F\\<72*<\x01>\rkw\x03\x14R\r\x10f;\x1b7;>;Kܼ&=\rs\'\x0f\x0cj\x08\x14!n\\\x12,@\x14\rOW=;]=7b=;<\x08;\x1c<;Xy<4#;\x10<)@\x0b8%٭Fb\x1a\x1bk<\x18<<\x1fu<|z<_\u07fc;\x1eކ&c=\nu;\x11=\x08<\x16\x02\x03V&\x1el<;04)\x08\x14!d\x07yuz=\x05ӭ\x1d\x06f=:-<`ּ;`\x00=8%;\x10><\x107^|(T}Ἥ\x16;vh\x02=\x0b\x03\x01\x16yd;\x7fn2=06<3S:;<:\x11T\x02=\n<\x06<`qE3S;rD\x0eO<`\x0e\x0e1\x19\n=Y~ @*N<(N4#2g\x1f<:q}\\ <׃ \x1f\r\x01q<7b1me=\t\x02=q<\tk!<\x10>:\'\r', 'text': "His research is not limited to air pollution, but also covers water resources, energy and climate change. Recently, he and his team have been working on the top-level design of China’s carbon market in order to advise policymakers from an economic perspective.\n\n“There is still a long way to go before these theories can be put into practice in China. Perhaps the changes we can bring now are tiny, but as long as they are useful, or they are positive, our return to China makes a difference. In fact, no matter what you research on, not merely in the sphere of environmental studies, so long as you are concerned about the environment in China, you are moving in the right direction,” Professor Zhang said.\n\nIn 2003, Professor Zhang travelled to the US for his degree in Environmental and Resource Economics at Duke University. He planned to pursue his academic career in the US, and meanwhile became a father of two children. He enjoyed sharing his thoughts through academic papers as much as sharing the lovely quotes from his sons through social media. He was appointed a tenured faculty member at the University of California, San Diego, and it seemed that his story would go on in the sunshine of California. Then he made an unexpected decision: he would go back to China to join the recently founded Duke Kunshan University.\n---\nBeing Global Environmental Leaders\n\nBeing a foreigner in China, I’m always asked where I come from. It got me thinking a lot about identity. Norwegian is one of my identities, and female is another. That’s how people tend to position me, but that’s not how I define myself. A distinctive feature of a globalized world is that national boundaries no longer carry much meaning, while our life experiences and outlooks are more important.\n\nAs we all know, global environmental problems such as climate change and marine pollution have emerged. I think the fundamental issue is how to view the relationship between human and nature, and how to make people more concerned about these issues is the main challenge to achieve environmental protection. Therefore, as future global environmental leaders, it is critical that our students are able to identify various ideologies at play and ultimately support and facilitate public acceptance and compliance with environmental policies through them.\n\nProfessor Kathinka Fürst\n\nLaw and regulation researcher with interests in environmental policy processes, law enforcement and compliance and the role of civil society actors in environmental governance processes.\n---\n# Professor John S. Ji\n\nEnvironmental health researcher with interests in population health sciences, epidemiology, occupational health, and energy and the environment.\n\nCan you introduce the research that you have been working on?\n\nI do two kinds of research right now. One is on the science side and one is on the policy side. Both are meaningful. I enjoy more of my work on the science side than the policy side, but we get a lot of information from the policy side.\n\nWhat are you most passionate about in research?\n\nFreedom. You can follow your thoughts even if it's not systematic. It's really amazing that you can find something by accident that deviates from your original idea, but the new idea that you found by accident actually it is more interesting.\n\nWith your experiences and reflections, what’s your current understanding of research?\n\nAt the end of the day, it is answering some very simple questions that currently people don't have answers to. For some of my studies I'm using data to find connections between A and B that I feel exist but they may or may not be there, so I need to do these kinds of research to find out. Some research is very meaningful in the short-run. Some research is meaningful in the long-run. In fact, most are just not useful at all, but they are efforts of trying to be meaningful, that’s important. It is really fun. It's really fun, if it's a question that you are genuinely curious about. Genuinely curious.\n\nIs genuinely the keyword?\n\nYes, genuinely is the keyword.\n\nLet’s talk about teaching. If you choose to open a course at DKU, what would you like to teach most?\n\nI would develop a course on planetary health. I will bring in the experts from each topic. Some econometrics models, some study design, some statistics, some kind of a mapping tool like GIS. And layered on top of these analytical skills, the various issues related to the planetary health, like pollution, climate change, water scarcity or atmospheric processes.", 'ref_doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'file_name': 'imep_year_book-v6_bt_e.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155119/imep_year_book-v6_bt_e.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9d741364-d09e-41bc-a81f-668b2ccb59e2', 'payload': None, 'score': 86.79123908507859, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '132377', 'document_id': '369c95b3-bcf2-4ce6-80a9-da39d8befa7c', '_node_content': '{"id_": "9d741364-d09e-41bc-a81f-668b2ccb59e2", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "369c95b3-bcf2-4ce6-80a9-da39d8befa7c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "145a4af52f9e61f58dcdb62d79e0c007fa5e89084e392a05fda8844d2c46e968", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bac532d5-ec6c-485e-a3e3-892326752fa3", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "17524a3c808e77325ec13cc19f828007c0f8bdeb727086b5ac2265217157efe5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "51eea6ae-e400-402a-ac41-4485ca6aa8f1", "node_type": "1", "metadata": {}, "hash": "7877b626e092c83a74cdcdc07e6ffacb642d90ab1423b25572827f1169d0e63a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 10401, "end_char_idx": 14491, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html', 'vector': 'tY2R@\x035ENC=\x1f<ƿ#[}\x1eVE=Z=\x1d\x1b\x14ŻӺ<˪\x1f_m<7=\x04:\x1b;kA]@_<2鼿/Xa\x08<\tC&ۼq<5]\x1bo<(q+\x1f:ɻO3vvCc\x15Q<$\t)f\x1d\x0e:;^=O<\x18\x07<\x17,\x1a@值l?DtplD`=tp\x03<\x0f\x11^]3@;\x13ූ\x19қ;\x08TM\x12;)S\x06\x1bUx<\x7f3\'bף=ڈ9^;¼ӌ=c\x0e;\x03_B]@\u07fc6JD\nҟW;\x18\x077p\x10s|!<=j\x7f\x01?b\x15\x13ĉ<֯Cʥ<<\x12\u05fbd*ݼ!F\u070ei&=\x13\x03-To\x0cnd髻ڬNrJ\x148T\x03=\x04㼜\x06<^# ƿv\x15-м*A)\'\x15\t=\nPK=+w\x02\x1d٩`hr;i&3*=\x0eJ\x12c=M?<\\\x00ߩQ\'<\x0cV^#<(ˉ<<\x14<3\t\'=;\x0fܕ;\tۼ\rF<\x08<7_\t[Q\x17iW\x0b5U\x18dnN=W:\x10hi=\x00%<͆\x1e=<ƺ\x0bt\x0e;:<*=\x11\x19;\x1dپ4<ɹx\x1f=hrNU>T뫼ঽN\x16w<<\x17=DY::\x00uO=JEvY=uKNU<\x0f"+\x03dnN\x00"=Ml<[X<"X\x10<\\h\x19<}P9C[XG\x11<;WkT;]i#u%;}=9̼]ﻌ=/<5!/\x03x\x0fi=cMl\x10<\x14ǼϞsyA:o`O<<\x7f{6ʼM̼|z1=:\x15=z6;\x13,\x16,¼e@R< HYy݅<{=3\t<6\x03=\x03<=N"=mgJ+)м՜B`EDѝ<\x03eF\x06<\x00=\x0ej\x12<\x1dk:<~tC\x19\x033\x0fq<<=)<ŽG\x11L:/\x1dݼ\x18<\x01\x06<\x05\r0{= \x01\x02dnμGP\x05\x7f!\x04\x05\rw̌G6;js;\x7f?&;3<ݻ`#\x1c\x1d;{\t\x1d\x0e\x17\x01\rN<{;G=\n<.\u0379m\x10g;\x18;1M~&Z=ٟs=4\x0fl<\x11(\x1a:QU=;j"<\x10ڼ\x1a \x01=&M<#<\x01;<\x1aͼ[\x14r{\x1bc<\x17L(\\={Ee"V=\r;.;&=~&ڼ\x14턼~<Ƌ\x1bnYB;Y%;$,<\x1dw;2=\x16\x13;\x049b;\rs,7B7\x05(o\x1fV8=\x08\x066\x07=e78˼\x0ef=>λL=iJV=Fc\x04<9@&\x04\x1e;;\x17<-:9ϼht<\x18_b;\x0fG\x02/r<<ư<_b\x03Q\'EM*;Ubz?;ƥ\x13F;:j$)2\x04<\x00=X\x02\x1c=sb\x17\x08;`ÁFc\x1d3;.ͻ\x01nw[;a.!;zw\x05\x05D9_EgdA<*hL˼\x1f\x06=\x10\x16ja$:\x7f#<\x1dgJ=\te\x07B;H=\x01\x1eO?-<4\x12\x96<;3:ߤ3;\x08\x066\x00EмR\x1d$=];{n~Zi<<5ƅ,u=:\x03= zu3\x1c=p4[;Ϸ;6\x1b<\nC"\r\x05\x1f=$<1%c<3\'f3|0w0<\x07\x0c<)ʼ\x0c;\x0bqZC;q\t=%otH\r<\x185=mS`\x10\x00<["L<\x08!5=N:\x03=Ǎ;}\x133=seuR<\x17&\x03<\x12:_Ż\x13h\x0bļo;k<<Ϣt\x19\x102<\x7fƼs#}ț=;crD? =(\x07<<-\x18\nV)K&U\x16=V©jN\x07;ٻ\x1b\x0b\x05>;3\x02=FK<\x02=Bfl~\x1c=&;RA\x01:X=\x02;;iL.=\x06|e<+="LD9ϫm<`J\x13-;\x058м\x02=ئ\x19}\x1eqs;H\x12\x0f[=\x1atwc<\x160:\x18\r>6X[<~<\x04\x10%wV3<\x1eI\\\x07ۼw.;.]A\x19\x16*\x089)\x1at<ǻ\x02@Bfl<\x0c\x064<}/Z\x07\x02ݼ-<\x0eТD\x16\x0e;dư(f;\x04=.*1\x13\u05fcRE<>\\h)K=W/< ?\x1eI\x1f%;[\x7f\x1bux\x11U=3M@<.l&rR/ڼ`=9<24_<%9<\x13\x12\'<Ɣ#=\x0c\'*\x0e0\x1e<\x1bux=\t\x0cڌz<\x0c/\x0c754T\x1bN??=]\x0cǻ!-\r\x0b\rт7up=g\tMouwCx)u=^;y\x16=;d\x06<\x18<\x11\x16\x1c<>;\rCnFu=E6=B^9=Z/1<>\x17\t=m\x11D=_X\x12;1z:Q\x15i<-<\x1buxaL<ӼW%P\x04[I\x0f=kμ;\x13*/Z\x0f:E~&ϷYɼ^cC7<\x008R=L\x14=3C|\x0f";y5a2\x0c\'y5N<;\x06=>>)3\x01"\n=i1=k2k<\u07fcR5<\x02\x065\\><6\x1b\x02=Lvo-\x0f\r=\x1d㼢\x19F\x03¼S\x01>s2\x02Eb;a8=\x14}=c:<\x07\x02=a4<\x7fq.=h<ڼSٞ<\x0f\x1c|=\x12<\x11<^<0>=Eڅ\x15i&;_\x08#]G)=ԛ,\r;5F\x03B[3[3` =Z<\x08&*;\x1b\x0e=.;c\\T\x11s<+SrA<̫O<;\x06 0=\x19=cS<ނλ՟¼+=\x11<><\'\x11!= k^=\\j%+AU=8$<#=\x1c>\x06XF=ڑ~(ڪ\x04\t&\x06vE\x1dK=sHN{<\x00\x1c\x05{^\x18=˗\x04/g,\x05Mdo\'=\x18=\\zTEH`=\'\x00\x16siEU=/eY;0\x7f|]<\n\x02B%\x1eSD=[h)t\x1dG7=M:c\x13u\x19=U2\x06=\x0e\x1fZd,<&2tK<\x05ҿlw\\l.;\x1a:i5PM\x06XF=\x11\x0b<]C\u07bbV+\\I\x19\x0c|=d,=!=D=?Or\x1a6\x10ѷ\x1c\x04/J\\uX;\x14ݹ<<))<\x0eȫ<ȶ<\x13\x03T:;\x1c>\x18CN;Q=\x12~<\x13)\x1f_Q\x15jfD<\x1b^:ozļ=\x00\x12:\x7fx\x1b=\x0b=8 &<\x18%\x0f=\x1d<\x02\x1aR=b={;\x06=)R=aUee%r\x13<\x07-;\x1e\x1e\x02\x13<:_\x062\x05<͑=!\x06l>\x13`;ryP;=Q\x14<"B;\x0e#=U\x1a&\'"}{\x03 \x1e\\_َ?=!{\x11=\x08<\\z<\x0f\x00*~G\x0b;ބ<¼\x0b<\x0c\r<[Ż\x1e\x1e/J\x10=+V\n;\x14= \x16\x18J;\x18\x7fټ9\x15=8:pтu\x7f\x02A\x104?\x14\x00)NU=Hie<=N<\x06X\x15\x0cXx\x1b\x03v,\x06l`쟽;;\n8\x17\x13\x00F=%U|e\\l0;4\x0f1<\x100]y;8\x1d\x1c:<"6|c<%\x12$Z;A\x00<\x16<\x1fx+=i$9j*<xp̼;\x14\x17;W/I7\n/A$x\x1af<\\x\x077\x10:\x04;:a2\x17\x19{<(@MhU\'=݂VfR=\x12qW/;j>Y=T\x02=\x11\x05.KD3\\9*\x06\x08=;wo쵂<2=|\x1bs滊:lI;{<:\x16v-W\x10.7zk=F\x08i<,l<_w#/i`\n̼]<\\:LAA<\\@\x1f<;UX(\x06\x19;u,MI80<\x03\x10\x0f9<\x11=g0Y\x12+\x1c<\x0b<$ټx=o\x07\x13kt\nnLv=<\x11<\x0fm\x05=s\x04n\x00M\\\x11=Q$ļ\x11\x14:M\x1a', 'text': '# Hiring Process for Student Interns\n\n# Interview Coordination\n\nThe hiring office should be responsible for coordinating and conducting interviews. The Office of Human Resources will not engage in the interview sessions. In most cases, the interview of student interns will be conducted by phone/video. If the hiring office would like to set up an onsite interview on campus, they should be responsible for relevant logistics and cover all related expenses.\n\n# Interview Guidelines\n\nDuring the interviews, the hiring manager could introduce the stipend and daily work to candidates if necessary. For student intern positions, the hiring manager is encouraged to reach initial verbal offer agreement with candidates at this stage.\n\n# Candidate Confirmation\n\nIn the interest of recruitment efficiency, the hiring manager is suggested to confirm the candidates with the following situation during the interview:\n\n- Internship duration, starting date and ending date. It is suggested the student intern should be available to work for at least 3 months;\n- Working hour: five days per week, eight hours per day. From 9:00 am to 17:30 pm. In most cases, student interns can work full time. However, some may only work 3-4 days per week;\n- Work location and accommodation: student interns should cover the accommodation fees by themselves;\n- Intern stipend: 3,000 RMB/ Month for full attendance.\n\n# Step 6: Extending Offer\n\nOnce the hiring manager confirms to move forward with the candidate, he or she should send an email to the Office of Human Resources with the following information included:\n\n- Job title\n- Candidate’s resume\n- Working period (possible starting date and ending date)\n- Fund Code\n\nThe Office of Human Resources will make the offer to the finalist and inform the hiring manager about the offer status. If the finalist accepts the offer, the Office of Human Resources will initiate the onboarding process. Otherwise, a new round search will start.\n\n# Step 7: Preparing Onboarding\n\nBased on the previous cases, the best practice is at least 7 business days are requested for onboarding preparation, which includes Net ID, cubicle, campus badge, laptop preparation, etc. When the hiring manager gets the student intern to offer, he or she should consult onboarding day with the Office of Human Resources. Onboarding date for student interns will be on every Monday.\n\nHuman Resources Office\n\nLast updated in September 2019', 'ref_doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'file_name': 'Special Recruitment and Hiring Procedure for Student Interns.pdf', 'last_modified_date': '2020-04-28', '_node_type': 'TextNode'}, Document {'id': 'test_doc:cc53bb11-993a-4bce-85e9-7a9551a2b0a0', 'payload': None, 'score': 22.589322974382366, 'document_id': 'index.html', '_node_content': '{"id_": "cc53bb11-993a-4bce-85e9-7a9551a2b0a0", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "link_texts": "[\\"Skip to main content\\"]", "link_urls": "[\\"#main_content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/www.usajobs.gov", "filename": "index.html", "filetype": "text/html"}, "hash": "45c0cbe6c6319b689d183634e068b1e0493205d12944909bf7636263451dba0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e668195e-a704-43d4-9ecf-a0c10ce996c6", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "3121985528011eddaaeceb8318bd0711168712c909b1106297b0331421a264d0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8301d50-ab04-4123-b28f-033c7cccbbae", "node_type": "1", "metadata": {}, "hash": "63f7b310cde3076c049d2de420e99084a5288a9f9612f11fe1f9bc178f0af792", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-5\x0e<\x1avdHQ&;-i\x19=Z=H\x7f[<\x075k=0F=;\x02No*>0Fɼ;T;턽;c(=\x1a<\x12>F\'=\x04W!\x0e?=ˀƼ\x1d\x18;Ӯ)<,@<*_x~V"P=ƏY@kW\x188rF=4Yo3aP<\x03=\x1eڸDpDe\x00V<}IKShC\x16N\x06Jo=:\x13UcǹC=\x14&<\x04xżq<\x046\x1fܦ`\x1f,=mμ\x14şbLӼ(\x11b;\t@3\x15\x02xi;@6<\x08J\x1f=xgb\x12LL\'\'WՈ]Z\x0fY4W<\t=*b*l\x0bK V=\tȻx\x04¼5F<6\x1b;\x1flm\x7fU\t9b\x15=~\x19=V\x01n\x15*\x0cs=ƋuA/Lμ <;ƻ;%l\x16\r\x0c=b;ң5f<ݭl;@()\x06j\x1a9\x14@I\x7f<\x1f}B\x14=WI90?G\x1d=һ<\x1c\x0b<6j\x141=fI<\u070e}Ɓ4\x11=\x102ڣ\x1fe_<@ac\x03W\x08?L\x0fD;A\x1d<^\x1a;x;\x18KZݼ\tb<0\n\t6\\<<ڼ5FC;nؐT.=%\x1dϨ<1*vY`K!\x16v!V"m\x1f<6\x168< =5n<5>=\rG=\x17;\x1fHcw\x0fǦ?<\x0c=4=\tY\tF;\t<=\x1c躕v!\x1chQɿ+\\_=.\x06.#\np8=/\x11"Q<&yx\x18d4W\x13 =@\x1d;p~\u05fc\x14\ua6fcLec(\x0c1:rQ<\x06<$e\x17Bi<*I<\x1fd5<6\x7f<\x11U\x19={;`\t=\'O\x136=;\x13\x02=If\x05\x1cQi\'=٥gN\x04=;<8)<,C"29)2#\x03\x16.;Z\x1d=]k\x0c=\x13{\x1eĺźyt\t=7Դ:P=G\x1b<\x13;60;\x03\x0e\x0e<\x08:JOWs7Ae<\x14GoU4/;=LC\x17};K\x14=I;?\x16[\\=\x05W)7#aB\tk=^q|=ݾ\rvmzM)l=*\x0fw+`\t<"` <\x0c\x0fǫ` ;\x05<\x00ˀ<\x17\x00=+L\tK<}F\x19v\x1a\x053=\x1bo\x02y"=im<\x1d\x19=^\x12\x0f=A<@b<$\\ʸi\'<\\\x08<\x1f\x12At6Ι=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n 1;\x1a\x1b=3SbA,\x14e\x00Y=L˼N=\x1c=\x18=Ur=\x04y.g<\x7fi黌);F\\<72*<\x01>\rkw\x03\x14R\r\x10f;\x1b7;>;Kܼ&=\rs\'\x0f\x0cj\x08\x14!n\\\x12,@\x14\rOW=;]=7b=;<\x08;\x1c<;Xy<4#;\x10<)@\x0b8%٭Fb\x1a\x1bk<\x18<<\x1fu<|z<_\u07fc;\x1eކ&c=\nu;\x11=\x08<\x16\x02\x03V&\x1el<;04)\x08\x14!d\x07yuz=\x05ӭ\x1d\x06f=:-<`ּ;`\x00=8%;\x10><\x107^|(T}Ἥ\x16;vh\x02=\x0b\x03\x01\x16yd;\x7fn2=06<3S:;<:\x11T\x02=\n<\x06<`qE3S;rD\x0eO<`\x0e\x0e1\x19\n=Y~ @*N<(N4#2g\x1f<:q}\\ <׃ \x1f\r\x01q<7b1me=\t\x02=q<\tk!<\x10>:\'\r', 'text': "His research is not limited to air pollution, but also covers water resources, energy and climate change. Recently, he and his team have been working on the top-level design of China’s carbon market in order to advise policymakers from an economic perspective.\n\n“There is still a long way to go before these theories can be put into practice in China. Perhaps the changes we can bring now are tiny, but as long as they are useful, or they are positive, our return to China makes a difference. In fact, no matter what you research on, not merely in the sphere of environmental studies, so long as you are concerned about the environment in China, you are moving in the right direction,” Professor Zhang said.\n\nIn 2003, Professor Zhang travelled to the US for his degree in Environmental and Resource Economics at Duke University. He planned to pursue his academic career in the US, and meanwhile became a father of two children. He enjoyed sharing his thoughts through academic papers as much as sharing the lovely quotes from his sons through social media. He was appointed a tenured faculty member at the University of California, San Diego, and it seemed that his story would go on in the sunshine of California. Then he made an unexpected decision: he would go back to China to join the recently founded Duke Kunshan University.\n---\nBeing Global Environmental Leaders\n\nBeing a foreigner in China, I’m always asked where I come from. It got me thinking a lot about identity. Norwegian is one of my identities, and female is another. That’s how people tend to position me, but that’s not how I define myself. A distinctive feature of a globalized world is that national boundaries no longer carry much meaning, while our life experiences and outlooks are more important.\n\nAs we all know, global environmental problems such as climate change and marine pollution have emerged. I think the fundamental issue is how to view the relationship between human and nature, and how to make people more concerned about these issues is the main challenge to achieve environmental protection. Therefore, as future global environmental leaders, it is critical that our students are able to identify various ideologies at play and ultimately support and facilitate public acceptance and compliance with environmental policies through them.\n\nProfessor Kathinka Fürst\n\nLaw and regulation researcher with interests in environmental policy processes, law enforcement and compliance and the role of civil society actors in environmental governance processes.\n---\n# Professor John S. Ji\n\nEnvironmental health researcher with interests in population health sciences, epidemiology, occupational health, and energy and the environment.\n\nCan you introduce the research that you have been working on?\n\nI do two kinds of research right now. One is on the science side and one is on the policy side. Both are meaningful. I enjoy more of my work on the science side than the policy side, but we get a lot of information from the policy side.\n\nWhat are you most passionate about in research?\n\nFreedom. You can follow your thoughts even if it's not systematic. It's really amazing that you can find something by accident that deviates from your original idea, but the new idea that you found by accident actually it is more interesting.\n\nWith your experiences and reflections, what’s your current understanding of research?\n\nAt the end of the day, it is answering some very simple questions that currently people don't have answers to. For some of my studies I'm using data to find connections between A and B that I feel exist but they may or may not be there, so I need to do these kinds of research to find out. Some research is very meaningful in the short-run. Some research is meaningful in the long-run. In fact, most are just not useful at all, but they are efforts of trying to be meaningful, that’s important. It is really fun. It's really fun, if it's a question that you are genuinely curious about. Genuinely curious.\n\nIs genuinely the keyword?\n\nYes, genuinely is the keyword.\n\nLet’s talk about teaching. If you choose to open a course at DKU, what would you like to teach most?\n\nI would develop a course on planetary health. I will bring in the experts from each topic. Some econometrics models, some study design, some statistics, some kind of a mapping tool like GIS. And layered on top of these analytical skills, the various issues related to the planetary health, like pollution, climate change, water scarcity or atmospheric processes.", 'ref_doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'doc_id': '51bb6f6e-4678-44b4-9d1c-c00d60c0f469', 'file_name': 'imep_year_book-v6_bt_e.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/dku-web-admissions.s3.cn-north-1.amazonaws.com.cn/dkumain/wp-content/uploads/2021/07/16155119/imep_year_book-v6_bt_e.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:9d741364-d09e-41bc-a81f-668b2ccb59e2', 'payload': None, 'score': 86.79123908507859, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '132377', 'document_id': '369c95b3-bcf2-4ce6-80a9-da39d8befa7c', '_node_content': '{"id_": "9d741364-d09e-41bc-a81f-668b2ccb59e2", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "369c95b3-bcf2-4ce6-80a9-da39d8befa7c", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "145a4af52f9e61f58dcdb62d79e0c007fa5e89084e392a05fda8844d2c46e968", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bac532d5-ec6c-485e-a3e3-892326752fa3", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 132377, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html"}, "hash": "17524a3c808e77325ec13cc19f828007c0f8bdeb727086b5ac2265217157efe5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "51eea6ae-e400-402a-ac41-4485ca6aa8f1", "node_type": "1", "metadata": {}, "hash": "7877b626e092c83a74cdcdc07e6ffacb642d90ab1423b25572827f1169d0e63a", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 10401, "end_char_idx": 14491, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/ine.dukekunshan.edu.cn/navigating-early-careers-practical-insights/index.html', 'vector': 'tY2R@\x035ENC=\x1f<ƿ#[}\x1eVE=Z=\x1d\x1b\x14ŻӺ<˪\x1f_m<7=\x04:\x1b;kA]@_<2鼿/Xa\x08<\tC&ۼq<5]\x1bo<(q+\x1f:ɻO3vvCc\x15Q<$\t)f\x1d\x0e:;^=O<\x18\x07<\x17,\x1a@值l?DtplD`=tp\x03<\x0f\x11^]3@;\x13ූ\x19қ;\x08TM\x12;)S\x06\x1bUx<\x7f3\'bף=ڈ9^;¼ӌ=c\x0e;\x03_B]@\u07fc6JD\nҟW;\x18\x077p\x10s|!<=j\x7f\x01?b\x15\x13ĉ<֯Cʥ<<\x12\u05fbd*ݼ!F\u070ei&=\x13\x03-To\x0cnd髻ڬNrJ\x148T\x03=\x04㼜\x06<^# ƿv\x15-м*A)\'\x15\t=\nPK=+w\x02\x1d٩`hr;i&3*=\x0eJ\x12c=M?<\\\x00ߩQ\'<\x0cV^#<(ˉ<<\x14<3\t\'=;\x0fܕ;\tۼ\rF<\x08<7_\t[Q\x17iW\x0b5U\x18dnN=W:\x10hi=\x00%<͆\x1e=<ƺ\x0bt\x0e;:<*=\x11\x19;\x1dپ4<ɹx\x1f=hrNU>T뫼ঽN\x16w<<\x17=DY::\x00uO=JEvY=uKNU<\x0f"+\x03dnN\x00"=Ml<[X<"X\x10<\\h\x19<}P9C[XG\x11<;WkT;]i#u%;}=9̼]ﻌ=/<5!/\x03x\x0fi=cMl\x10<\x14ǼϞsyA:o`O<<\x7f{6ʼM̼|z1=:\x15=z6;\x13,\x16,¼e@R< HYy݅<{=3\t<6\x03=\x03<=N"=mgJ+)м՜B`EDѝ<\x03eF\x06<\x00=\x0ej\x12<\x1dk:<~tC\x19\x033\x0fq<<=)<ŽG\x11L:/\x1dݼ\x18<\x01\x06<\x05\r0{= \x01\x02dnμGP\x05\x7f!\x04\x05\rw̌G6;js;\x7f?&;3<ݻ`#\x1c\x1d;{\t\x1d\x0e\x17\x01\rN<{;G=\n<.\u0379m\x10g;\x18;1M~&Z=ٟs=4\x0fl<\x11(\x1a:QU=;j"<\x10ڼ\x1a \x01=&M<#<\x01;<\x1aͼ[\x14r{\x1bc<\x17L(\\={Ee"V=\r;.;&=~&ڼ\x14턼~<Ƌ\x1bnYB;Y%;$,<\x1dw;2=\x16\x13;\x049b;\rs,7B7\x05(o\x1fV8=\x08\x066\x07=e78˼\x0ef=>λL=iJV=Fc\x04<9@&\x04\x1e;;\x17<-:9ϼht<\x18_b;\x0fG\x02/r<<ư<_b\x03Q\'EM*;Ubz?;ƥ\x13F;:j$)2\x04<\x00=X\x02\x1c=sb\x17\x08;`ÁFc\x1d3;.ͻ\x01nw[;a.!;zw\x05\x05D9_EgdA<*hL˼\x1f\x06=\x10\x16ja$:\x7f#<\x1dgJ=\te\x07B;H=\x01\x1eO?-<4\x12\x96<;3:ߤ3;\x08\x066\x00EмR\x1d$=];{n~Zi<<5ƅ,u=:\x03= zu3\x1c=p4[;Ϸ;6\x1b<\nC"\r\x05\x1f=$<1%c<3\'f3|0w0<\x07\x0c<)ʼ\x0c;\x0bqZC;q\t=%otH\r<\x185=mS`\x10\x00<[ybjrvc=::\x11<1Ne=\x01&e\x05olk;\x15$!b;4ٵ#Tk/4ȊnM|<<;Y=e$\x7f+<\x7f:gBż-\x162X>2=^\x02\x1dWC-^0P$\x7f2<\x06+Q[ =\'\x0eGo~<1b=<\r\x01V;vc<\x07\x08=\x1b1;y;_ ;\x1a߹b\x0c-\x162;G\x17-f;6\x0b=P;6<$~滞B\'\x15$!xު<<\u070e<ڮ<1\x08=7\x1dO<;C#bP*;<,%\x1aAs;6l^\x05<*60=&e\x1e8V*Bd\x1a=4q۟ѼK(ID=_!乂r\x05le"_<\x15#ܼ.\x0e;Q\x1e={<0~\x142[<\x10U\x0fۦ\x04߲;,<_<\x1d~;ݢ=I"\x0c=-\x1dϼ\x07ܼ\x1e\'\x0f\x1d|:=\x137=[;pd\u05fc\x17\x06#\x18\x0f_6g<=\x17', 'text': "![]()**Internship**\n\n**Q**\n\nWhich internship you had impressed you the most? How did these internships shape you?\n\n**A**\n\n**What impressed me the most was my internship at** **Tencent**, which was during the summer vacation of my junior year. During this internship, I worked as a data analyst and went through a complete internship process, including understanding the corporate culture and structure and getting familiar with Tencent Cloud’s products. Then I got into the practical stage and began to construct databases and models. After the internship, I also participated in the internship transfer defense, which made me familiarize the defense process. Eventually, I received a return offer from Tencent, which made my resume for graduate school applications more eye-catching. This internship gave me an in-depth understanding of Tencent, a major Internet company, and the scope of work of Tencent Cloud, which greatly improved my ability.\n\n**The three internships in JD, Tencent, and ByteDance** gave me a good understanding of the requirements for data analysts in technology companies, the scope of work, and the working atmosphere and culture of companies. Doing data analysis in companies has allowed me to gain some business awareness and constantly guide me to apply what I have learned in class to practice, which is very different from the experience of attending classes and doing scientific research.\xa0\n\n**These three internships gave me a clear picture of my future career plan and the direction of my graduate applications**. Once I determined that my career plan was to join a top technology company in the U.S. doing data analytics, it became clear to me which kind of program I needed to apply for a master's degree to achieve my career goals. My three internship experiences are all in Internet companies, which are quite unique, but this is very helpful for me to find an internship this summer. For example, my previous internship at Tencent was in the Tencent Cloud team, and then my next internship at Microsoft was also included in the cloud team. The experience in Tencent Cloud made it easy for me to have a better understanding of the platforms and products of the cloud industry. This foundation will support me to get started faster, compared to people with no experience. I have a relatively clear plan for myself after I found myself enjoying the atmosphere of technology companies when having the internship at JD. Because of this, I have always looked for internships in the same direction.\n\nHowever, there are definitely students who are different from me. They may prefer to explore different industries and different fields. I think this is also a very good choice. Since you gain experience in different fields, you can probably find the career that most suits you.\n\n \n\n\n**Q**\n\nHow did you get Microsoft internship?\n\n**A**\n\nI was very lucky to get this internship because the phenomenon of hiring freeze in American technology companies is quite common this year. Therefore, it is not easy to find an internship or a full-time job. I started to apply for an internship since August 2022. **Every day I looked through the official websites of many companies and job search platforms to check whether there was an update.** If there were updates, I would apply for them without hesitation. In the process of application, **I also constantly polished my resume and practiced online assessment questions**. I was lucky enough to get an interview with Microsoft, probably due to my background of working in many technology companies. After I got this interview opportunity, **I made well preparations by reviewing all the knowledge points that might be involved in the interview and preparing answers for the possible interview questions**. In addition, **I contacted alumni and seniors to help me do mock interviews**, in order to improve my interview skills, deepen my understanding of technological issues, and become more familiar with my resume. Microsoft's interviews are very intensive, with four consecutive rounds of interviews. Since I was well-prepared, I spoke clearly and provide comprehensive answers to the questions during the interview, and finally I got the internship opportunity.\n\nIn my view, my previous internship experiences and two research projects on my resume helped me to stand out from all the candidates. One of my research projects is about LSTM, and the other is about the NLP model. Based on my two research, Microsoft matched me with the current research team in the same direction. **Therefore, when looking for a job, internship experience can give the company an overview of the industries you have been exposed to, while research experience allows the company to know your specific abilities and achievements in modeling from a professional level.**\n\n \n\n\n![]()**Ziqiao Ao.**\n\n \n\n\n \n\n\n![]()**Academic Research**", 'ref_doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'doc_id': '4fb1f210-5642-42d1-831a-53f92e667688', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/SvTq8w1NCDJWLkRiqPcvdw/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:210ee6a0-092b-47fd-95fa-faf5a45069fd', 'payload': None, 'score': 22.017761321393312, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3253467', 'document_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', '_node_content': '{"id_": "210ee6a0-092b-47fd-95fa-faf5a45069fd", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c8e5ecf-2496-480d-922b-2be0547e51e6", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "548bb9c797996d2cb5fccedabe2000c0541fb92d79406af86bfab29357db5181", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d9a2ea32-7a48-4d02-be6c-67b659d2c89a", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf", "file_name": "2020-2021-Pratt-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3253467, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf"}, "hash": "29756e3c4db221afd1a8be31e816636a674758137c4a04c43cb4d542d9524381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87976ebf-16c2-414b-aeda-f049ce8ad213", "node_type": "1", "metadata": {}, "hash": "b685c9560a6d8a3435521075e57e4fc4c25b15240ef03701ea6a836769b49384", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 184877, "end_char_idx": 189776, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', 'vector': '=#ln9[\x01\x12K?.\u0bbcF||A\x12=k>\x15:)A]\x03,9\r=\x14K\x10\r^ C1\x13\nw\x03\x0b=f<]e\x1d=N< + q\x17 \x11ȼ(=\x02v\x06=9;qJ;/-\x12<\n3\x13=iZ!l%=>y<<\x03=\x06<\x1dcͼs!#<^<\x1b$Ir<Ƀ^iZq=\r\x10csY/=\x02v&{<(:\x11ۼ!a=\x15ʼfw=\x18G:iE<|=4=Za]LI=RP8<,\x19}k<4\x03 -=C\x12=@;tdռ 피[\x0c\x00Rx75|κ*\x02iZ!="Xr;a㫼D;S¾\x12<\x00==*ûU@H&T`\x14<"X#qcs\x02={<\\z\x1c<\x15@=H\x0e2w{a]\x1c', 'text': 'Immunization Requirements\n\nStudents are required to be immunized against measles, rubella, tetanus, diphtheria and, in some cases, polio. Entering students must present proof of immunizations to Student Health Services prior to the student’s first day of class. Students not providing this information will not be permitted to attend class until proof of immunization is provided.\n\nIndependent Studies\n\nIndependent studies can be an effective tool for custom plans of study. However, they should not be overused or used to avoid more structured plans of study. Thus, an instructor and a DMS from the student’s major must approve all independent studies.\n\nInternships\n\nInternships are meant to provide an applied experience for the MEng student. Responsibility for finding an internship lies with each student. The Career Center offers resources to facilitate successful searches including resume reviews and interview practice. Different majors may have somewhat different requirements or suggestions regarding the internship; thus, students should check with their individual majors to ensure they are fulfilling specific major requirements.\n\nLearning Objectives\n\n- Apply engineering principles to solving one or more problems outside of the classroom environment.\n- Define a problem and determine potential solutions.\n- Appreciate the importance of organizational dynamics and work relationships.\n- Practice professional communication in two forms: written and oral.\n- Complement the material presented in the courses of the MEng degree program.\n- Practice self-assessment.\n\nImplementation Guidelines\n\nGeneral Guidelines\n\n- The internship is a zero-credit course, but a course number (Master of Engineering 550) is provided to enable a simple way to track fulfillment of the requirement.\n- The minimum hourly requirement for the internship is 320 hours (eight weeks, forty hours per week).\n\nInternship Types\n\n- The internship can be a paid or unpaid experience, including a company or government summer job.\n- Internships in research labs are acceptable if the major allows such experiences and they meet the learning objectives.\n- International internships are encouraged as long as they meet the learning objectives.\n- Part-time internships are acceptable as long as they meet the minimum hourly requirement and the learning objectives.\n\n- Internships before the student receives a bachelor’s degree will generally not be allowable as a MEng internship unless the student is enrolled in a concurrent bachelor’s/MEng Program.\n- Guidelines on what constitutes an acceptable internship will be provided to all students, including the learning objectives and templates of the completion requirements.\n- Some programs will accept a project or an applied research experience in lieu of an internship experience. Students who wish to complete a project or applied research experience should contact the DMS for additional information.\n\nCompletion Requirements\n\n- Successful completion of the internship will be verified by the DMS/department for each major and will include a written and/or oral project report (implementation will be determined by each major, examples include: poster session, oral presentation, project report, sponsor verification, etc.).\n- Upon completion of the internship all MEng students will fill out a common form for their file, which includes information such as the participating organization, the activities undertaken, the dates of the internship, the title of the position, the contact information of the student’s supervisor.\n- Students must also enroll in MENG 551 in which they will write a report about his/her internship experience and complete a final presentation summarizing the experience.\n\nLeave of Absence\n\nThe MEng Program is designed to accommodate both part-time and full-time students. It is generally expected that continuous enrollment will be the norm for MEng students regardless of their status as part-time or full-time. That is, for full-time students, continuous enrollment of three or more courses per semester and for part-time students, continuous enrollment of one or more courses per semester is generally expected. Students who do not enroll in courses during the fall or spring semester may be contacted by their department to explain their program enrollment intentions. If the student is unresponsive to the department after multiple attempts at contact, they may, at the discretion of the associate dean for master’s programs, be placed on a personal leave of absence.\n\nIt is understood that circumstances and personal situations may sometimes require that students interrupt their education for some period of time. The deadline for a leave of absence is the last day of classes in a semester and is not typically granted once classes\n\nMEng - Academic Policies 49\n---\n# MEng - Academic Policies\n\nhave ended and final exams have begun.', 'ref_doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'doc_id': '7c8e5ecf-2496-480d-922b-2be0547e51e6', 'file_name': '2020-2021-Pratt-Bulletin.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151409/2020-2021-Pratt-Bulletin.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e78f8579-9864-46f1-9412-56a2fe47a51f', 'payload': None, 'score': 16.909464721736892, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3969070', 'document_id': 'c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab', '_node_content': '{"id_": "e78f8579-9864-46f1-9412-56a2fe47a51f", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6e5484a-e2d0-4a94-84e2-c1d77d6b59ab", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "2eeb54d491ac3e290235fe0b0d07374f732dbbfea551dca2c0e01e6cb1b1f90d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcfa30df-a5ee-4a9a-ab66-4c562f5c7f1f", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf", "file_name": "2020-2021-Sanford-Bulletin.pdf", "file_type": "application/pdf", "file_size": 3969070, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf"}, "hash": "516c907dc0f71fe098decf39cb8a8b37168d5ee5fec07c14a8b75319cb638b0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3491d4f7-cc31-4700-a372-2ac0dd85f4e7", "node_type": "1", "metadata": {}, "hash": "1e86ad05a5013fa6ca62d34014cdb2de871b842c68d063de906e2ed277f2dfcb", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 148279, "end_char_idx": 153287, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151418/2020-2021-Sanford-Bulletin.pdf', 'vector': 'Bin\x13E쬼%\x0cX\x07%\x1f<(\x01`<4<\x7f\r=#<\x0f\u07bcf; =\x01WJ=R`\rZ;.к-Y\x04s=\x08;v|0=@xڭ}\r\x0bH㦼Q.`s\x16l\x07oq<˟!=rLŬ O=y\x0c=\x1as\x03=z^;Lk;<ē\x05\u07fc\x0ei8\x12=\x18\x1ew;$U=ne=C[<)x!:0S<Ԯ;p\x03S7\x05<\x08\x0e\x13%T\x0b=8ZL<2\'=\x01=2uj=|UG(\x1b:]R=<`{;=\x07xm3=F`;5N=*qs79>Y\\A\x0b`9\x1c;p\x03f(q=\x0f <&2\x14ռ|\x1f=\\=\x12\x1f=\x1a\tv#ҼQ\x0b\x1e\x0fk=-3ֻ X=h"<߇E\x1a<\x1b\x04eq|H f;CK\x13=d<\x1e\x00O\x11Q.g$Og)\x1d<=9<\x10-ۻq:y~Z*;>_&NJ\'S7aj=:Y;<{\x01\x1d;\x0f$\x01=Y;=5\nW\x0bA̼ol;/$$l%-;x`=S<\x03:RJ\x00i="Z}\x17\x0f\x15\x1a\x0b\x15\x15H\x04N\x0e=\x0cb@\x1c;\x00\x06\x13\nE<\x1fj̻""lD=\x04#=\x11\x19C%=v/B,_\x04%P(\x0f=7=z\x05<4;(<\rrüo@\x02òԼ\x0e;<"}Wa]=r<><\x0b(1\x08ϒ=s4\x15=\'^=<\nh\x11<>-e_<"}Wv<\x1c;4Ruߚ[ūY|\x05\x00=˼\xad\x1f-e\u07fc<\x03`\x07^3=KH̼\x14\x0b\x1dM><ٍw)<\x1dH\x1fkG\x1ee7=S:[\x05\x7f&\x0cм|<}}üB+<=@f#=T\x10[<òT#\x02ռ39L\x11=W:P<\x04\x14T\r탨:v9A\x01;_\x141ټR:;x\x15=\r5=\x10|$MD=fmϻt\x1a9\x18b!g=]j\x1bH~\x0c\x055X\x08\x14ѿ', 'text': 'Q: Can the validity of the Residence Permit be longer than the validity of the passport?\n\nNo. Although you can receive a new residence permit in a new passport if it expires before you graduate, it is easier if your passport is valid through the date of your graduation (because you will only need to complete this process once).\xa0\n\n\n\n\n\n\n\n\n\nQ: A student’s period of study ends in May and the Residence Permit the school has given is valid until 31st May. However, the student wishes to travel around China beyond the date of expiration of the Residence Permit. Can the school issue a new Application Letter to allow the extension of the Permit for one month?\n\nBecause the Spring semester usually ends early to mid-May, the University has already considered the needs of students and have the Residence Permit expire at the end of the month. The University will not issue a new Letter, but students can apply directly to local Exit-Entry Administration Bureau for a one-month Residence permit using your Certificate of Graduation and relevant documents.\n\n\n\n\n\n\n\n\n\nQ: What happens if I lose my passport?\n\nImmediately report the loss of your passport to DKU ISS, and we will help advise you on next steps. You will also need to report the loss of your passport to the Kunshan Exit-Entry Administration Bureau and contact your country’s consulate to apply for a new passport. Following receipt of your new passport, you will need to re-apply for a residence permit.\n\n\n\n\n\n\n\n\n\nQ: What should I do if I have changed my passport?\n\nConsult with DKU ISS if you know your passport will expire or need to be changed. You will have to complete police registration again, and re-apply for a new residence permit in your new passport.\n\n\n\n\n\n\n\n\n\nQ: A student plans to withdraw or apply for Leave of Absence (LOA) of his study at Duke Kunshan University, but he holds a residence permit valid for a long period. What does he need to do?\n\nStudents taking a voluntary leave of absence (LOA) are technically required to notify the EEB and cancel their residence permit – although there may be exceptions made. Students who have been placed on an involuntary LOA (such as academic or behavioral suspension) or who have been withdrawn/removed from the University are required to contact the Kunshan EEB to cancel their residence permit. DKU may also report this to the EEB; students bear responsibility for any violation of immigration law for failure to disclose a change in their immigration status due to an LOA for withdrawal/removal from the University.\n\n\n\n\n\n\n\n\nNotice for International Students Engaging in Off-campus Internships\n--------------------------------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\nQ: What are the materials that have to be prepared for international students to apply for off-campus internship residence permit?\n\n1. Passport\n2. The copies of passport (Information Pages, Resident Permit/Visa Pages, the latest Entrance Seal Pages)\n3. 2 color photos of 2 inches (Students can take one in the Exit-Entry Bureau on own expenses.)\n4. Offer Letter of the Internship (Provided by Career Service Office)\n5. Proof of Off-campus Internship for International Students (Provided by Career Service Office)\n6. 400 to 1000 RMB Wechat or card payment ready\n7. Resident Permit Application Form (Provided by Student Affairs Office or Obtained at the Entry & Exit Office)\n8. Application letter with DKU seal (Provided by Student Affairs Office)\n9. Accommodation Registration Form if the student has left mainland China recently (Obtained at local police station upon arrival, location: police station near current residential place).\n\n\n\n\n\n\n\n\nQ: When can I start my internship after submitting residence application for internship at the Entry & Exit Bureau?\n\nStudents are eligible for DKU campus positions without any additional steps. Off-Campus Internships require that students apply for internship authorization. Students can hand in their documents to the Exit-Entry Administration Bureau once they have all the documents ready. They would then have to wait approximately 7 working days before obtaining approval – which will be an ‘Internship’ amendment on their residence permit. Students should note that they are only allowed to begin their internship after obtaining this internship approval from the Exit-Entry Administration Bureau; engaging in an internship without this approval is a violation of immigration law.\n\n\n\n\n\n\n\n\n\nQ: Are students allowed to engage in internships outside of Kunshan?\n\nYes, application procedures are the same as applying for internships in Kunshan. Holders of residence permit for internship can intern in cities outside Kunshan.\n\n\n\n\n\n\n\n\nExtension of Visa and Residence Permit\u200b\n---------------------------------------', 'ref_doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'doc_id': '6df1aaa7-ac22-441f-a869-7e3b0581a1c0', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/www.dukekunshan.edu.cn/campus-life/international-student/after-arrival-residence-permit/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{22807 total, docs: [Document {'id': 'test_doc:2d8baba8-e7f1-46e3-84dc-208cd19513ee', 'payload': None, 'score': 23.234952032849318, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '67074', 'document_id': '47a1f1b0-6b07-4f4a-ab63-b4928f6e3892', '_node_content': '{"id_": "2d8baba8-e7f1-46e3-84dc-208cd19513ee", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "47a1f1b0-6b07-4f4a-ab63-b4928f6e3892", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html"}, "hash": "f2b363fc6cd39ae3c13d37c6f04416b14483af52ed8fbff2f465c1155557735b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "92b68052-0c68-411e-8286-aef95a356db1", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 67074, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html"}, "hash": "fef0243431d8f005806035c1db181c9cfc323190d6cb0809442f732580b201c4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c4ee5605-fbc6-4c84-a006-4304e4adee14", "node_type": "1", "metadata": {}, "hash": "4493e4fe920a6c0c88b91a8ef2c7bc72a6bcced9c5bc1c35b051529b5436779e", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 7326, "end_char_idx": 10321, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/u-s-students/apply/index.html', 'vector': 's"\x1a\x0fjy!\x1fϼ\x1d&5)SZ<_:U<\x02B;\x06\x1e*mQn<&;f\x7f:Wg=[U~[,kb<\x0bv\x03EC=^<\x03|=yMS<\x0cBTO\t(Z\x1eD$O=\x01T`b=\x02\x17\x19U_\x08*m\x14/>;zD\x03\x0e傽g벺:\x02Ik7:l\x0b<^s;e>xVRr\x18\x16:)/\x1c\x1d\x00=LQ<&<4H:S\rlQ\uef16O\x15|\x17Y=\x19\x1btH\x7f"<:W<˳<\x0c~$s<:8<\x0e\x1a\x1d<\x15\x10.=a(;8<\x1a\x1c;\x11$3\x1061:`\n_$4˥aЩ<ɻp\x1e=\x11$3)\x06D\x01\x0c!vzN=;5\x18b=\x16<\x12\x1b45vX\x04<\x192\x11ly4\x08<\x0bv<\x17L\x03;+tɼ6=f{ͺP;;KV`\n=Jl\x05=ɇ\nVp6\x1f+;^\x16t=u\x1a<\x03\x1f<\x1a3#=j6c:[\r\x0fc<{C=H2\x19\x7f=\x1ay<\nB\x12;v;;=<\x04z\x04\nXs4<66м\x00JS=(<ø|\x10\x1b\x0cW\x08=a<&<\x08<\x07Lλz;2<֟Ѽh\'\x11f\\<)$5\x13y;A\r=eU\x15=\x17_u x:մ<+=̅<7(<\x18;nd\x07W\x02%\t<9#=΅K>W=l<;\x05;\x143;3\x00\x04\x15\'\x0f=0@:jl}g<\x0c3F<8\x1fq<3ύl\x1aЭ:\x02\u05fcu5Ӽ\x1eU\x05=H\x13\x1c!\x0fqvv\x14<\x1ev<<\'<л\x14M\n\x067+<\x1aIq\x10\r<<2<:OfM\x1a<; =8\x1c<\x0e<;w;S1wѼy><\'+<+dK;DλI\x1f:4s;]4^vY;Ǟ<p\x04\x1f:CS5Rx=\x0f[7\x16\r,<5\x14F<\x1d\x03Ud=xɺX;s*S\x10==0|ցd;nJ}c\x10j̀^vYS3=//<^vY!5\x02-A:$\u038bSb\x14<\x02Щ-#=8춼\x1bL"=Ěu4U;\x08:\x0bspm<`O<\x15vkT<~hg͊\x1a=\x02+p@=Ud<<\x1cf?=\x056,W^o;Rc:`J\x01=k7W7c\x07=tX\x1b=,.Z\x03=<$=q-<\rZm\\=i;\x08K\x1c=;0ɇ<(<ļP\x01%<\x08<;\x06"B;\x14-=3퉼\x1ag~\x1b6\x05Le\x1f=2\x13=\x08\x00\x0c;\x06=>(\x1bk=.\x03\x1f_<} =6mI.Ȳ!DC7;H<+Uȗk\x1dH\x0fȼj<\x14;e-<9t\x1cLB=uT<$\x05zЫ<\x10\x15Iz\x12=\x1bTLHm\x06;\x1d0N2y~<^=\x0eƼYa\x16<\x00!=.>2"<4=q\x19<ź =\x01~\x00=J?<\x12\x07ѼԻk\x0em<5/\x0cj:FL=^;<\x13N\x04=):]\x00:\x15\x0e:JɻZt0S:Er=\rx\x0f<\x16\x14-\x07jcC#<\x0ez+~\x1b<_-Nh~\x1cb<*ݻt\x03\'=<\x13%\x14\x1aP5;!\x0fԱ\x14\x12?\x02={\x1d;ݚ<*]\x17\x0e=!uB=ź AhJ~4u;\x05)n&9?\x12`l6\x18w\x1b\x7f9Zl6=Fd=ͽ:\x03(', 'text': 'Visiting College Students | Summer Session\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[Skip to main content](#main-content) \n\n\n[![Duke 100 Centennial logo](https://assets.styleguide.duke.edu/cdn/logos/centennial/duke-centennial-white.svg)](https://100.duke.edu/ "Duke Centennial - Celebrating the past, inspiring the present and looking toward the future")\n\n\n\n\n\n\n\n\n\n\nEnter your keywordsSearch\n\n\n\n\n\n\n\n[Menu](#off-canvas "Menu")\n\n\n\n\n\n\n\n[![logo](/sites/summersession.duke.edu/themes/tts_labs_ctrs/logo.svg)](https://duke.edu/ "Duke University")\n\n\n[Summer Session](/ "Summer Session")\n\n\n\n\n\n\nMain navigation\n---------------\n\n\n* [Duke and DKU Students](/duke-and-dku-students)\n\n\n Open Duke and DKU Students submenu\n \n\n\n\n\n\t+ [Courses](/duke-students/courses)\n\t+ [Calendars](/duke-students/calendars)\n\t+ [Tuition & Fees](/duke-students/tuition-aid)\n\t+ [Summer Session FAQ](/summer-session-faq)\n\t+ [Drop/Add, Withdrawal and Refunds](/duke-students/add-drop)\n\t+ [Housing & Dining](/duke-students/housing-dining)\n\t+ [Register](/duke-students/register)\n* [High School Students](https://summersession.duke.edu/credit-course-options)\n\n\n Open High School Students submenu\n \n\n\n\n\n\t+ [Credit Course Options](/credit-course-options)\n\t+ [Calendar](/calendar-0)\n\t+ [Tuition, Fees & Payment](/tuition-fees-payment)\n\t+ [Drop/Add, Withdrawal and Refunds](/dropadd-withdrawal-and-refunds)\n\t+ [Transcripts & Transfer Credit](/transcripts-transfer-credit)\n\t+ [How to Apply](/how-apply)\n\t+ [FAQ – High School Students](/faq-%E2%80%93-high-school-students)\n\t+ [Language Proficiency - High School](/language-proficiency-high-school)\n\t+ [Policies](/policies)\n* [Visiting College Students](/visiting-college-students)\n\n\n Open Visiting College Students submenu\n \n\n\n\n\n\t+ [Courses](/visiting-college-students/u-s-students/courses)\n\t+ [Calendars](/visiting-college-students/u-s-students/calendars)\n\t+ [Tuition & Fees](/visiting-college-students/u-s-students/tuition-aid)\n\t+ [Visiting Students FAQ](/summer-session-faq-us-visiting-students)\n\t+ [How to Apply](/visiting-college-students/u-s-students/apply)\n\t+ [Language Proficiency](/visiting-college-students/international-summer-scholars/language-proficiency)\n\t+ [Drop/Add, Withdrawal and Refunds](/visiting-college-students/u-s-students/drop-add-withdrawal-and-refunds)\n\t+ [Housing & Dining](/visiting-college-students/u-s-students/housing-dining)\n\t+ [Transcripts](/visiting-college-students/u-s-students/transcripts)\n* [Getting Around Duke](/about-duke)\n\n\n Open Getting Around Duke submenu\n \n\n\n\n\n\t+ [The Duke Campus](/about-duke/duke-campus)\n\t+ [Parking & Transportation](/about-duke/parking-and-transportation)\n\t+ [Your Duke Identity](/about-duke/your-duke-identity)\n\t+ [Your DukeCard](/about-duke/your-dukecard)\n\t+ [Academic Services](/about-duke/academic-services)\n\t+ [Counseling, Advocacy & Health Services](/about-duke/counseling-and-health-services)\n\t+ [Buy Books and Supplies](/about-duke/buy-books-and-supplies)\n\t+ [Technology Help](/about-duke/technology-help)\n\t+ [Duke Libraries](/about-duke/duke-libraries)\n\t+ [Athletic Facilities](/about-duke/athletic-facilities)\n\t+ [Other Duke Programs](/about-duke/other-duke-programs)\n\t+ [Exploring the Local Area](/about-duke/places-to-go-things-to-do)\n* [Contact Us](/contact-us)\n\n\n Open Contact Us submenu', 'ref_doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'doc_id': 'a6d254c5-20c0-478f-9986-803b175e066c', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/summersession.duke.edu/visiting-college-students/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:e432f465-7336-43bf-98c6-3fdbd05f66c9', 'payload': None, 'score': 19.682046632058295, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '72941', 'document_id': '978cc5f7-518d-46c1-9a1e-bd564203f398', '_node_content': '{"id_": "e432f465-7336-43bf-98c6-3fdbd05f66c9", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "978cc5f7-518d-46c1-9a1e-bd564203f398", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 72941, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/summersession.duke.edu/index.html"}, "hash": "a7cd9e930147aa8e0f3b4488d046ed23e992188b48df2708094d8b6c9da528c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0bd6314a-1e94-4749-9a6e-5da9c1fa0569", "node_type": "1", "metadata": {}, "hash": "c6bce8616e4a8e6d7db737b8856089e976713a4829bc3fe8d3c9ec16aa6bab96", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 17, "end_char_idx": 3353, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/summersession.duke.edu/index.html', 'vector': '̒\x1eϽ𩽲J9TD)[\x02͍輟d\x1f\x0c2=R6p<~G/\x04=5`=NR<]\x03{<"ú}%i"7^<ꚼXQq=tk\x17;A=\x1c?W\x07(\x0f!;J;uf\u07bc;!<&\x170(<=Z\x10\x08G;:\x03_}=2\x00<\x1a<ꕻ<\'D4<*\\讲;NBa<=^v=<\x14=\x171B9a[=\x18h=@V;~\x1evL0/\x04=\x0eQd?ﰻA"\x06<\x01\x11so<[\x1e̼\x7f<-t=\x17=\x1fd;7\x1aR\x0f<#\x05ϼRp\r:@9=b=\'\x10XCۃ=n:<$<(n<ۼkB<`89Tļ\x07Qoq\x15a<4w=d{j,=J%<.\x11T <@1\x1a#\nl;8`$>=w3fZT鼫\x0fȭ:q8\x0c\t:\x7f,\x08=a<:pB=\x07խ<-;<4\x08* \x02=;M=\n="=\x16\x15BqI+yaI=X\x06=uv\x07;z\x1b<6<Α<_\x02=#8c=m\\{\x00n(_;s-*1g\x7fvW,<\x0cH;V;\x10\x01c9\'"Jޢ47\x19\x037:!+=\u07bcz<\x03\n\ue4fc)*=\tki;Tc;4&<;=y[>=/e\x10\x1a@\x0e\x10=)*=X;\x0fO.=Țe>`F<+\x14=Bd"<[\tx>#\x0c<ļH\x0e\x1a(=\x15;J":;\x00w<؎f3\x04=\x13\x1e<\x14{*Z\x0b<>\x0fj<=y\'\x10u\x06<\x12;d;/#}*k;ڐ;K^=\u07b3<7x?;>=\\<\x7fu\x18(;T;o<}ӻڐ\tX4:+f漻>;@s\x0eVʅ=-RX;<<0<4&;\x12亃!J;6=\x1e»<]Ҵ=Z(<LJjs-*\x16};<ĻSI3k=i6<\x16}B\x1f\x1d9ĸ=\x10u$0=Z|;tf\x1b<,\x00n(=^ջʜ\x02ÒG=툓@6A+<\x00I\x0b&=vI.FSm<\x02͏"^{Z;_PG\x070\x06I=C!\x16<@\x1b<]9\x03S9<ҼM5\x01Ҟ=ܻ< \x0b=᯼r&\x10ԏj=B-<\x03<\x05ټo\x08:ݼ\x10<:<$_\x0b;<һ@\x1b;\x7f\x0b:u=>\tU=9a\x1d;v:(\x1e\x16=Q$ļ \x0b=I{ǎTRG=Gj˼F<)\x1d/\x06=I<\x16"\x01\x1e=n\x02\x19+=\x05Y<3\x18/<>\t<\x08κ\x11м\x0f=R;y>Jn=fʛB\x04=ʹc\tռօ;ټxn\x13<(;Y!K\x1a\x02[\x1a<ܼ|`7;c)ziE⻣\x17="-\x03>\x17<8j ^<7Zʻ˱W\x06<\x01Ha<\x04<\x0e ^=\x0e04\x04\x11R\x10=Fa<%gԋ\x05F:\x04];<\x02\n2;s!0?\x08<\x15\tst\x04]$=\x07M\x00<;E5\x05!8;ݨSR<0z\x07<>)\x01]C;kW;}\n\x0cF;\x056<\x14Fm\x03\x00;ҼF<\x16\x17\x12y\n OjA}=ԯ&\x03*l\x15.:fl8;\x1c5oBO!L+H\x1aU\x11=4<4u[p¼v\x12\x18=T=Dq+ƻG*;JF4)Ҽw];\x0bF7-\x19<\x0e{=]@;y\x18O=aż\x0b~?)\rr\x0co\x1e\x06W;\x10F"O\x18_{N߁:+q\x1a<\x1f\x17<\x7f\x16:6tջ<2;ۼZ\x1c+=<6\t\nd=N绝)6)<\r\x0b\x00j+ \x7f&=v\x1dݼ<\x1fC(=Œo<\x11-=\x07<8稼ݼ\x0bi+\U000e93fc: \x04<.\x0f=J<\x08O=\x07ҟ;*D9=u}<\x17V=&=<:<;9̻<<^:\x1dKZ=༠\x1eͼL=E=\x02-h;4Я\x04Nc˻Y&:\x03jV\x03Uw<ڃ};\x04|\x1e\x14\r:Y&zm_\u0c3aEv\x0e\x1d\x0e\n=8eʸJͻ-<&H<\x18BA=rL\x18$i=月퀏7(e=\x7f۾<3\x1b\x12n\x1b\x1c=`\x0c=\x1a.=%+=Ӽzq\x02=.\u0383\x01H=\x0e\x01<\x1c\x12\x14\x16\x16cm:Ti/*NC\x00\x01\r\t\u05cfλw\x16ּ,\x13J=s\x07`G;\u0557b<\x19A=TT<9=\x1fɼY\x04\x07oX*^<\\=\x10{\x1aLZ\x15;H=j$=Ɗ<\x17"<)\x1b^\x11e?Ɇ\x049\x1e\x10\x10e\x15l\n\x11:X)<؏\x01=.\x0f=p\x0ftG=\r<\x03\x0f;/<\x03|e$/\x0fV3ur\x1fjP\tKc\x10)2J\x1d\x07=ݐNk\x12Y,=nX\'\x1ab;*\x04B<]=\n\x18=2\x1eU\x1a\x1b\x1d\'\x0f<\x1d= \x1fu/;̌\x1a\'mܩB$B\x15\x0c\x02`=/\x1c;-PU\x1dg=e6=B꼝\x1cvڿռĈn}:)X|Ի@\x1b\x07\x1f\'W\x150\x07\x03oI;x:&=mpP\x0eRp:=Ϥ<\x10V;\x06\x04EФW=`\n:mM<#5\x1c=%', 'text': 'This working experience allows Iris to become more specific about her career goals. "My career goal is to address broader, large-scale health issues and establish prevention programs," said Iris, who decided to apply for the Master of Science in Global Health Program at Duke Kunshan University to pursue more knowledge in this field.\n\n“I believe that as a global health student, it is important to develop research skills, listen to various viewpoints and clearly communicate research findings,” said Iris. “I am aware that health issues are often complex, subject to the real situation and multiple challenges. While I don’t have a strong research background, I have always been a keen practitioner in public health. I am confident that I will thrive in the rich academic environment at Duke Kunshan University, together with committed professors and enthusiastic fellow students, and make a contribution to global health progress,” she added.\n---\n# Global Health Program\n\nSIMC Fieldtrip 908 MHealth Global Comparison of Public and Private Hospital System 2021 Annual Report\n\nIn order to compare the operation modes of public and private hospitals, Professor Lijing Yan led the global health students to visit Fudan University Shanghai Cancer Center (Pudong) and Shanghai International Medical Center.\n\nHealth Global 17\n---\n# Student Stories\n\nFor me, the Global Health Research Center at Duke Kunshan University (DKU) feels like a very loving and inclusive family. Dr. Chenkai Wu has provided interns a lot of support and help. During my six-month internship, I have gained a lot of growth, and greatly improved my ability in data analysis and academic writing. As a result, I adjusted well to studies at the master’s program, and completed this semester with good results! I am grateful for the support from Duke Kunshan professors and my lovely colleagues, and hope that more talented students will join this big family and reach their full potential!\n\nTianshu Li\nClass of 2022, Master of Science in Global Health Program at Duke University\n\nInitially, I chose Duke Kunshan University to learn more about Chinese language and culture. But after starting to study here, I became deeply impressed with its true global positioning and research impact.\n\nI am very interested in maternal and child health. My advisor, Dr. Qian Long, Assistant Professor of Global Health, helped me get in touch with Professor Vijitha De Silva at University of Luhuna in Sri Lanka, and invited him to be my second supervisor. Based on my research direction, Professor De Silva recommended Professor Truls Ostbye from Norway who now works at Duke University. All three professors are very important for my academic pursuit. They have given great advice on my academic growth and future planning.\n\nWhen hesitating over whether to follow my research direction or choose a great school in my PhD application, Prof. Ostbye gave me lots of helpful advice. In the end, I found a team at the University of Bergen in Norway that I really like that matches well with my research interests.\n\nI am pleased with my choice. It is great that I decided to go to China from the U.S. two years ago to study at Duke Kunshan University. I have expanded my disciplinary knowledge, but more importantly, built a network of researchers and medical professionals from all over the world, making me feel that the world can be so small and we can be so close.\n\nSage Wyatt\nClass of 2021, Master of Science in Global Health Program at Duke Kunshan University\n---\n# Global Health Program\n\nThe Global Health Research Center at Duke Kunshan University provided me with training experience in a world leading public health research platform. Under the supervision of Professor Shenglan Tang, I participated in the China COVID-19 Vaccination Service Capability Evaluation Project and received rigorous research training. I have learned a lot from a team of great professors who, with their vision, judgment, and experience, have guided us in doing meaningful and impactful projects.\n\nIn addition, I took advantage of Duke Kunshan\'s beautiful campus and modern facilities to relax during my spare time. I also enjoyed talking at lunchtime with highly talented fellow students at the Global Health Research Center.\n\nWelcome students who are interested in academics to join the Global Health Program at Duke Kunshan University!\n\nYewei Xie\nClass of 2022, Master of Science in Global Health Program at Duke University\n\n# 2021 Annual Report\n\nI used to be a small restaurant owner and wanted to provide healthy meals. But customers often had different views on what is healthy food.', 'ref_doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'doc_id': '3df9877b-9bf6-4ee9-8744-122092596d1a', 'file_name': 'GH-Annual-Report-2021-EN.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/newstatic.dukekunshan.edu.cn/globalhealth/2024/05/14155725/GH-Annual-Report-2021-EN.pdf', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -[2024-11-22 10:21:33 +0000] [1108996] [ERROR] Error in ASGI Framework -Traceback (most recent call last): - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/asyncio/task_group.py", line 27, in _handle - await app(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 51, in __call__ - await self.handle_http(scope, receive, send, sync_spawn, call_soon) - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 83, in handle_http - await sync_spawn(self.run_app, environ, partial(call_soon, send)) - File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run - result = self.fn(*self.args, **self.kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/hypercorn/app_wrappers.py", line 113, in run_app - for output in response_body: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wsgi.py", line 256, in __next__ - return self._next() - ^^^^^^^^^^^^ - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/werkzeug/wrappers/response.py", line 32, in _iter_encoded - for item in iterable: - File "/home/ynyxxx/.venv/lib/python3.12/site-packages/flask/helpers.py", line 113, in generator - yield from gen - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/backend/agent_app_parellel.py", line 47, in generate - for response in responses_gen.response: - File "/home/ynyxxx/ChatDKU/chatdku/chatdku/core/dspy_classes/synthesizer.py", line 132, in __iter__ - for r in self.llm_completion_gen: -ValueError: generator already executing -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Setting attribute on ended span. -Tried calling set_status on an ended span. -Calling end() on an ended span. -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{35936 total, docs: [Document {'id': 'test_doc:0125ac31-a9a9-4096-832e-aaba4d17bac9', 'payload': None, 'score': 48.66957643030577, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '518044', 'document_id': 'ed47dd43-1b17-4e70-829c-2dff9c2d16d7', '_node_content': '{"id_": "0125ac31-a9a9-4096-832e-aaba4d17bac9", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 3-2022/Envir/ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf", "file_name": "ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf", "file_type": "application/pdf", "file_size": 518044, "creation_date": "2024-09-02", "last_modified_date": "2022-01-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ed47dd43-1b17-4e70-829c-2dff9c2d16d7", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 3-2022/Envir/ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf", "file_name": "ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf", "file_type": "application/pdf", "file_size": 518044, "creation_date": "2024-09-02", "last_modified_date": "2022-01-05"}, "hash": "678f9e8ab374a2c5205a89a7846dc7f4967f59ca463a5405e41129e695669411", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3879, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 3-2022/Envir/ENVIR 206_Energy and the Environment_Ka Leung Lam.pdf', 'vector': 'r\x05CB\x08vR\\ݴef{]\x1e<8\x1f\x18=/=#|ü\x18\x1b\x12\x147Buٻ6\x1dv=Db<\x1bE;_}:\x83I&\x14$_D5=(\';6\x1dv<\x11eo=%r=F\x04+:L<Ҭc<;5㵺\x0bJ{\x1br<ڋ9_\x7f+<<γ3=ʺ<<\x04H\x13?\x11;^l<3/be<\x08K=\x1eG<$s\x14:\x1dd¼tdӬbT=|a;Z\x04}$=:]c4;ܺ<8dǼ\x023:!\x04=7\x17<2]:;OW\x1c;ëd\\O\x10=;\x85=+9\x1eq3<\x18;vs#k:=фckkI+\x1b=_#\x19s,R]<2\x07\x17\x1b;÷}\x0cԻ|WFI=I?\x1b\r\'\x10=7m;\x14V݃<ӻ<˴-4E\rl?V:Î=γ;R\x1c=\\\x1e/\x14<0\x05|ȼj:<\x18<*=Y<-t;\x02\x1fb\x06<^\x13<\x0cY}\x0c\u0600\x1a:\x01\x05#=/=\x08=Nj|\nv<2imh\x10[J:N\x12:c켔C\nh=Ք=ݍ=p<\x15C/<{ǏL9RqM=\x1b!<\x17#:@<5<0\x06h<\x7f<\x16\x0f9:\r\x0cкX:\x00&=&`]=\x18K\x03_\x02\x0b\x12FwGg<\x04ix>7\x1a",o\x1d\tN")E\\<\x05\n<\x14H3V;\\<\x01>ƻ\x05\x05n\x07=\x17#\x16=ȼ\x05\r3\x0eN;\n=J:=)l;<\x04\x10=\x11&V\x08<"9&<\x168.T7\x08~=s3=/j6\u07fcisVqJ$\x03ʆ9*:\uf237<,ۼ\x158\x05\r87t\x00=kٖ:Z]R7\x04?<\n^I~F<|\x1d\x12s\x1cl\r;1\x13=<\x04E\x1b<|4D=o<͝\x12V=Ӎ=%\x06=%J=\x18k< \x0e\x0f\x1c\x1a\x10c˵<\x15ഗ\x15<\x17\t{~=/+!#\x18\x1b@8\x12Bi<Ƽ5\tc;إK7\x08\x00>DY;)\x19ZOz<\x15=UqJnI<)υ\x10o< <̻\\\x11\nxhO\x17;`߫\x0b0Q#<\'\r=%ɗ-qD;.h!={\x1f\x16<\x18C\x1f;`:\x0ex2<\\So\x03=#PA\x0er!=\x1bټ\x0b=\x198\x12x;W\x01=,=\x028,ኼ,^&\x04R\x12=Rר!\x04ӓ<\x03ZBG<^;$e\nި<~(<\u07fbr\x04Zwn戽8#?<\x12x=6\x05\x14;T!m;Z,κ=)<\tA6G[=\x13bS\x10&', 'text': 'The two cultural pillars of the Spanish and Anglo culture, Miguel de Cervantes and William Shakespeare shared the same times, and almost, the same day of death, April 23, 1616. Both, lived fully, as we do today, in tumultuous and tempestuous times and shared it in the tragedies and comedies coming out of their imagination. We, their heirs have adopted, used, and transformed their legacy -our language. Also, we do share that history, one of imperial dreams and nightmares and the expansion of a global Eurocentric culture that transformed the globe during what we called modernity. They foresaw such forces, those that unleashed our own wild and turbulent times. Art still creates out of Cervantes Don Quitoxe. This paper was commissioned for the first of a number of exhibits produced by the Artists Studio Project (ASP) for the annual Quixote Festiva, a nine month cultural adventure that takes place every year since 2015.Save to library[Download](https://www.academia.edu/attachments/64930199/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=44495782)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[![Research paper thumbnail of Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://attachments.academia-assets.com/49530053/thumbnails/1.jpg)](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)[Tejido de Comunicación | Weaving Communication: Decolonial media and collective performance](https://www.academia.edu/23676786/Tejido_de_Comunicaci%C3%B3n_Weaving_Communication_Decolonial_media_and_collective_performance)In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultur... [more](javascript:;) In Cauca, highlands of Southern Colombia, the Nasa people had resisted land occupation and cultural loss for more than five centuries. Today, within the framework of global policies for open markets, the community has developed new strategies or resistance: documentary video and community radio, public and community based performance, and symbolic uses of ancestral objects are threaded with cosmological knowledge. New media technologies and collective performance are part of the strategies that indigenous organizations in Southern Colombia are practicing in order to close the generational divide, build communities in resistance, share, and make visible their struggle. The emergence of the ACIN\'s Tejido de comunicación and the"kiwe Ten\'za" (the Indigenous Guard) are the result of this process. Developing a communication platform while fighting against resource extraction operations, illegal crops, and land disputes, the tejido and the guard inform and protect Nasa communities targeted by local, national, and transnational forces. The Nasa are actualizing their tactics through a combination of historical means of resistance (military and political), by strengthening their core values, and by processes of autonomy, education, and circulation of inherited means of governance. Miguel Rojas-\xadSotelo is a Colombian art historian, visual artist, media activist, scholar, and curator. He holds a Doctorate (PhD) in Visual Studies, Contemporary Art, and Cultural Theory (U. Pittsburgh, 2009). Miguel worked as visual arts director of the Ministry of Culture of Colombia (1995-\xad2001), building participatory cultural policy for the visual arts in his country, and he works independently as artist, curator, and critic ever since. Currently works and teaches atSave to library[Download](https://www.academia.edu/attachments/49530053/download_file?st=MTcxODU2MzA1MCw0NS4zMy4zNS45MQ%3D%3D&s=profile)Edit[Compare citation rank](https://www.academia.edu/rankings?work_id=23676786)![](//a.academia-assets.com/images/profile/academia-gold.svg) Readers Related papers MentionsView impact\n[!', 'ref_doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'doc_id': '93722988-6c5f-44d2-a9bd-3a5f7ea40c20', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', '_node_type': 'TextNode', 'filename': '/opt/RAG_data/dku_website/duke.academia.edu/MiguelRojasSotelo/index.html'}, Document {'id': 'test_doc:7ae4106a-10a0-40f8-8cc5-971e807c885e', 'payload': None, 'score': 38.53360199092106, 'creation_date': '2024-09-02', 'file_type': 'application/pdf', 'file_size': '235942', 'document_id': '71dea93b-9b52-4783-bcd3-f27c0c643427', '_node_content': '{"id_": "7ae4106a-10a0-40f8-8cc5-971e807c885e", "embedding": null, "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "71dea93b-9b52-4783-bcd3-f27c0c643427", "node_type": "4", "metadata": {"file_path": "/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_name": "BIOL 208 General Ecology Spring Chuanhui Gu.pdf", "file_type": "application/pdf", "file_size": 235942, "creation_date": "2024-09-02", "last_modified_date": "2022-03-18"}, "hash": "0e1208392f260a647322efa9a480d331435548499b5ad3056d939be3965d5865", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3192, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/datapool/_DNAS/!Teaching/Syllabus resource center-DNAS/Session 4-2022/Bio/BIOL 208 General Ecology Spring Chuanhui Gu.pdf', 'vector': '\x16\x1c\x00ռtW듼\x0c]UX."Ѽkũ<\x16߰\x1c\x08ʼQ0\x03;0\x08rxڻI=hk<\x16\'=ˌ<;\r=:C=ݔl;;lW;̂i;Ab={x\u07bbQռ<<\x11\'%;̋\x070*n;c=\x02Ak<\x0cw\x1d\x189E<>7\n=䝁<0.wܿ0\x08.\x0fμ#M\x04C\x18\x1eݹ\x0f==<\x08/<\x1f<{<\x0e,0=>7\x06\x12=yW-g8\x01\x11\t_<\\Z9\x1e\x0cŝ<Ǧ7\x11f;\x00=ɹҼ&<#\\<\x0fQ\x16=\x19Z\x05*.2\x0b\x1cxn=b=<<ѼZ\x16*=\x00<\x084[=\x10%忻\x19|>=@\x07k꼻ܼyĕ<<\x1e1ZՑ\x0f&Aܺ\x1b=\x7fcE<3>mO\\\x12\x1f<ͼ\x18ʼ@¼\x18Jw\x14{6vNj\x18^B<\x01C깽)<"Se9p;\r`\x15<=M<\r<\x10sL;\x06=V:"\x05=w;hʻ..#=1;1_\tw\x06漱;\x05^\x06#;$ʞ\x02*\x1b(Q<5A\x0f\x15\'D<`WV\n-2\x11(=t;YbU3\x1f$=\tI2=\x01X<}?8`\x18\x1a=u\x15e*<#t\x15\x00=H\x0eq< \nӹW`\x19EG\x16*<\x16HA<\x0f\x0c;m\x04=SÅ=\x06H\x1bzT\x19\x0f;@<йy\x15;\t\x01;̼!bʺ \x14&=e9p=ξ\x0c<\x0bJ$\x0f\rV#\x1a<\x17i\x07=\x162\x0e#;\u05cd;9-LRJ=\x05\x0f\x1a<^\x07u=T;E;[\x1c_ػ#:<\x18=\x1a5R&\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 337.1156939543695, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=F\x10>s\'<\x13\r@;\x16;#d=WV7>\x15"=nJ;\x12{]\x14V\x07 \x02\x03@:Bv\x16=;s<\x03f:ơ;<@85D!\\e7\x06\\RĖO;\x12?\u07fc\'ռ\x16~;Uv;GI4\x1fuN=k>w..\\R\x00<\t¼`*!<\x03\x00+<(@=Qw;<,\x13&=/Y\x04\x0e\x01=QЛRx\x05,p"\r\ue89f<:\x18l#2=;\x16<.;u#vF\x15\x02mul;\x02\x7f;R\x07w;==<Ƹ\x11\rWvSw;X¼.0<\x02;t0=CC@<<\x05\x0f\x1d7<\x15"=\nE<\x1c9=\x14\x19PuN\x06FN/&#aȇ̠<@<\x03\x14=\x16S=\x15;\ue89fe|*l=\x15Q~B\x05\x04\x07=7\ue89f\x06<\x11㻲;;Ӻ0ϼp\x19\x17ykE\x16-δ;F:I?S<:`y<1v|}77\x17<_c\x0f˼x\x1c<\x1a+=/\x1d6\\\\<\r=;RƼOz;\x04\x07=;\uef3d\x01~S\x03\x14<;M;;<<^<\x0f\x04=g<*l<\x12?_5Ai\x14<0ϻw\x15\x05<}i\x06Y;{=ˢS\x13d\x08`V<\x1fA=\x04\x0eW*(=:x<=`"=\x159fF_<^X\x11`t龼eļz:ǂJ=;͛⬼>0;l!\x08<-4Ҽ\U000c433dDžYԩ=\x1buû5"\x04=h:T=ټ0c%\x17\x01(:\x0f<{dE*Y\x1cbp;\x1f\x0f;f^\x04\x1f)<2X<\x0f7\x00=ں\x10\x05zݼt\x19\x17;0\x07}\x17<8\x1bA;Gk\x0f=EN=\x079\x01\x10;B=\x1fƼ"\x00=ˊn>\'ք<ɓ%\x17=\x0bUM\x07;d=_<\x04\x1b=z|\x050=/\x0b=JM2x-=^\x1e1(^=;̸~F1=ɓ\x038<\x1buü\x0bm<\r\x0bU\'=f^;뀇 YrDz"=<&=\x9dP\x0f<\x04;bXo=$\\ݯBx3(l\x07=0Ҽ`\n=;\x07?=A\x0ff\nʹpg<\x1d\x08;l\x1c+=Qj\x07<\\=0\x10<\x07438\x0cn\x7fS=iX/;\x13=|#Z<\x04뼷\x027<\x1cm()O8F<\x07\x03:\x18oUa\x12n\x106<ټU!;\'N\x7f#jF<<\x10;&=<ȒiV<&WD؉=dQOQ=|<\x7f<\x18[j\x08{`;\x17\x14\x0c<<\x16;=PX\x06D̕ w\n=\x08q;iXǠ\x1fE9[=\x1b;=a[<\x07}GͼE=hh=nh#;!\x17 =\x12sU;&*Dݎ2M7"/yv2=ݼ\x13\x10\x05X:FfCz%ߺb\x03*(:$s\x19J\x0fO=w\n͌56n=\x13c#\tiּO,l\x19.\x0794AK[Q<\x0e\x1a%½\x19I=\x15"=W6<\x15G\x040<\x0c=7P;kDmѻ\x17!;\x15"=\x08\r=^r\x1e\x03<Ȕ\x02m\x1cf}JA:wAs=D;+v\x14_<\x1c*&^\x15=\x0c\x10|:-j%Q<-jY<ɀ\'\x04:\x0e4=c:2_u);E<Л\x08伋O!=0Px=\x01E=n(9\x15:4{<\x7f \x10=\x10<|<\x00xӼZ%\x07ZUʼ\x04]=ԯ<˽<(ؖ;U\x0c\x05\x1b\x01S*o;,w!\x1a)\tϳ\t=\x04<ӓ\n%/W<\x11!-Am<\x15\x12\x07qǮ=SBl4;3<$!g<2_u\r=nX̺@)ɣ\x18/Ͳ\x06:\x07=\x0c\'ӡHm;!-&":\x1f\x03m=[s=z\x7f=\x1a=\x1b\x01<\x0b\x08\x1a=><6c>\x1c=E\x1b@\x1dS\x13ZB\x03$;\x19,=h\x1bZ:\x7fh<\x02=K;s\x02*n\x1eo0:\x00Vo=7N=o\t㻼9\x0b\'NW=T=\x05ȼ\x01YϘ\x028v\x03B,==WF~\x0eMV<<<\x172\x1c̻hD\x19(ѷ+=0\'&\x1c\x1fI\x0bhDz<8"\nCڊ\x0b<(<\x19=\x19<\x05C<\x18QR=Ta*4B*n=5\x14=\\B.;N7\x1c<\x08黂Mn<\x10҅.mS\x04<\x00\rHVoR<\x1d\x03\x04<`2\x17=h\x1bZ\x08P= ;x؟h@ƃP8\x19=D\x07=6\x13On;e6M=ѷ:m%\x16+=\x12ૼw\x17\x1dRS;\x11\x027=\x03\x12`sF=6&:B^\x06V9ʻ#\u07fcuMg<,;\x15=\\¼ͺ+4\x02X<ťVlmW:S=r&\x1cDɇ,=OR<*n\x1e\x01Ƭi<=<&\x1c\U000fcd67ax\'=\x19<#7fa<|\x05o<2<@]\x08S>b=\x15QS$\x7fP\x07<$3:;J\x1e\x17\x04q:\x08i:\x10qH\x0e=^e=\x01=MgE:F\x13\x0b;s\x02=\x1cE=Gϼ@-8I;Գ\x0b;ۚ=\nD;7+=\x13\r=\x7f{A\x1d\t\x0e\x11X<ۚ:<\x08,N8P;n/U5*[;=\'\n:9F=<9\x1bz;\x02\x18=\x05V=l=rR<;*]<\x0f@5;6([<Ӽ$\\xm\rע\x1c=9&eռ#۸=1^:\x7f\r;\x1aR\x13ƛ\x1c\x0e3\x19R;#\x12\x140=l7=\x17\x19/q\x12_\x0f\x10#b\x7fs\x17\x19\x04\x0b<\x15\x0c\x0bn\u07fcn\x01n\x01\x17\x10=DZuǼj<\x18k:\x16<3Z\x05<ۀ>o_X7;4p\x15 \'֒\x1eWrK2=Q;\x02H)~=q\x0fyQM!l;$\x1bJf\x0e<(-<:A<,^\x0fX43Ӽ\x0bK<\x7f=z\x1f|\x0e4=<4A\x1b<<\x1d=\x1b+rRɻ0.!v\x13,\x08^3\x12!\x16\x1e\x00\x03S\x1c?ٞ\x13Z\t6<\x03mi-+\x02I=x;ݖ\x01=\x15M\x1eкy<\'\x0e\x1cB9\'`o2M;\x10\x0b+=i$9j*<xp̼;\x14\x17;W/I7\n/A$x\x1af<\\x\x077\x10:\x04;:a2\x17\x19{<(@MhU\'=݂VfR=\x12qW/;j>Y=T\x02=\x11\x05.KD3\\9*\x06\x08=;wo쵂<2=|\x1bs滊:lI;{<:\x16v-W\x10.7zk=F\x08i<,l<_w#/i`\n̼]<\\:LAA<\\@\x1f<;UX(\x06\x19;u,MI80<\x03\x10\x0f9<\x11=g0Y\x12+\x1c<\x0b<$ټx=o\x07\x13kt\nnLv=<\x11<\x0fm\x05=s\x04n\x00M\\\x11=Q$ļ\x11\x14:M\x1a', 'text': '# Hiring Process for Student Interns\n\n# Interview Coordination\n\nThe hiring office should be responsible for coordinating and conducting interviews. The Office of Human Resources will not engage in the interview sessions. In most cases, the interview of student interns will be conducted by phone/video. If the hiring office would like to set up an onsite interview on campus, they should be responsible for relevant logistics and cover all related expenses.\n\n# Interview Guidelines\n\nDuring the interviews, the hiring manager could introduce the stipend and daily work to candidates if necessary. For student intern positions, the hiring manager is encouraged to reach initial verbal offer agreement with candidates at this stage.\n\n# Candidate Confirmation\n\nIn the interest of recruitment efficiency, the hiring manager is suggested to confirm the candidates with the following situation during the interview:\n\n- Internship duration, starting date and ending date. It is suggested the student intern should be available to work for at least 3 months;\n- Working hour: five days per week, eight hours per day. From 9:00 am to 17:30 pm. In most cases, student interns can work full time. However, some may only work 3-4 days per week;\n- Work location and accommodation: student interns should cover the accommodation fees by themselves;\n- Intern stipend: 3,000 RMB/ Month for full attendance.\n\n# Step 6: Extending Offer\n\nOnce the hiring manager confirms to move forward with the candidate, he or she should send an email to the Office of Human Resources with the following information included:\n\n- Job title\n- Candidate’s resume\n- Working period (possible starting date and ending date)\n- Fund Code\n\nThe Office of Human Resources will make the offer to the finalist and inform the hiring manager about the offer status. If the finalist accepts the offer, the Office of Human Resources will initiate the onboarding process. Otherwise, a new round search will start.\n\n# Step 7: Preparing Onboarding\n\nBased on the previous cases, the best practice is at least 7 business days are requested for onboarding preparation, which includes Net ID, cubicle, campus badge, laptop preparation, etc. When the hiring manager gets the student intern to offer, he or she should consult onboarding day with the Office of Human Resources. Onboarding date for student interns will be on every Monday.\n\nHuman Resources Office\n\nLast updated in September 2019', 'ref_doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'doc_id': '71b7ed09-edbf-489d-9bab-a3b83ac1220f', 'file_name': 'Special Recruitment and Hiring Procedure for Student Interns.pdf', 'last_modified_date': '2020-04-28', '_node_type': 'TextNode'}, Document {'id': 'test_doc:cc53bb11-993a-4bce-85e9-7a9551a2b0a0', 'payload': None, 'score': 22.589322974382366, 'document_id': 'index.html', '_node_content': '{"id_": "cc53bb11-993a-4bce-85e9-7a9551a2b0a0", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"category_depth": 0, "link_texts": "[\\"Skip to main content\\"]", "link_urls": "[\\"#main_content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/www.usajobs.gov", "filename": "index.html", "filetype": "text/html"}, "hash": "45c0cbe6c6319b689d183634e068b1e0493205d12944909bf7636263451dba0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e668195e-a704-43d4-9ecf-a0c10ce996c6", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html", "category_depth": 0}, "hash": "3121985528011eddaaeceb8318bd0711168712c909b1106297b0331421a264d0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8301d50-ab04-4123-b28f-033c7cccbbae", "node_type": "1", "metadata": {}, "hash": "63f7b310cde3076c049d2de420e99084a5288a9f9612f11fe1f9bc178f0af792", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '-5\x0e<\x1avdHQ&;-i\x19=Z=H\x7f[<\x075k=0F=;\x02No*>0Fɼ;T;턽;c(=\x1a<\x12>F\'=\x04W!\x0e?=ˀƼ\x1d\x18;Ӯ)<,@<*_x~V"P=ƏY@kW\x188rF=4Yo3aP<\x03=\x1eڸDpDe\x00V<}IKShC\x16N\x06Jo=:\x13UcǹC=\x14&<\x04xżq<\x046\x1fܦ`\x1f,=mμ\x14şbLӼ(\x11b;\t@3\x15\x02xi;@6<\x08J\x1f=xgb\x12LL\'\'WՈ]Z\x0fY4W<\t=*b*l\x0bK V=\tȻx\x04¼5F<6\x1b;\x1flm\x7fU\t9b\x15=~\x19=V\x01n\x15*\x0cs=ƋuA/Lμ <;ƻ;%l\x16\r\x0c=b;ң5f<ݭl;@()\x06j\x1a9\x14@I\x7f<\x1f}B\x14=WI90?G\x1d=һ<\x1c\x0b<6j\x141=fI<\u070e}Ɓ4\x11=\x102ڣ\x1fe_<@ac\x03W\x08?L\x0fD;A\x1d<^\x1a;x;\x18KZݼ\tb<0\n\t6\\<<ڼ5FC;nؐT.=%\x1dϨ<1*vY`K!\x16v!V"m\x1f<6\x168< =5n<5>=\rG=\x17;\x1fHcw\x0fǦ?<\x0c=4=\tY\tF;\t<=\x1c躕v!\x1chQɿ+\\_=.\x06.#\np8=/\x11"Q<&yx\x18d4W\x13 =@\x1d;p~\u05fc\x14\ua6fcLec(\x0c1:rQ<\x06<$e\x17Bi<*I<\x1fd5<6\x7f<\x11U\x19={;`\t=\'O\x136=;\x13\x02=If\x05\x1cQi\'=٥gN\x04=;<8)<,C"29)2#\x03\x16.;Z\x1d=]k\x0c=\x13{\x1eĺźyt\t=7Դ:P=G\x1b<\x13;60;\x03\x0e\x0e<\x08:JOWs7Ae<\x14GoU4/;=LC\x17};K\x14=I;?\x16[\\=\x05W)7#aB\tk=^q|=ݾ\rvmzM)l=*\x0fw+`\t<"` <\x0c\x0fǫ` ;\x05<\x00ˀ<\x17\x00=+L\tK<}F\x19v\x1a\x053=\x1bo\x02y"=im<\x1d\x19=^\x12\x0f=A<@b<$\\ʸi\'<\\\x08<\x1f\x12At6Ι\\=\x0e=zF(=,:; 4\\$;\n=\x00=C=%\x08B\x14<6g\t\nL9\x0fD\x19ǐ\x1c\x02=_Ɩ\x17=(;&)\x14\uec94b=La,=ߗѼ86o|\rVG0^Bĥ<<\x10:;>Q\x0e=O\x1c=2ڻB\x14<^=\x7f0zƒL<\x04\x08=-ڕ=:&=\x16`6\x13;\tw;Q=\x10=\'P\x17=8(̼<\x1f;\x06!Ӽ\x13Xۈ\x1b`\x10(\x08\x0c*주 4\\6F=\x1bXx<\x16+\x04Dw;<\x030~;U<,\x12=\x1d=s+\x01;UT+\x02\x18\'%= &-T(;\x05ר:<\x14ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:668bd24c-6307-43e8-8a95-99d323e428ad', 'payload': None, 'score': 6.748795506943123, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '884003', 'document_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', '_node_content': '{"id_": "668bd24c-6307-43e8-8a95-99d323e428ad", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a60fd96-429b-4e68-b37a-0247cb68ed98", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "d35d7baff69442f546b5e4b3a93c75f413a3fe25494824e00728da1cc6b855f1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a046ab9-a354-46e7-b0d1-b4934e2f44b4", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 884003, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html"}, "hash": "e0771b961d77a17521fcf196aee92bfebf6ea32a2a681f73bb4ed694642c93c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "942fe9d7-c2ec-4993-b2ae-ba5fa36681ea", "node_type": "1", "metadata": {}, "hash": "0dd4e1d91946ca840da633b883d50c395ac207be7ecfd39d16cbf1034622f347", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 49353, "end_char_idx": 53417, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', 'vector': '~\x16@;V$|E!\x17ż3;9<\x1bDl]=\x00\x0e=jL3;4\x1f;0so<\x05;>Gꔝ<*=GGػ8\x0e\x0cgk)=j;[W<|\x1e\x1f\x07\x17=^\x02NJ\x04լ=Tj<{j<\x04ߠȼD\x0f\x1e=I;\x0b\x0f;\x18CD1$=b;x\x00Q-:=\x14xлrż\x18C\x0c:\x18g<\x0eϢj;Cԅ\x0eiK\x00d|8#<3!=t=\x0b`Gk;|\x1e:J?U\x1c+@q\x02=#[=Z<\'N㽔=)<\x037px<7m8Ӽ+\u07bb<\U0005907dTv:Tʗ\r\x103\x1a;\x1d<\x1cV2ȉ[=ݽ:dͼm\x1c<\x1e)<\x15;=T09^\x02μ;+\x1aH \n<Ѽ!tfRD<\x14ɻ\x1b6=\x1e+=Ѽ7<\t$=1%L3=ּ\x11\u07fc\x1a\U000baf03#\x03¹+n\x14W=nG\x12;U\t<>ǻ', 'text': '19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. Will applying for financial aid affect my application to Duke Kunshan?\n\nDuke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships in to assist with the cost of tuition. The university has a substantial pool of funding dedicated to supporting students with need. We encourage all qualified candidates with financial need to apply to Duke Kunshan University.\n\n\xa0\n\nAdmission decisions are based on the overall assessment of all application materials. However, in order to best support the financial needs of all students who ultimately enroll, Duke Kunshan has a need-aware admissions process that may place some consideration on an applicant’s level of financial need in relation to available space and funds. On average, 80 percent of international students received scholarships or financial aid, with awards covering up to full tuition\\* (see Question #4 for more information).\n\n\xa0\n\nStudents who want to be considered for financial aid should complete a CSS Profile application with their admissions application. Final deadlines are Nov. 15 for early decision applicants and Feb. 1 for regular decision applicants.', 'ref_doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'doc_id': '1a60fd96-429b-4e68-b37a-0247cb68ed98', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/category/rxsq/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:4cdcfa6f-be47-4650-b81c-e537561e3627', 'payload': None, 'score': 6.415770713741432, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '342338', 'document_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', '_node_content': '{"id_": "4cdcfa6f-be47-4650-b81c-e537561e3627", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee6a810b-323b-42e6-9d28-113d6d664be8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "619efa1058fef14d45b29c7c32ac1cd0a017765ab7636ed79ec7fa84625fa415", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d690dc3-6a6d-48b1-9585-6dc725ab87e2", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 342338, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html"}, "hash": "e279fe78d8aa58bb3d74be84ec44817c759773f936d4a96f5bbd8715c4e84aee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42e6fd8a-5bc8-4d8f-9d87-3748b282cca4", "node_type": "1", "metadata": {}, "hash": "09a60371b1437f85bad89ad40baa5c212c5c7233366ffd7c869cc36b24bbe00b", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 23364, "end_char_idx": 27862, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', 'vector': 'UW#\x035eQf"\'Pj?x\x08=\x0e8\r\x04\x03W=R{<;\x0e\x0f@\x19\n$:ņo047\t=D<\x08<ݶg\x12\x05;$\x10KN=5eѼ5(pX\x06\x15=4};pW7\x1d&<\x0edF=뺻p<\x11_;Ԯ<\x19\x0c=ON;#όxJ\x0f;C\x01\x7fB^<0_GS<~\x18\x0b?==ܓ_a<;\x17\x17:C <\x11ےA\x00=X;Lɺld\'==P<;\t<\x0fT|<\x14F<#R{3<-h=ps߹\x0b<ԼN=^:N킃=jF<\x082@H:K\x05< RG\x0c7X<dz\'<\x13=/5u"ɓ|b\x18W<*(=r{%(U\x1f\tT\x06=^ؼ<";E\x7f<=Q@א<)Ѭ;Z5yJp\x07Լf\x00;X<@-b\x0b=\x1f\x03<ȫBiG<ه(U\x1f<:=yf@\x19\n<\'\x03W\x0b<\x03Qq\x13:o\x0e\x0e=3}*;W;)r\x05=:N\x08\x0f4\x15C>l<@\t@<\x0b:/\x16\x00\x0fw\\\x0fӼC=s6\x06:\x11ے\x02G<ꗎF\x0e[3\x03R= IM\x19r\x057y#m\\B`ļ#`D&Y=IJ\x08=\x05=$=.,z<~ε=~5\x142˼R\U0007c667_s;x\x08;/g#\x7f;ECvoa4a=W\x17<\x1c+?RۼF\x0e\x1d%ټ\x11<2u;', 'text': '13. Is there an entrance exam requirement for applicants from Hong Kong, Macao and Taiwan?\n\nStudents from Hong Kong, Macao and Taiwan should provide their score in the Joint Entrance Examination (JEE). Students from Taiwan can choose to provide their score in the General Scholastic Ability Test (GSAT), in lieu of the JEE.\n\n\n\n\n\n\n\n\n\n14. Can students who have been out of high school more than one year apply?\n\nYes. For applicants from outside the Chinese mainland, their test scores must still be valid. Please check the expiration date of all test results.\n\n\n\n\n\n\n\n\n\n15. What are the standardized test score requirements?\n\nDKU has adopted a\xa0[Test Optional Policy](https://admissions.dukekunshan.edu.cn/en/test-optional-policy/). \xa0However, students with SAT and ACT results are still welcome to submit them for consideration.\n\n\n\n\n\n\n\n\n\n16. Where can applicants find the application essays?\n\nApplicants can find the Duke Kunshan University-specific essay question in the [Application Requirements](https://undergrad.dukekunshan.edu.cn/en/admission-2/) section of our website. Applicants can find the Common Application essay question options in their Common Application. \n\n\n\n\n\n\n\n\n\n\n17. Who can students contact if they have questions about the Common Application?\n\nApplicants can contact international admissions about technical issues related to Common Application by [email](mailto:mailto:intl-admissions@dukekunshan.edu.cn). \n\n\n\n\n\n\n\n\n\n\n18. Can currently enrolled international students request access to their admissions records?\n\nYes, please check out our record request policy [here](https://admissions.dukekunshan.edu.cn/en/dku-admission-record-request/)\n\n\n\n\n\n\n\n\n\n19. Can homeschooled applicants apply to DKU? If so, what are the requirements\n\nYes, students enrolled in homeschool and/or online school are welcome to apply to DKU. There are no additional requirements for admission but we encourage students to review our\xa0[homeschool guidelines](https://admissions.dukekunshan.edu.cn/en/duke-kunshan-university-undergraduate-degree-program-information-for-homeschooled-or-online-schooled-applicants/) for help preparing their applications.\n\n\n\n\n\n\n\n\n\n\n\n\n\nTuition & Fees \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n1. How much is the tuition for international students?\n\nPlease [view our current tuition and fees schedule](https://admissions.dukekunshan.edu.cn/en/tuition-international-students/), which is subject to approval from the university board and related government bodies. Duke Kunshan University seeks a high caliber yet diverse cohort of students, and thus makes available both need-based financial aid and merit-based scholarships to assist with the cost of tuition. Qualified students are encouraged to apply based on the understanding that the university will endeavor to assist students with demonstrated financial needs.\n\n\n\n\n\n\n\n\n\n2. How much is tuition for Chinese students from Hong Kong, Macao and Taiwan?\n\nCitizens of Hong Kong, Macao and Taiwan qualify for the same tuition rates as Chinese mainland students.\n\n\n\n\n\n\n\n\n\n3. Is there a deposit or fee to pay prior to the admission decision?\n\nThere is NO application fee. Students who are admitted to the university and choose to enroll will need to pay a $1,000 nonrefundable deposit by wire transfer before the May 1 commitment deadline.\n\n\n\n\n\n\n\n\n\n4. What other expenses will I have as a student?\n\nExpenses beyond tuition will depend on the tastes and habits of each individual. In general, students from outside the Chinese mainland can plan for a $12,000 annual budget, covering student fees, health insurance and other living expenses. During the optional Duke University semester in Durham, North Carolina, there will be no changes to a student’s tuition or scholarship package. However, students will have additional room and board costs associated with the Duke campus due to the higher cost of living.\n\n\n\n\n\n\n\n\n\n5. How is tuition paid? Do you offer payment plans?\n\nTuition and fees are due before the start of each semester. Students can pay via wire transfer or online bankcard debits in the currency in which they are invoiced. A Duke Kunshan University payment plan is available for international students to allow for tuition, fees and residence charges to be paid in four installments per year (two installments per semester). Further information can be found [here](https://newstatic.dukekunshan.edu.cn/admissions/sites/3/2024/04/16092411/DKU-Tuition-Payment-Plan-Application-Form-24-25.pdf).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFinancial Aid & Scholarship', 'ref_doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'doc_id': 'ee6a810b-323b-42e6-9d28-113d6d664be8', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/admissions.dukekunshan.edu.cn/en/faq-en/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:1ee151f3-4425-4bdf-bc5b-0b70746ab475', 'payload': None, 'score': 3.569851753066382, 'document_id': 'index.html', '_node_content': '{"id_": "1ee151f3-4425-4bdf-bc5b-0b70746ab475", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"last_modified": "2024-08-26T07:37:28", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/grad.wisc.edu/apply", "filename": "index.html", "filetype": "text/html"}, "hash": "012cc2be90c904740562104d98f8ec7d9fd13f24c2930ef5816d841aba871cfc", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a21d98f-6d1b-4ffa-9e8d-5b98fc86f0a8", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "3def622289dde114a6ccb7f32c121978fbf0024a7efb237b28b7b15d96547c61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f7fc90f-d6af-4f9b-83fd-8173f8bb1544", "node_type": "1", "metadata": {}, "hash": "a9ff8d2e5b8108fe37ec646ab2809263a200e7cc85483e00f5a3da66c293b114", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '^$y=#;8\x16\x02b\x16}j&R,\x07;\r)f\x0e=u11\x14"R{ݼFH{-̻*\tT=~,<"z\x17\x05;\x03<\';\x1cd4=ǻ:\nSܽd\x1e<\x1f"id粈Eɼ\\L;\x19=P=<\no<\x7f<\ue829<7;}j&90~b\x17\x1b=X<\x16=m۰=\\<0\x1f!=̶\x0c\x07d=<Ә(\x14<\x7f;8uSi`9m|̻|r`;Hk(-5a\x1a[=ؼK0\x0b=X\x0b<]Bz!<:\x19<\'<:65<\x01kEy<:I=e⼧\x01=\x0ciι7;jۼ{\x1c<0\x1f7=O\x06@OH=\x1eV[\x15\x19<\x1e`=Q}m۰Fh9\x02C\x0cvڻ1=<\x1e\u07fc\x13\x03s\x13\x0c9=UA:êGh\x10\x16\x085ϐ<[9ş2@;\x06m۰\x19=6<\x03<\x1b<4<\x1dǻ=ܧZ"=\x19\t<\r}\n<\x16<\x12-Y\x17\x01=\\`\x19=\'<+Q69h8;@\r\x11<3$oe5W?\x1d=F\r=b\x03:\x0f`)--R\x10(1I8;.*L=\x05<˿%;\x1ez}-\x11=`;\x07=;"\x1b=.7 =F!gfi\x05P<\x1d\rʘ;O\x1b)\x15ݿ;k~<#W\x1f=EC"4\x1b/\x14:<\x7f=)t\x18= <\t<[C\x13DH\x0e;\x10=$\n =⟼nF\x14=g\x04w\x0f\x12\x06\x18;R\x0fm;\x0fǨ<4k\x03c\x1aFݘ͙;\x7f,%-=W̻k\x00t.ӝ=w}Q<\nK,/<\t\x7f=Qo=Q$Լļ\x157}u;:W:͵P|>: EҼ\tIG\x13\x06\x02:\nqC=\x16DI<^Z;o\x1b:;e\x1e=ɯ<$\x06=ņZ<8I,Q7nq\x17e=J@<,;;\x03r=\x14)<8\x1d\x04 <\x08!\\\x08\x0fb3;Hcмލ\\<[?\\\x08:\x10=)1=˺G\x10"9\x10*/<\x04\x18\x06\x13;\x07T\x02\x07ػ\t\x02\x13\x064\x15:\x00:gF=H!<\x0f"Ew#\x1aR~&[ո\x0bN:\x1bӬIԼ]=\x16UL%\x16mzqT<\x1acbh=MSb\x07=\x0faU<};e\x05F&M\x05ݻ&llN<"8֜<\x1ct\x0bCs>?ƼG;V=k\x13P_;08L%=[="-8<8\x14܍\r"8oV<\x1eYf2<[<<\u07bcJ\x00=|u9<\x190\uf1fb0\x1a2\n6PoVX]C\x1akf\x13;]\x0b\x08\x07\t=\x07<1>=\x1cI;5=1;+\x143#k;bݺP\x13\n}9aWbh=\x15\x1e=\x04<,;*l<\x1dX;u;D <\x12<', 'text': '# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# General Overview:\n\n- Does Duke Kunshan University provide help to students who are interested in medical or health professional schools?\n- Yes, the Pre-Med Advisor(s) will provide guidance/coaching related to exploring medical school and/or related health industries (e.g., Application, Interview, Professional Development)\n- The Pre-Med advisor(s) will provide structured advising (e.g., course selection, major exploration, general preparation) to support students exploring a career or graduate study in medicine post undergrad\n- You can work with your advisor to help identify appropriate courses based on interest and previous academic performance\n- Does Duke Kunshan University offer a specific pre-med major?\n- Duke Kunshan offers degree programs (click for list of majors) with disciplinary areas of study in Biology and Chemistry that include courses that are traditionally looked for in graduate and medical school admissions. Currently there is no specific pre-med major\n- Remember to always consult the admission requirement of the medical institution you would like to attend\n- What undergraduate major(s) should I consider if I have a desire to further my studies in a graduate medical program?\n- Global Health/Biology and Environmental Science/Chemistry are good majors to consider in consultation with the Pre-Med Advisor\n- Are there any other majors planned students might consider if they are interested in careers/graduate studies in life science or medical school?\n- Yes, a new major in molecular bioscience is proposed which has tracks in molecular genetics, biophysics, and biogeochemistry. We expect students interested in life science and medicine may find this major particularly interesting\n- Will I really receive a Duke Degree?\n- Yes and your degree from Duke will be accredited by the Southern Association of Colleges and Schools (SACS) in the United States.\n- Can you guarantee a student will get into graduate/medical school?\n- Every student who graduates is expected to be competitive for both their career and graduate choices\n\n# Office of Undergraduate Advising Pre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Graduate Admissions\n\n- Graduate admissions depends primarily on what the graduate/medical school is looking for in candidates and undergraduate performance/courses accepted\n- Is there an opportunity to learn about health careers and grow as a leader?\n- Yes, you can work with Career Services to help identify internships and job-shadowing opportunities\n- Additionally, there will be an opportunity to join or build student organizations, engage in residence life, participate in volunteer programs, and leadership development support by Student Affairs.\n\n# Courses\n\n- Will undergraduates take labs and courses related to natural sciences of interest to medical school admission boards (e.g., biology, chemistry, physics)?\n- Yes, Duke Kunshan University has both courses and lab facilities (e.g., biology, physics, chemistry, integrated science)\n- Disciplinary courses in biology, physics, chemistry will primarily occur in Year 2-4 with integrated sciences occurring in Year 1-2\n- How will my integrated science courses contribute to my interest in career/graduate studies in the life-sciences or medical school?\n- The integrated science curriculum (natural science divisional foundation courses) in Year 1-2 are particularly advantageous for students interested in life sciences and medicine both in terms of graduate schools and medical schools because it uniquely trains students to approach 21st-century problems from multiple disciplinary perspectives.\n\n# Pre-Med Track\n\n- Duke Kunshan University students can meet the Pre-Med track requirements and be competitive in applying for medical schools in the United States by completing the integrated science sequences, specific disciplinary courses, selecting the appropriate major, taking specific courses during the study away experience at Duke University, and following admissions requirements of institutions of interest.\n\n# Specific Requirements\n\n- Specific requirements vary by institution and one’s undergraduate degree doesn’t have to be from an American school\n\n# Opportunities at Duke\n\n- Yes, in addition to your courses at Duke Kunshan, you are encouraged to work with your Pre-Med advisor to identify courses at Duke during your study away experience in your Junior Year\n\nOffice of Undergraduate Advising\n\nPre-Med Advising AY 2018-19\n---\n# DUKE KUNSHAN UNIVERSITY Pre-Med FAQ\n\n# Undergraduate Research:\n\n|Will undergraduates have access to research opportunities?|Yes, undergraduate research is a hallmark of our innovative curriculum.', 'ref_doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'doc_id': '5eed989b-3617-4479-8daf-3dc7f14d35ee', 'file_name': 'pre-med_advising_faq_official_ay201819.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/ug-studies.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/25140400/pre-med_advising_faq_official_ay201819.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:27ec9212-aa1b-4618-a11d-e5fa0a9622e5', 'payload': None, 'score': 134.84627758174778, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '3691635', 'document_id': 'bb7da89b-00ea-4714-87ea-bc122889e42a', '_node_content': '{"id_": "27ec9212-aa1b-4618-a11d-e5fa0a9622e5", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bb7da89b-00ea-4714-87ea-bc122889e42a", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "dd3d53c3d34af1994fd6c09a44cb8c21c90f4ef07e311fe3049a4566e0de79e6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f71e455-144a-48a4-ad71-2a65b100b012", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf", "file_name": "Eyelink-1000-plus_-Manual.pdf", "file_type": "application/pdf", "file_size": 3691635, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf"}, "hash": "cd7a1b43200ffdd218a481a3e839a0b2fa1f0ce5dc32f8d0653e7b903dab8438", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaa71cb7-8205-41e0-b107-7b8e85aeea14", "node_type": "1", "metadata": {}, "hash": "1fa7a1c39e9c67d6fc1980d95a2ced8ebc5046ccbe44a7e1b3f07827bd8c892c", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 98026, "end_char_idx": 101793, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/dnas.dukekunshan.edu.cn/wp-content/uploads/2024/05/Eyelink-1000-plus_-Manual.pdf', 'vector': '\x08W\\\n\x1b\x1d>\nHx\x06\tG5M\u05fbf\x04;\\<\x06ws.<@6ڳA=c<\x039;<<@}\x13\x1d\x18;]<0<\x0b|\x13A;#ci2\x10;E;C@F;w==\x11,ʻyx?q=T&x,<\x1e7<\x03Rx\x0f\x18;x\x0f<0W=\x12Y8TJ=C\x15B\x13A=iļ<=;1\x7fnj\x16<~\x05\x16<|\x02Ξ\x00\x18px<@S<&=mðuI<1\x1evTBd;o\x00\t\x1e\x1b<@S;!.\x06<\x1c}\x02\x1ck=\x0e\x1a=,hλ@\x16<\x13)E=\x1c\x01\x01_K)I=\x1a\x0b8])<@\x02s*yS\\:l\x13<5\u074c<~\x02:Ȱ Х/i"p|(;}qo]<\x02\x01Q;wn=y\tm\x10u^\x0bN.<._;O>\x11x\x1dP7\x0c<+\x02L<\tuƻu<;{>_*W2-\x13r;Z\x12\':>\x1bƒϺ\x0c9:ut}O\x10zyWP=6S\x0b{eE\x04)Dd;3<\x1c[=$\n\x1b=1{7+;= ;l\x07\n9=μj`_<\x12=;_IQ˼\x166S\x0b=\'K<<*< ^38<;TQKV<6\x05g\x1b*X-T6,=֫\x102\x17<9B\x14\x0f\x1b;!\x7fq\x1b6SA\x12\x0bt\x12ʈK\x12NTJZ=\x04\x14+m̴<$\x19=\x16=8wvC<\n݉Ǻ/*y=\x12U=\x1c<\x05ռRr,\x08[=OK\x0f\x16\x1c兽Eb\x06=4T\rL;Z\x1caHNW<<\x0cɻ\x17s<\x0e\t=\x03\x19=rT"=^\x0b.)=^\x00=JV6=(݂<\x0c=c\x17)X2\x0f=HL=}һ \x19D=\x04\x11=\x08|Ϻh\x1f;\x07Y4<7OFEͼ6R<,t=\nB;<\n#~:\x0fN=q\x0f,=\x18\x1b\x06Ky\r9;lh\x1fE;^BE9)*=>Z\x0c=W6\x0fb<\x04\x04tk\x14=h1\x0b\x01=i(\'yI=Tt;Zʧ<1\x079<ûTו(Ay;\x030t[\x0f=\x18ɼ@خ\x15sܼ\x1ch\x1c+<\x17\x12T=%}\x1c<.\x0c=i`,$\x1e=uO\x1f=R:n@6)v!AeO}R<\x16<\x7fz<\x06\x06Ͱ<|\t;Ԛ2.=\x03\x0f;\x056\x1b/=Q\x12v=F\x10>s\'<\x13\r@;\x16;#d=WV7>\x15"=nJ;\x12{]\x14V\x07 \x02\x03@:Bv\x16=;s<\x03f:ơ;<@85D!\\e7\x06\\RĖO;\x12?\u07fc\'ռ\x16~;Uv;GI4\x1fuN=k>w..\\R\x00<\t¼`*!<\x03\x00+<(@=Qw;<,\x13&=/Y\x04\x0e\x01=QЛRx\x05,p"\r\ue89f<:\x18l#2=;\x16<.;u#vF\x15\x02mul;\x02\x7f;R\x07w;==<Ƹ\x11\rWvSw;X¼.0<\x02;t0=CC@<<\x05\x0f\x1d7<\x15"=\nE<\x1c9=\x14\x19PuN\x06FN/&#aȇ̠<@<\x03\x14=\x16S=\x15;\ue89fe|*l=\x15Q~B\x05\x04\x07=7\ue89f\x06<\x11㻲;;Ӻ0ϼp\x19\x17ykE\x16-δ;F:I?S<:`y<1v|}77\x17<_c\x0f˼x\x1c<\x1a+=/\x1d6\\\\<\r=;RƼOz;\x04\x07=;\uef3d\x01~S\x03\x14<;M;;<<^<\x0f\x04=g<*l<\x12?_5Ai\x14<0ϻw\x15\x05<}i\x06Y;{=ˢS\x13d\x08`V<\x1fA=\x04\x0eW*(=:xR_ϼu<;[<5~@̺\x02<\x11\x08\x0b±9<\x1a\x13\x08;\x1c\x0e6=^<]ԀM\r<&=Eq\u05fcu/\x08<$m8=ma<=h\t\x1dڼ8\x1b\x18m2k\r=\x1f|\x12\x07<:^\x00OG<<\x00K(<˻\x0b<.tfܿ$l6Z=\x0f\x0f=aO\x1cc^,k<5\x17s\x0e\x12T\x10f;L\x94=\x1f;{G\x11v<Ɛ;x4\'<%<֢\n<\x0f=1\x03\x19fkϾ;\x03^689)QU컄 `\x1b<.\x1ev\x15)E\x10.t:%=a\x06}<\x1fy=\x0b< \x17=b<4\x11TG5ԭ<;aA\x13\x1e`:Ln B<\x12#<7XU\x7f\x0b\x03I%G9ۼ\\\x1f|<6\'o<\x0111h-;\x1cc^Hh\x1e=\x01\x13;5q\x15=.=B\x0b<Ճ=A\x13G\x03x\x12\x01<R\x18;\x18zs\x0fXG\x03KQa%=z(l\r\x17Q<)\r=\x18zaSY;ο=b=l\r\x17̍OC)o\x1b=X=aN\x0eWCk+7j=y<<\x16\x0bL\x14\x01M*<8\x1d;PB<\x7fb<', 'text': 'library.duke.edu/)\n\t+ [Systematic Review Services](https://library.dukekunshan.edu.cn/systematic-review-services/)\n\t+ [Tools and Software](https://library.dukekunshan.edu.cn/tools-and-software/)\n\t\t- [DKU E\\-Resources](https://library.dukekunshan.edu.cn/academic-databases/)\n\t\t- [Citation Management Tools](https://library.dukekunshan.edu.cn/citation-management-tools/)\n\t\t- [eBook Readers](https://library.dukekunshan.edu.cn/ebook-readers/)\n\t+ [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n* [Events and News](#)\n\t+ [2023 JVU Library Conference](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Blog](https://library.dukekunshan.edu.cn/blog/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow to Search Library Resources under the New Library System\n============================================================\n\n \n\n\n\nAugust 15, 2024\n---------------\n\n \n\n\n\n\n\n\n\n\n\n\n\nIn the past summer, we performed a core system upgrade for the library system we use. This post gives you a brief guideline for searching library resources under the new library system.\n\n\nYou may encounter some errors during your search, but rest assured, we have noticed the issues and are working on fixing them. We will post timely updates for any changes.\n\n\n### ***How is the new system different? What should I do?***\n\n\nAfter the upgrade, DKU Library’s online catalog is now separated from Duke Libraries’ online catalog. **You should ALWAYS initiate your library search from the DKU Library homepage ()**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:f2aecbff-663c-4a45-aa7d-057f4d297b10', 'payload': None, 'score': 86.04144183004362, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "f2aecbff-663c-4a45-aa7d-057f4d297b10", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f544c63-3b8a-4356-9706-03057a16765f", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "958f18c3-e910-4ebf-9a4d-c6bc5e561a54", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'F\x04\x05o]nُH_\x11;lԼ[\x1f=6@K\x1ej\x04vZo\x14J;a<07=ү\x17;#;O\x04<*$N\x1c=b"(\n^Q\x18dy\x07>\x7f\x05)ʺJ\n<9\x0f=\x03\x1aj{;\x03@6\x0f9)< =;d#=;dJ\x14JÇ69[5-=&l\x08*;)<==KǼ1<{jm=sb\x01=f\x16\x1b\x1a=O1=ĉ<{jm);c^=\x7f~\rjNG\x13{/<ĉ1-\x1dbg\x1b=)d=\x06\x15E\x1aC=\x1f`E^\rR\x19;&\x12=C<[\x1f)*Vg\x0c\x14=J\x17cp<\x0e\x1e~@;?2; <"i,_<\x01\x08)\x10t:W-=a\x7f\x07<`\x07=~-N;\x0cs(6<\x10֔\x07\'<\x1e%=V$+<"=|\x1e\x05\x05=\x06Cs\x0c(8<\x17=\x7f0\x19d: \x1c<(A)\n\x7f=\x10NM:|T\x1eP\x16C|sc<]<\x18;\x1b+\r=\x10\x10ػ<\x18=bQ_\x02=p\x7f\x05;`9=#\x0cְ7<7Uܼo:-ms\x07=!AE\n\x00z\n<*箳<\x07Ʉ<=G\x13\\\x03gU\x02鑼9\x1bdY\x0e\x1e:\x0bͺ/B,\n\x03[;\x05_*3=w=q\x14ǫCF\x1b=\x0caX=oM3A\x03䓹J\x17,\x02\x11\x1a\x0bk=Mz)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:30669940-1ee5-4bbd-b65b-4e9b0d60c486', 'payload': None, 'score': 85.79329988783277, 'last_modified': '2024-08-26T07:37:25', 'document_id': 'index.html', '_node_content': '{"id_": "30669940-1ee5-4bbd-b65b-4e9b0d60c486", "embedding": null, "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "index.html", "node_type": "4", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/library.dukekunshan.edu.cn/blog/how-to-sea/rch-library-resources-under-the-new-library-system", "filename": "index.html", "filetype": "text/html"}, "hash": "f2e61ff10a0dc4e6cbf796667b0c7c0ae4dafd532c6cebd4b3bfeaca0e886dc4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf177424-4f63-4f37-8b7c-f099cee891c1", "node_type": "1", "metadata": {"link_texts": "[\\"Skip to content\\"]", "link_urls": "[\\"#content\\"]", "link_start_indexes": "[-1]", "last_modified": "2024-08-26T07:37:25", "languages": "[\\"eng\\"]", "file_directory": "/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz", "filename": "index.html", "filetype": "text/html"}, "hash": "f5ef922b22516b43f7384dd59102de4e78d608ca7225ee7cb97493e720521dbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fe89d20-6105-4945-a5a4-83f229527f75", "node_type": "1", "metadata": {}, "hash": "df6a2a6af5e4924c7f074af216cce8a03b67afdd05d89cb3c105a2429fd499e0", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'P\x04K\x05n\x1a1IY\x11;\x03\x1bԼ\\<$#<.\x16=\\(Δs<gFY*\x18ض\x1b\x18*\x1b=l0=H؉ /!\x08.y4\x14=#ᬺҋ\x04[<8m.C;\x160; <Ҫ< 9<0\x17Tc=\x0e}\\[=ê\x1c==Ƽ<\x13G;<0Gy\x18]o\x1f\x1eH\x00=ۡr<\x15$\x15H\x07<\':<\x1e2\r=ňػWҪ\x18=\x19Q\x02=<\x02< fJ1\x1c\x0c\'2Y^C\x08\\\x16\rk<\x02=@-~=+Z\x192=-c1\x0e=3Nl\x14\x11\x15&\x05=G-=&Ѽ\x0e}\\>ϓ=*\x0f\x0c;|=\x19;\x06xQV"\\\x03wPϓ<*晼8=\x1d\x13nymҋ=\x1eVf)VO\x13a_<\x1f\x10(SC_:b^G-\x13\x14;\x0f\x1eYw<.C5z0<\x03;0<\x0e@N=\x17;!66<ז;f\x1b\x11弥\n:j*H,<\'>ȼC<;<\x15\x1b<\x1c8w\x01f\x1cۼ\x1e2-γ<$\x0f=ՙ`=\x11w\x12ʉ=\x11w=-\x13\x15\x1d\x1a\x18S\x1b=CX=9hLBf͞\x16,\x1b.j=nz<<]\x1dl\'\x15@Nf{)**, not the Duke Libraries website ().\n\n\nSimilarly, **you should ALWAYS log into your library account from the DKU Library homepage (top right corner)** instead of from the Duke Libraries website.\n\n\n![](https://newstatic.dukekunshan.edu.cn/library/2024/08/15113407/image-27.png)\n### ***Does it mean that I can’t use the Duke Libraries website anymore?***\n\n\nYes and no. You can still visit the Duke Libraries website. However, if you use the Duke Libraries’ search box, you won’t be able to find any printed books/journals and DVDs located at DKU Library from the search results. Also, if you use the Duke Libraries’ “my accounts” feature, you won’t be able to request and renew materials, view your checked\\-out items, or view your fines in your DKU Library account. \n\n\nIf you need to search and use DKU Library collections, you need to switch to DKU Library website and use the search box on it: . \n\n\n### ***Why can’t I find certain materials on the DKU Library website*?**', 'ref_doc_id': 'index.html', 'doc_id': 'index.html', 'file_directory': '/datapool/scrapes/scrape_20240826/dku_website/ugstudies.dukekunshan.edu.cn/fieldtrip-database/genewiz', 'filename': 'index.html', 'link_texts': '["Skip to content"]', 'link_urls': '["#content"]', 'link_start_indexes': '[-1]', 'languages': '["eng"]', 'filetype': 'text/html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:162f4b62-4a85-4d3f-9cd8-62c109d1cf60', 'payload': None, 'score': 67.84771553764907, 'document_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', '_node_content': '{"id_": "162f4b62-4a85-4d3f-9cd8-62c109d1cf60", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "8e6dbcabd46c26dbb166dea4134f6de82e5a098d5f4269ae47105c96aaba6f0b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83982780-9628-405a-ad73-65b5ed63ae34", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 103228, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html"}, "hash": "b9cdfe6a5f315c565061dbf817af96b629304d5c17a960157093d8345cd10c80", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 9122, "end_char_idx": 12339, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': 'Er1$މN>j5a<[#=Hn\rtڼŐ\x0c\x13˼[~T\x01\u07fc\nٸ\x0f$=1<\x08\x1e=C>fcüA\x0fX<\x7f=Q2K}<<>\x15yX켗?=_b\x18=z<=\u0530\x08=\x1bB\x06<\x18/9Z\x1fKs<\x05B<-k<\x18<<ڱ;\x0e)\r=\x13|\x1dڿ2=5F7\x049\x0bK\'2=R<\x17s\x00=˼\x12\x14<\x7f});:\x05=\x158^;8=\x07ݸ+J<\x0f$Y@<\x01D<:\x03o1ub\x03iл)\x0b=?;\x069i-\x7f\x17tں)3=\x01=]P\x17<}X&?3\x1e@8\x0c2\x13=m:K1Yt<~<Ͳü\'O=@\x1d<\'ռ\x06d<\x0bK\'gO$\x1f/\txd09<\x1c<<-<|<"һ4v%\x062D=\u07b8ʼztZ<\x15cAcB5;R\x7f<', 'text': 'dukekunshan.edu.cn/2023-jvu-library-conference/)\n\t\t- [Agenda and Programs](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/agenda-and-programs/)\n\t\t- [Sponsorship](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/sponsorship/)\n\t\t- [Conference Highlights](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/conference-highlights/)\n\t\t- [Call for Proposals (closed)](https://library.dukekunshan.edu.cn/2023-jvu-library-conference/call-for-proposals/)\n\t+ [Distinguished Speaker Series](https://library.dukekunshan.edu.cn/distinguished-speaker-series/)\n\t+ [Events](https://library.dukekunshan.edu.cn/events-list/)\n\t+ [Library Workshops Archives](https://library.dukekunshan.edu.cn/library-workshops/)\n\t+ [News](https://library.dukekunshan.edu.cn/events_news/)\n* [Jobs](#)\n\t+ [Positions Vacant](https://library.dukekunshan.edu.cn/positions-vacant/)\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing the Library\n=================\n\n \n\n\n\n Thousands of printed and multimedia titles at Duke Kunshan University Library are available for the DKU community. Millions of [Duke University Libraries electronic collection items](http://library.duke.edu/) are accessible to DKU users with NetIDs.\n\n\nDKU users have 24/7 access to over 270,000 e-journal titles, over 1,100 databases of scholarly materials, and approximately 2.6 million electronic books through Duke University Libraries.\n\n \n\n\n\n\n\n\n\n* [Borrowing Policies](https://library.dukekunshan.edu.cn/borrowing-policies/)\n* [Equipment Lending](https://library.dukekunshan.edu.cn/equipment-lending/)\n* [Find Item Locations](https://library.dukekunshan.edu.cn/find-item-locations/)\n* [Fine Policy](https://library.dukekunshan.edu.cn/fine-policy/)\n* [Request Materials](https://library.dukekunshan.edu.cn/how-do-i-request-to-hold-an-item/)\n* [Request to Hold an Item](https://library.dukekunshan.edu.cn/request-to-hold-an-item/)\n* [Recall an Item](https://library.dukekunshan.edu.cn/recall-an-item/)\n* [Renew an Item](https://library.dukekunshan.edu.cn/renew-an-item/)\n* [Document Delivery Service](https://library.dukekunshan.edu.cn/document-delivery-service/)\n* [Public Devices](https://library.dukekunshan.edu.cn/public-devices/)\n\n\n\n\n\n\n\n\n\n\n* [Recommend Titles](https://library.dukekunshan.edu.cn/recommend-titles/)\n* [Connect from Off Campus](https://library.dukekunshan.edu.cn/connect-from-off-campus/)\n* [Ask a Librarian](https://library.dukekunshan.edu.cn/ask-a-librarian/)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/10172852/English_08_smal_wh-768x156.png)](https://library.dukekunshan.edu.cn) \n\n\n\n\n\n\n\n\n#### Contact us\n\n \n\n\n\n* (+86) 0512-36658756 (Mon-Fri: 9am-5pm)\n* [dkulibrary@dukekunshan.edu.cn](mailto:dkulibrary@dukekunshan.edu.cn?subject=Inquire%20From%20the%20Library%20website%20)\n* [WeChat](#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQ1OTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D)\n* No. 8 Duke Avenue, Kunshan, Jiangsu Province, China 215316\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n© 2024 Duke Kunshan University 苏ICP备16021093号\n---------------------------------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![](https://newstatic.dukekunshan.edu.cn/dkumain/wp-content/uploads/2021/05/08162103/Library-WeChat-150x150.jpeg)', 'ref_doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'doc_id': '7abc26a3-bdf1-488a-bdcb-9685eb7fb3ea', 'filename': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '103228', 'file_path': '/opt/RAG_data/dku_website/dukekunshan.edu.cn/en/academics/library/using/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}, Document {'id': 'test_doc:98f392c9-636e-4dcb-967a-7757152bb246', 'payload': None, 'score': 66.96360850680638, 'document_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', '_node_content': '{"id_": "98f392c9-636e-4dcb-967a-7757152bb246", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3a2eb1f8-e838-452e-88ef-1875c44ad62f", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 28002, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html"}, "hash": "26dffb406360298feddd4dc9f8c6574720c982cb26ff70427297a617f8cd8795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcf47e79-b21b-41aa-9a66-3252300dcd77", "node_type": "1", "metadata": {}, "hash": "9f9919eb7b5e686c5a4e310f001d4bc400224e2fdabbdb42d81043fecf151f45", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 3969, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'vector': '\x13\rǘ\x1atzͼO\x0evԼ3Cq=\x13\r=\x129=Sx3<ȅ\x0f:l\x16=\t!<;\x04Xp\x08m]\x1a}hռ\x16T\x00\x10d=D=˼\x19=\x19.=;I \x04\x11;8)2=Y$=n;;`_\x14f=#||:̮k#=Eݼ6DE\x05<\x1f=;:u>\x10<\x1bS?\x13\x18<,=>\x06\x82\x18S_\x14漩%\x06;I\t=MF\x06<\x1c\x15<9^\x10m4?F and\xa0 respectively\n* Python and Anaconda, available at [https://www.python.org/downloads](https://www.python.org/downloads/)/ and respectively.\n* QGIS, a free GIS platform: .\n\n\n\n\n#### Data and Visualization Tools Available for DKU Students, Faculty, and Staff\n\n\nDKU Students, Faculty, and Staff have access to a wide variety of free tools and services, including:\n\n\n* ArcGIS Online, available at .\n* ArcGIS Desktop, NVivo, and Microsoft Excel (part of Microsoft Office) available from [Duke Software Licensing](https://software.duke.edu/).\n* Students (of any institution) can gain access to Tableau for free using [this student registration site](https://www.tableau.com/academic/students).\n\n\nMore resources are available in the [Data and Visualization Resources](https://guides.library.duke.edu/c.php?g=981586&p=7287930) page of this guide.\n\n\nTo learn how to make the most of these resources, considering watching tutorial videos such as those [here](https://guides.library.duke.edu/c.php?g=981586&p=7287972).\n\n\nLooking for datasets on which to practice your skills or do research and analysis? Consult the [list of data sources](https://guides.library.duke.edu/c.php?g=981586&p=7097150) .\n\n\n\n\n\n\n\n* \n* [**Next:** Data Analysis and Visualization Resources >>](https://guides.library.duke.edu/c.php?g=981586&p=7287930)', 'ref_doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'doc_id': '3a2eb1f8-e838-452e-88ef-1875c44ad62f', 'filename': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', '_node_type': 'TextNode', 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '28002', 'file_path': '/opt/RAG_data/dku_website/guides.library.duke.edu/dkudataviz/index.html', 'file_name': 'index.html', 'last_modified_date': '2024-06-17'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{14195 total, docs: [Document {'id': 'test_doc:c58a1fff-cd0b-4c27-ae1c-480da7da1711', 'payload': None, 'score': 30.438449353280376, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '239154', 'document_id': '8d06b116-4363-40ef-a4f9-c5073ca91fe8', '_node_content': '{"id_": "c58a1fff-cd0b-4c27-ae1c-480da7da1711", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 239154, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8d06b116-4363-40ef-a4f9-c5073ca91fe8", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 239154, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html"}, "hash": "195e89a15066a273bc9373e0af4b8402789d77f712d61e88daa8ba422106dd58", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "eb578886-8e3d-43ea-a098-e6bdc15eb74c", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 239154, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html"}, "hash": "fd04cced9ab72d48e68ef75f8560444ab26a1dd36cf09e7b045072bb87dc45ab", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "25552133-aab4-4916-9158-7f5585994cb3", "node_type": "1", "metadata": {}, "hash": "989334c4cb26f97fbdf606e9c7f341d9c97607e6b2e7a65d0acf62b919f09f90", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 13372, "end_char_idx": 16598, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/tkb-p/student/index.html', 'vector': 'T\x00f\x01;\x06M{\x01۴mL<\x17<+\'7\x1e:f<&캷s\x7fA!ԻB=\x1e\x0cQ\x07\x1d\x05<;\x15\x02=+\'+<5=\x1e\x13\x0e$b-i =<ţ\x04= \x19<`K\x080\x07;q0\x15Tc=\x1b=8\x07z|\x02<<)=(h\x16=u<^-;\t=\x7fF<~-=o/û!Q=\x037=<\x15k=(/<̊\x16\x08\nbJ<\t#>\x05;<ݻ4O߇<첰x{<~\x1c\x0ċ:4ap\x14F?q-\x06o:G2\x1cx1k\x7f7\x13D\x0f=IV/V;0\x0f<\x06;\x1eTV<̉f~\np<\x15\x15\x0fZ\x13=c8]_\x1b= \x0flV\t~g<\x15\x02\'\n*K=\x085\n˼;?1\x0f=Wż\x0e<?9\x1a\x16\x7f\x0c;\x0cFV\x08<\x16;\x06fN<<5\x05;?:\x1e0v]˿:g\x12=\x19\x02;呼.I`Be0=͟H3T}\x17?;\x07?\x18=B\x1d;yn<\x00<:S-<ה?\x01<Ƶu=\x1dU\'=+l<\x10&~=hȻ;\x16I\x19+f\x00=h\x00*=y/!\x14<Μ=q1\x1c<<\x08^\u05fb"n|s|<]4E/Oh纨_ļv=\x16哼ӻ\r"<;B㼶\x12<\x18!\x14:ʼGA\x1aX<=#VQ3Y!\x10k%\x0bx5\x10<]\x0b=\x10d<*\x0b<\t}\x05[j,fQ\x0b:', 'text': "](/t5/Student-Guide/How-do-I-submit-a-Lucid-document-for-a-Lucid-assignment/ta-p/606359)\n* [How do I submit an assignment on behalf of a group?](/t5/Student-Guide/How-do-I-submit-an-assignment-on-behalf-of-a-group/ta-p/294)\n* [How do I know if I have a peer review assignment to complete?](/t5/Student-Guide/How-do-I-know-if-I-have-a-peer-review-assignment-to-complete/ta-p/318)\n* [How do I submit a peer review to an assignment?](/t5/Student-Guide/How-do-I-submit-a-peer-review-to-an-assignment/ta-p/293)\n* [Where can I find my peers' feedback for peer reviewed assignments?](/t5/Student-Guide/Where-can-I-find-my-peers-feedback-for-peer-reviewed-assignments/ta-p/320)\n* [How do I upload a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-as-an-assignment-submission-in-Canvas/ta-p/274)\n* [How do I use my webcam to take a photo for an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-use-my-webcam-to-take-a-photo-for-an-assignment/ta-p/452365)\n* [How do I annotate a file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-annotate-a-file-as-an-assignment-submission-in-Canvas/ta-p/463702)\n* [How do I upload a file from Google Drive as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-upload-a-file-from-Google-Drive-as-an-assignment/ta-p/499)\n* [How do I submit a Google Assignments LTI 1.3 file as an assignment submission in Canvas?](/t5/Student-Guide/How-do-I-submit-a-Google-Assignments-LTI-1-3-file-as-an/ta-p/587649)\n* [How do I submit a cloud assignment with Google Drive?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Google-Drive/ta-p/491)\n* [How do I upload a file from Microsoft Office 365 as an assignment submission?](/t5/Student-Guide/How-do-I-upload-a-file-from-Microsoft-Office-365-as-an/ta-p/301)\n* [How do I know when my assignment has been submitted?](/t5/Student-Guide/How-do-I-know-when-my-assignment-has-been-submitted/ta-p/277)\n* [How do I manage confetti animations in Canvas as a student?](/t5/Student-Guide/How-do-I-manage-confetti-animations-in-Canvas-as-a-student/ta-p/440)\n* [How do I know when my instructor has graded my assignment?](/t5/Student-Guide/How-do-I-know-when-my-instructor-has-graded-my-assignment/ta-p/276)\n* [How do I submit a cloud assignment with Microsoft Office 365?](/t5/Student-Guide/How-do-I-submit-a-cloud-assignment-with-Microsoft-Office-365/ta-p/299)\n* [How do I view assignment comments from my instructor?](/t5/Student-Guide/How-do-I-view-assignment-comments-from-my-instructor/ta-p/283)\n* [How do I use DocViewer in Canvas assignments as a student?](/t5/Student-Guide/How-do-I-use-DocViewer-in-Canvas-assignments-as-a-student/ta-p/525)\n* [How do I view annotation feedback comments from my instructor directly in my assignment submission?](/t5/Student-Guide/How-do-I-view-annotation-feedback-comments-from-my-instructor/ta-p/523)\n* [How do I view rubric results for my assignment?](/t5/Student-Guide/How-do-I-view-rubric-results-for-my-assignment/ta-p/533)\n* [How do I view my Roll Call Attendance report as a student?](/t5/Student-Guide/How-do-I-view-my-Roll-Call-Attendance-report-as-a-student/ta-p/354)\n* [How do I download assignment submissions from all my courses?", 'ref_doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'doc_id': 'f269e798-b4fa-4375-a450-1fceeafbd955', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-submit-an-online-assignment/ta-p/503/index.html', '_node_type': 'TextNode'}, Document {'id': 'test_doc:7416d197-0829-4ea5-b43a-9e4e9ef49a46', 'payload': None, 'score': 30.438449353280372, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '330610', 'document_id': 'ced893d0-8e67-4097-8ba7-9d32a3656d29', '_node_content': '{"id_": "7416d197-0829-4ea5-b43a-9e4e9ef49a46", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced893d0-8e67-4097-8ba7-9d32a3656d29", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "0d059447b3b5eb04edc33692de03771dde8e788cbcc1b158d3bb497ddc00931b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2d93ed5-c839-415d-842c-03f773ced805", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 330610, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html"}, "hash": "d9bc0fdebb63351211fae98484d4b0452647d3eef789b94ef018774d609878ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3096b47-8086-4548-8bbc-8eb553edc63c", "node_type": "1", "metadata": {}, "hash": "9e776c53d44338f8b60d5f1829df95923f4642f79c283cba26af53dca83dac8d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 12663, "end_char_idx": 15889, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/community.canvaslms.com/t5/Student-Guide/How-do-I-take-a-quiz/ta-p/507/index.html', 'vector': '\x018\x102\x11;Z\x12n\x19,\x1c\x1b\x1e<\nJ\x05=@eX\\\x08=fNg\x0f<@X<\x11<<ĕ<Ѽٻ\x14L=4:Bm|x<:\x03\x1f0<ʻ\x02n6$=i\x0e=m/+\x1e\uef29<#=gh;HZ9p1?w<\x19\x02:pAZ<<\x01\x13XM:,j_@<=\x1b\x1e=\x16Y/ҏ\r<)\x11<ڦz=["´uŻ\x14L\x02=j\\=O\x10{\x1f\x0f%,dA1E{ĕf)<$u<\x0c\r!=e\x0b\x02n<#HZ|[ʺ<<`o}{ѼH\x08\t\x07;u6=Eƺ\x08P=aQ0=\x08r<\x07\\;\x07M=\x04ȇ9\x05\x7f<\x08u\x05/(\x06t5Z\x13<\x08q<Բ\x08:ivV\r\x7fD&j]<\x05\x03<-<\x07U;\x06?<\x05\x0fAۼ\x05$>\x08<\x08H\x08\x07c<;P\x05,$:=\x07Ũ\x12\x04S\t&=\x05\t<\x05h<\x06\x06"?=\x05?#<\x07LiD/\x0eu:\x1b;M\x07S;W^i\r\x1c=\x1biQ\x01=\x0b\x10"\x0e=pY9ZN<"@=f]\x14=Q;;IkA\x0fD˻%\x1cɼ\x0cPS\':s\x17\x03\x13:\x17=\x1dJ4=T<\x07H==0\x0b=\x0f\x16;\x12\x05\x06\x1f\x0fJJ",梅;\x16=z<Ú<0LAza6aʅ=D`Hk&: 4#6=\x16`}݄;:?&<\x03;.\tGW=\n3λO^TCۿ<\x02?=\x0f\x1b("\tb*!\x1b\x01\x1a^;b;Xĺ53\x16<Ú;\x04\x04@$;Q!^\x16k =z\x017<)<\x17[cܻH2=\x11U\x06j\nbuP\x1f(]9\x14c\x1d<\x0c;\rּ\x1dM<\x07ż\x08T<\x0b<\r1@\x05=|ƻr\x02=Ik*<&^9Ӂ<ˇ<μM\x7fHp\x08;`h;\x0c=\x15x\x0175ƻc\t;=6T:7\x14{I;B<6=Ȧ}\x1ek&:EU\x06e.\x18;\x12<.7\x16\x0f\x02a۽ϼ\x18\x05=>?=q<#\\<\x03¼\x12obu:R\x1c*;#=^;З2f9><;t \x18\'lp<>ۿ@zԠ|g\x1f\x05=r;sv~= o`\x12D=?\x17\x1datǒ\r8<\x03\x10;4h\x13^<<"=*=9a\x01\x1c5\x1cוgU\x00Q]\x06e\x07=\x0fM<(ZeML8=PՍ)I(PG=K;[}\x0b{s\x1a=T<\x1c\x15͍9Zoȫs[Rny=ˏ\x06c\u07fc: q{\x0et=p9\x1bt<\x7f?=$19\x12q\r|\'\x16\x00\x03=zh<\x16%߃@dRЌ<2\x1c==sDtK<<ݞg<\x07¼Bɒ\x1bQ(n<.>Lu%<[$1ج?\n\x01=\x12=\x15\x00<\x07B<\x0cZ=o=\x00\x1e]q\x11~z=:;(7d=&<ψtV|=xߦ#+6t<=\x159=Eٻ3mл%\x04Õ;&]>A<2MkHqI\x06Q\x07\x0b\x00.x\x0f\x02"N%<+Uq;\x1cwL]u\x15\x17\\K0<Q\x1e[=qXk<\x02\x0ff;ug\\J~.=wU\x1b,hJ=g<*ҼH\x01:\nx<\x13<\x10\x13&堯<:Ʈ׃\x1aL<\x079NӼ\x01\x16U=i=\x1c+;\x1cp<@\x17yai\x1f`<[?<;?\x1b,*\x07׀=\x14\x16ð<\x0b6=`Լދ\x14$ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈ΡC<\x03=-\x17\t0<C<_\x0e\x10=\x01.<{\x14Kh=G<\x1d\x0c<<;G\x1d<@Uۻۗ/=sl<<3;o.=y<\x1dFsB=X8;;`g<ú/<ݣaɼ|=LΡ\x0eRkֽ\x19<^;^W<4<3Լ\x13\x11>`馔t<ݻ\x1f=W!O2FCB9Z=0\x1c\x02w\x06\rOCB9Z=),<\x0b\x11\x03T&\x13]=y\x04:"<2\x1a\x0eR;a<\x16C=A\x0cG\ue6e5ͼM=`;#<\x0b\x14\x16d\x03PH?=z;q+輀\t<\r;o\x04<\x03:T\x0c<)XPHyл\x1c\x04< X<\x1e̼Ƌ;\x0eR;%6\x08=q+h8#\x7f<\x18"[<\x06\x18=CżV;`J<\x14\x16L݆)\x19\x1c=Z<+=;\x19P\x0e;\x0b\rNd@=B;͈>;\x01\t;\x00\'`Z_؇=8}=\x02;.<\n=;\\5\x16:\x01a"KT<$YӼS=[;"=K9+^;\'ƼTWV\x13:},,=S\x1d<\x02>\x12;@2Fs˺:(=sμWǻ+w\x1c\x12=|~mc;,7<\x0b<;<\x00\x08Ҽ fMv=̼RP\x11\x06\x15L<2hh\x14<8<\x12;Z<9\x07;\x00\'Z4\x1b<@2bCÁoe:\x15\x1d\x1e<*\x12\x0bt<5@g<\';pu<<瞻s\x16\x1a\x17g<%KN<2=c>< <;}<\x18E\x121=)=xm=#;O*\x7fF\x05\x15;=~t\x1d\x1b=U\x15O;\x14\x10\x1cSV<', 'text': 'Membership Information\n----------------------\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n* [Membership Information](https://athletics.dukekunshan.edu.cn/sport-complex/membership-information/)\n* [Facilities](https://athletics.dukekunshan.edu.cn/sport-complex/facilities/)\n\n \n\n\n\n\n\n\n\n Programs and Services \n\n\n\n\n\n\n\n\n* [Open fitness classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#fitclass)\n* [Spinning and rowing classes](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#spinning)\n* [Personal training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#pt)\n* [Boxing](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#boxing "Boxing")\n* [Stretching and rolling sessions](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#rolling)\n* [Rehabilitation & recovery training](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#recovery)\n* [Sport Massage](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#massage)\n* [Free bicycle rentals](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bikerental)\n* [Swimming Lessons](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#swim)\n* [Climbing Wall](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#climb)\n* [Body composition assessment](https://athletics.dukekunshan.edu.cn/sport-complex/programs-and-services#bodycom)\n\n \n\n\n\n\n\n\n\n\n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n* [Hours](https://athletics.dukekunshan.edu.cn/sport-complex/hours/)\n* [Rules and Regulations](https://athletics.dukekunshan.edu.cn/sport-complex/rules-and-regulations/)\n* [Become a Member](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/)\n\n \n\n\n\n\n\n\n\n\n\n\n\nIf you’d like to take control of your health and wellness, you have all the resources you need right here on our campus. As a member of the DKU Sports Complex, you will have access to a range of facilities, motivational programs, activities, and services, with experienced and enthusiastic staff providing personalized attention. Our goal is to provide our members with the tools to learn and enjoy their health and wellness journey.\n\nMembership is currently available to all DKU students, staff, faculty, and family members. We also soon hope to invite alumni and local Kunshan community members to join us.\n\n**For the fall semester, all students, staff, faculty, and their family members can register for a free membership, which includes access to available sports and activities as well as free access to open fitness classes. Starting in the spring semester, staff, faculty, and family members will have several membership options that can be tailored to individual preferences.**\n\nMembers must be 18 years or older to be eligible for membership. DKU students younger than 18 are eligible for a membership with a waiver signed by their parent or legal guardian.\n\nAnnual memberships expire at the end of the academic year, regardless of the date of purchase. Memberships starting later in the academic year will be prorated monthly. The subsidized amount of a membership cannot be refunded. Minimum 30-day advanced notice is required for all membership cancellations.\n\nTo join DKU Sports Complex and enjoy all our amazing resources, simply complete a\xa0[membership application](https://athletics.dukekunshan.edu.cn/sport-complex/become-a-member/).', 'ref_doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'doc_id': '56ba59e8-d26f-49f9-bc18-da1e53d8a58d', 'file_name': 'index.html', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/athletics.dukekunshan.edu.cn/sport-complex/membership-information/index.html', '_node_type': 'TextNode'}]}Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token -Failed to export batch code: 401, reason: Invalid token - -Result{20008 total, docs: [Document {'id': 'test_doc:1b337161-c7dc-4187-8ccf-3216e1888323', 'payload': None, 'score': 6.2373150376624285, 'creation_date': '2024-06-17', 'file_type': 'text/html', 'file_size': '611475', 'document_id': '83133584-69fb-4093-81b0-4d216b1fdb99', '_node_content': '{"id_": "1b337161-c7dc-4187-8ccf-3216e1888323", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 611475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "83133584-69fb-4093-81b0-4d216b1fdb99", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 611475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html"}, "hash": "6264135d87641ed5a731ba76da73217eb838a32f4c01f1377695b6dbca03b72c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "179d8009-ba26-4fad-9e43-77d59c18092b", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html", "file_name": "index.html", "file_type": "text/html", "file_size": 611475, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html"}, "hash": "3d598837f30165723eebde6b1cb97e0ed2bd175e3457462917d16389a2a59d59", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "24f686ec-c411-4034-a05e-bb401fcca399", "node_type": "1", "metadata": {}, "hash": "7298c2291e23705fb8b67fbbdcd046d9fe6f0bd606187828dad357bb235679d3", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1192, "end_char_idx": 4820, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/mp.weixin.qq.com/s/34DbqSNzOW1TZq--gAg4zQ/index.html', 'vector': 'FV73<{a8R+\x14ڼ5:^i$"NQh;gq\x15<;2;\x1b_=4n탪;X/\x086\x1d4\U00082f08y<[\r:ŀ\'\ue17dʢ ļuh2<ě;e\x1e){W\x16w;){\u05fc<*!|\x1c^Bɼٺ\x15<8;#b.\\\x0b~M\x0fڼ.<\x18\x17MU\x06=o<<==P9\x16w{ag=҇;`\'\\=%to\x14~$<ðB={\x15b<\x1aʿ:j<\x08\nKi;H=)&=G\x10UN<\x07B=E\x03H:b\x05\x161ֻ\x1fu<U;\x0fr;נ?>q \n\x19\x06<\x18T<\x12\x1f=r\x06=\\\n\x0e\ue188N̼RƼ5J<\x0e0̟\x06\x00K=$x&\x00\x19%\t:^\x17=\x1d숻\';༏6;A\x15a\x1f<<~<\x1f<0_e>\x0fs7T;\x1b(U\u07fcR˄\r9<=aҬ<\x17\x13\x04ς[i\x02YG\x11yA=\x0b̉f5=s"\x1c<7<Lj\x12y輙5v_8o6e;gP\x07\x18s7(=Ҭ;\x07.ٹ<\x0c\x1c<\x1b(h=6\x0b\x04p:\u07fb\x1c>=F=6\x0ba^;B8<-Sog<>$K>\x1d`(:4\na;\x1f=$x\x14*6M=\x0c\x08XX;\x10ym\x18k=S\x04;\x14==\t\n<\x02L9\u07bcA\x155ʔSX \x19Y\x07,S469;\ta<4eJ#<^\x17\\мb!\x01ۻ|)=V8;\x0c\x08=ҀΠR<č<\x1cΠ<\x0foI\x1e=eF\x03\x02=Y̟*f|\x7fN=A\x15=1"#b\x0e=O<=oѽw\x11<<\x18(=\x08`L6ۼP^ּ7\x10Gp\x1d\x1bm<<֢<.G\x10d\x18=ɼ^⇼oѼMȺz۩;ź]D:]=\x00\x18;B;#\x10=N\'\x1a8\x19`_NV@=igoo;\x08<\x1e2<\x07\x13<5%:;.\x0bpD<\x0e_:\x12e5@6Y:\x04J=\x17gB\x01s\x19=bݍ\x1a,\x11J(;\n;WG<\x1f!\x0cr<=\x17\x11\x16\x0c%\x07\x14>w;5%\x1e5;ka\x19E\'m\x15.G;/26P{"=.\x0bp=M(Я\u05fc9=8\x12=><ͮe\x02=.h;\'uD(?=u<*\t?\x02=a|(o;QK\\<\x13`3ļ:l+?\n:\x16\x14<3:ɖ\t켏H=r\x19`=y;j\x0fD\x04,1\x19J\x1c\x11<;պ\'\x08<}u<%\x0c%L+Jpx?={H<\x02W<5:\x15ּx\x0cW\x13=摽V\nʺ=~ %T&=k\x1a\x1d;\x1a;:ē^=?P93\x15<@\x07mfZ:OػCw\x15ݲ<>-έ r7Y;PI^\x05\x10<5<(ȉ;:̡_\x1d=\x04\n=@1ż\x1eQdT<\x15%=D<\x1cU\x19=\x18T\x01;cg=\x10tA\x10&\nH.:Bk;w;\x0f<&\x13~\x0eX\x1e\x02=v=>m3Qoϓ\\\t<{l\\T=¼ r7g=\x01>A|1C\x133V|]Z=v=>)Ye+<\x1et<`\x05\r<~\x10=l\x17\x01<6jbu<証\x010\x19N<`P\x04=@T\';[AR\x1ca6\x17\u05fc2<:Uy;(|<\x18Z<+oqJ1\x1a\x16\x1ch^B+ZH<<,<5V=\x07+9j<;\x1e:d\x10>ɏ;\x02[=Ӈ<\x1eoɦ;V\x0f.X\x1eh?=\x1fJ\x12/=\r;;`<,M\x00;1\x1e7\x07^10<\n\x7fTIv=\x18Y\x16\x18;W0^=\x1c\x19<\x13\x0f<$\x0bZ\x00\n<.<6z<_<=\x0cW<9\x0eQ=n\x19<\x1c1=+_<0=o=\x0c\x00a{:{:k\x03"ȵԼw{b\x1e=\x1eʼ\x19>90\'2<,UY<ƸzJ@\x19m\x15=aC\rRϼh\x0bւ\x17=<\x05=\x19LF\x17#<3=B\x1e{\x06Kʌ=c=\x08=$\x1b06\x01=\x08F\x16r\x0e\x1a|=I\x19<;#\x08-]%\x0374\x04\x1b;(cM8=\x08=#t\x1f\x12k<\x0f\n\x06v8\x18X<-(2\x02̈<6;dv<2TI<2==\x10)༃r\x0e.8\x0c〼\x1e=Queᖻ\x08\x17컅\x14==\x03<\x0c\ued3cJP\x15<,%\x12ѕ3Һ<컼<\t\x193ȼ{;[^ORVדg$~<7=\x04_=<\x12sFƇ{G<\x16r;͙Pɼk\x16-\x7f\x13R6==ס\x13\x05\x186;ȍ\x158\x05YzhPI*\n\x01{<ۨ\x18=<\x01]6^s\x02\u07b9Sk<潆:T\u07bc\x1fl=؛<$\x1aY=p=TX+&\x05%\x0e\x17<$\x14uM<-\x00c\x0ev\x0bX($5<07=4<\x15;*G=,\x112Z\x02=#\x102Z<:@:9͙\x02:Yd\'<ȍ\x15;)=υۥ,=e\x1eQ%:,E;5\x10==9<֙?s\x1e\x0fclC<.LBU;=\x13=\x08=#\x10ѻ:2=clC=\x1a<\x07i;~;`j<\tk3\x1d鼡=\x1b<\x15\x18;?L!OT,=<\x1bnz\x1f', 'text': 'Themes will include: accountability, mechanisms, participatory institutions, transparency reforms, control of corruption, economic regulation, and bureaucratic efficiency.|Instructor: Malesky|3 units|\n|752|What Machiavelli Really Says| |3 units|C-L: see Italian 743; also C-L: Literature 743, History 743|\n|758|Workshop in Political Economy I|Research workshop in political economy. Content of the workshop continues in Political Science 759.|Instructor: Staff|1 unit|\n|759|Workshop in Political Economy II|Research workshop in political economy. Students must complete Political Science 784 before taking this course.|Instructor: Staff|1 unit|\n|760S|Core in Security, Peace and Conflict (SP)|Critical survey of theories and research in security and conflict at the international, transnational, and subnational levels. Emphasis will be placed on the interrelation between theory and research.|Instructor: Staff|3 units|\n|761|Islam and the State: Political Economy of Governance in the Middle East|Introduction to political history of Middle East from the advent of Islam to modern era. Examine institutions responsible for characteristics of political development in the region; consider selected cases relating to mechanisms of political development, including democratization; investigate religion’s role in shaping the region’s political trajectory; identify social forces, especially economic, driving contemporary rediscovery and reinterpretation of Islam’s political organization and requirements, by both Islamists and secular political actors.|Instructor: Kuran|1 unit|\n|762|The Political Economy of Institutions| |3 units|C-L: see Economics 751|\n|763S|Foundational Scholarship in International Relations|Seminar producing firm grounding for graduate students in several key research programs in the field of International Relations. Examination of foundational books and, in some instances, articles, and follow-on works, representing core elements in International Relations, including international structuralism (realist and liberal), the impact of domestic institutions and world politics, the role individual group psychology in foreign policy, and recent IR work employing constructivist international theory. Students will write essays on each research tradition with the goal of identifying plausible questions they could pursue in larger research papers.|Instructor: Grieco|3 units|\n|764S|Political Economy of Corruption and Good Governance|Seminar focuses on corruption—the abuse of public power for private gain—as a generic research question and practical policy problem. Reviews the theoretical and empirical analyses by economists, political scientists, and policy analysts that attempt to sort out systematically corruption’s underlying causes, global distribution, and consequences for growth, investment, government expenditure, income distribution, and regime support. Examines what the literature implies about the desirability and prospects for success and prescriptions, if any, for hurrying good governance along. Open only to graduate students in political science.|Instructor: Manion|3 units|\n|773|Workshop in Security, Peace, and Conflict I|Research workshop in security, peace and conflict. Content of the course continues in Political Science 745.|Instructor: Staff|1 unit|\n|774|Workshop in Security, Peace, and Conflict II|Research workshop in security, peace and conflict. Students must complete Political Science 744 before taking this course.|Instructor: Staff|1 unit|\n|788|Workshop in Normative Political Theory and Political Philosophy|Research workshop in normative political theory and political philosophy.|Instructor: Staff|1 unit|\n|789|Workshop in Normative Political Theory and Political Philosophy II|Research workshop in normative political theory and political philosophy. Students must complete Political Science 701 before taking this course.|Instructor: Staff|1 unit|\n---\n# 790S. Seminar for Teaching Politics Certificate Program\n\nThis course focuses on the problems and special techniques of teaching courses in political science. It meets as a weekly seminar, and brings in faculty from the department to add their perspectives on syllabus design, the large lecture, leading discussions, teaching writing through long papers and short memos, guarding against plagiarism, and other topics. Instructor: Munger. 1 unit.\n\n# 791S. Thesis Writing in Political Science\n\nProvides an overview of the major sections of a research paper, including the introductory frame, literature review, theoretical argument, research design, discussion of the results, and conclusion.', 'ref_doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'doc_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', 'file_name': '2020-2021-Graduate-School-Bulletin_0.pdf', 'last_modified_date': '2024-06-17', 'filename': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', '_node_type': 'TextNode'}, Document {'id': 'test_doc:110a63df-8b02-4822-b4a9-617ebfd42f5a', 'payload': None, 'score': 162.5766867499445, 'creation_date': '2024-06-17', 'file_type': 'application/pdf', 'file_size': '6645174', 'document_id': 'dd7f0c53-1347-4691-98f6-e076476a51b7', '_node_content': '{"id_": "110a63df-8b02-4822-b4a9-617ebfd42f5a", "embedding": null, "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dd7f0c53-1347-4691-98f6-e076476a51b7", "node_type": "4", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "6e2e656231658069492d960f561a03ec798a678c5ee5097d84839edb6f412771", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc1f8a7f-baaa-4dbb-b662-57f13800fc6d", "node_type": "1", "metadata": {"file_path": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf", "file_name": "2020-2021-Graduate-School-Bulletin_0.pdf", "file_type": "application/pdf", "file_size": 6645174, "creation_date": "2024-06-17", "last_modified_date": "2024-06-17", "filename": "/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf"}, "hash": "42c284bcff1c342571f19d5285c5bdf0c3c2d95e0c64042007d2e2532fa12fcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44f66e02-b2b9-4265-99c9-08ed4732fef3", "node_type": "1", "metadata": {}, "hash": "297fe55bd95dc0e162681bb957aa6d46eb3c30c959b454474a848f22dc63074d", "class_name": "RelatedNodeInfo"}}, "text": "", "mimetype": "text/plain", "start_char_idx": 1601297, "end_char_idx": 1605766, "text_template": "{metadata_str}\\n\\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\\n", "class_name": "TextNode"}', 'file_path': '/opt/RAG_data/dku_website/graduate-program.s3.cn-north-1.amazonaws.com.cn/wp-content/uploads/2021/03/04151337/2020-2021-Graduate-School-Bulletin_0.pdf', 'vector': 'B\x03sL͜\x13珼|&&a\x11y#攽^\x01U<ր<$*4<~1<\x0b=muy6\x14q\x01V}A=-o<`DF}ֻg$9NHӻ_0==\\v:(<;\x0bf;H&-;U=;,Im5=j\x0c\x13\x0b\t%ȼ\x17fO=i\x17<׳\x15ż<\x1a=(ϴOj\x05\x7fFpn=!51\x1968;<,LO;h\x1c=\x0c\x04=v>SU\x19U*\x16\x07<\nL퇼b<$*<\n2:D%=\x18<\x13=`^[\x11\u05cf(=GЯ<\x00\x0e\x18=ӺuRD3Uﵼ~\x06\x1b;\x06^r<\x05خk80RR\x16\x1eDf*=@\x04[!.G+QrmS/?.\x1d<0\x16\x0c^\x12%}\r0;q\x1a<#\x1a=Z;ILM#\x1b=7A{\x15F\x11\x03%jN\x1dƼy\x0e<\x06MM@b\x12-;^K\x16љ;x3ջ/C|\x12~4\x08o>s\x13=d#к=\'*\x0bi\x04Kk<2=%<\t>;|\x16\x1b;xC;\x1cޚ߷\x05\x10=\x08˼\x05O;\x12W y\x16\x1468=I\x17kFo;!=6V9=\x1e<ӔB+½K+=[ɧB2<\x1bͼ\x12\x1a\x10\x04<`x\r<*=\r>d%nݴX\x1b;<\x04\x039d!dS.=u<0\x01n!;J\x13=BV;_<&h*[<\x04G<\u07bfi^-;[V_\x00YW;&\x14<89+\x08Y;1<Ȃs\x1eVb<1=c<\x15_t<Ӭ1=\r]<6}\x07=8:\x04\x039=V2o<%\x08eL\x04;oހ<9d\x06\x1b=*o}Ӭ e.=\x17,=}>\x13%\x12\x02+;\t숼1\x08 xu\x14#3<}.\x10\t\x1e<4<¼:;\u07bfo>=$=4q\x01Vʼn<\x12\x1cGļ|¼6ԊGwmWOn4<ݒ5<ڞ;V(M\x0f<\\=\x13<\x17`;ox\x7fW\x03\x17Y<Ŀ<0;Y\x01\x02K=\x11M03?\x02`ʼ\x0f\x14D54?\x02a<9:=^¼<\x0b=ph+˼9#<\x0b\x1aE7m4;R=c4\x1dj:M=៲<{<&x9ovռc\x0fW=\x19\x12v\x04R%<@\r\x07yig\x18%v<\x17#]!<ۺ=ł\x0b;-N]<\u038d={mI=!AֻM\x10b;<\x03z<]\x03\x00,8ʼJ|\\Y7-\x05N\x17=\u038d;:Ka\'=y\x1d]4;z\u05f7]4\u05fc.h=rb;^A<\x1a\x18V=\x14\x00\x1a:\x1c\x16\x03ü\x03C*~Y?\r\x08h8\x16S\x7f=_7\x00=i\x0f-\x7fR\x03\x0b<\x16\x10¼Q\x7f5{g@;\x05F=t<C<4&<\x7f*<&ǼԴź\x0bO0ጸ|}\x047KTü+=Y<2O:<;;_o\u05fcu;HZkIk\x1d\x07=\x05\x1d<-t><)\x1f-6=\x05\x07=S\x15^=\x1d<\x04\x1425<=^\x02Լ"c;c\x01:*~;\x03C;B)<<41u<<;TC39=U\x1a"\x15*\x01A;\x17$\x16ZE.ơർP\x0b!\x11=\\<ۼ\x0f=\x1aVT-= =^;\x0e\x04(\x1f\x10;=\u05c8=Q;P\x0b\x05=*\x0cNc<\x0c\x04<Ļ.=-x\x10\x11"\x08QƷս>\x1a=\x1b*\x0c<\x16S\x7f=\x0c<.\x18\x04O<\x11n+iN(\x10,=Z\r\x03\x04=\x0c\x14q7Dԣ\nP漏2\x1886<\x10~ٿ*~Y"e%:\x02ͻ*=\tJ;\x17\x1b(=6R=J]<;s<\x1c\x1a\x07\x0e~*\x7f=ԫLE_)<öH;2a;Gz\x14=L/ؓ\n<7ļ\tû\x0fUA\x0e<\x17\\4n=?\x16!\x13<\x1e\x1bgWv(\x19%;\rR=ͫ;i\x0f/ؓޗ\x04\x0f Date: Thu, 16 Apr 2026 12:41:38 +0800 Subject: [PATCH 07/22] Ignore CSV files --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 9ef164cf..e11a806b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,9 @@ .idea/ .vscode/ +*.CSV +*.csv + # Embeddings cache pipeline_cache # Byte-compiled / optimized / DLL files From eb194a60b9d6a72e60374441b1a3bb4e4ba045a4 Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Thu, 16 Apr 2026 12:46:34 +0800 Subject: [PATCH 08/22] added thefuzz and pymupdf4llm to toml and added a few reasons to the toml --- pyproject.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bf81bcea..6e2a9fb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,6 +42,7 @@ dependencies = [ "llama-index-readers-file~=0.6.0", "nltk>=3.9", "chromadb~=1.0.15", + "redis~=5.2.1", "arize-phoenix~=13.21.0", "arize-phoenix-evals==2.13.0", "opentelemetry-api~=1.41.0", @@ -53,16 +54,19 @@ dependencies = [ "tokenizers>=0.21.0", "docx2txt", "python-pptx", - "pymupdf", + "pymupdf", # for major ingestion + "pymupdf4llm", # needed for pdf -> md + "thefuzz", # for fuzzy searching major names in major ret "python-docx", "pdfplumber", - "redis~=5.2.1", "psycopg2-binary>=2.9.10", "pandas~=2.2.3", "dotenv>=0.9.9", "sqlalchemy", + # Development dependencies "pytest", "pre-commit", + # TUI "textual>=0.83.0", "pyfiglet>=1.0.2", ] From 4897198f051621094756ac8770a281859cfaf0d6 Mon Sep 17 00:00:00 2001 From: "Anar.N" Date: Thu, 16 Apr 2026 14:30:17 +0800 Subject: [PATCH 09/22] feat(225): agentic course recommendations with policy-aware planning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## CourseRecommender tool (chatdku/core/tools/course_recommender.py) [NEW] Adds a deterministic Python tool that replaces 20+ individual executor iterations with a single structured call. Given a student's major and completed courses, it: - Fuzzy-matches the major requirements Markdown file (reuses _best_match) - Parses course codes from both major and common-core requirement files - Computes remaining required courses by diffing against completed set - Batch-checks schedule availability against cleaned_classdata.csv - Checks prerequisite satisfaction for each offered course using the DKUHub prereq CSV, with anti-requisite stripping and OR/AND logic - Returns a grouped Markdown report: recommended, eligible-but-not-offered, prerequisites-not-met, and no-schedule-data sections Key fixes during development: - Schedule CSV uses Mon/Tues/Wed/Thurs/Fri + Mtg Start/Mtg End columns (not Days/Start Time), discovered by inspecting the real server CSV - GLOCHALL added to _KNOWN_SUBJECTS (missing subject code) - Anti-requisite course codes were being treated as prerequisites; fixed by splitting prereq text at "Anti-requisite" before extracting codes - Integer Catalog column breaks .str accessor; fixed with .astype(str) ## major_requirements.py — fuzzy match threshold Adds _MIN_MATCH_SCORE = 40 to _best_match so that queries with no meaningful overlap (e.g. "astrology") return None instead of a spurious low-confidence match. ## Executor: dynamic agenda accumulation (executor.py) The Executor was strictly plan-following; it now supports on-the-fly agenda extension as tool results reveal new requirements: - Renames plan → current_agenda in AssessSignature and _ActSignatureBase - Adds agenda_extensions output field to AssessSignature so the assessor can report newly discovered investigation areas (e.g. a policy document names a mandatory course not in the original plan) - forward() accumulates extensions into current_agenda each iteration; all subsequent Assess and Act steps see the full extended agenda - Distill step receives the final extended agenda, not the original plan - get_token_limits() accepts both current_agenda and legacy plan= kwarg for backwards compatibility with the agent.py call site - Token ratios updated: current_agenda gets 3/16 in act (was 2/15 for plan) to reflect that the agenda can grow ## Planner: policy-first course planning (plan.py) The Planner previously instructed the Executor to call individual requirements/schedule/prereq tools. Updated to: - Require policy retrieval FIRST (VectorRetriever or KeywordRetriever) to surface year-specific mandatory courses before calling CourseRecommender - Instruct CourseRecommender as the single baseline tool for eligibility - Add a full schedule planning demo (Class of 2027 Data Science student) showing the policy-first → CourseRecommender → agenda extension flow ## agent.py — tool registration and config fixes - Registers CourseRecommenderOuter in build_agent() with paths from config - Raises default max_iterations from 3 → 5 (policy retrieval + CourseRecommender + potential agenda extensions need the headroom) - Fixes get_token_limits() call to pass current_agenda="" (not plan="") to match the renamed Executor field ## config.py — None-safe DB password quote_plus(db_password) raises TypeError when DB_PASSWORD env var is unset. Fixed to quote_plus(db_password or ''). ## devsync.sh — shared secrets verification Removed the ~/.env symlink logic, which was misleading: credentials are injected via /etc/profile.d/chatdku.sh for chatdku_devs group members, not through a .env file. Replaced with a REDIS_HOST presence check that points developers to add_user.sh if secrets are missing. ## pyproject.toml Adds thefuzz>=0.22.1 (used by major_requirements.py for fuzzy matching). ## Tests (90 tests, all passing locally and on server) - tests/test_course_recommender.py [NEW]: 28 tests covering parse_course_codes (9), prerequisites_met (7), full recommendation pipeline scenarios TC1-TC7 (7), and infrastructure/span tests (5) - tests/test_agent_configuration.py [NEW]: 11 structural tests verifying Planner instructions require policy retrieval before CourseRecommender, AssessSignature has agenda_extensions output, current_agenda field naming is correct, and max_iterations default >= 5 - tests/conftest.py: adds sample_classdata_real_csv fixture with actual server column layout; patches course_recommender.span_ctx_start - tests/test_major_requirements.py: removes imports of _jaccard and _tokenize which were replaced by thefuzz --- chatdku/config.py | 2 +- chatdku/core/agent.py | 13 +- chatdku/core/dspy_classes/executor.py | 102 +++-- chatdku/core/dspy_classes/plan.py | 44 +- chatdku/core/tools/course_recommender.py | 488 +++++++++++++++++++++++ chatdku/core/tools/major_requirements.py | 13 +- devsync.sh | 17 +- pyproject.toml | 1 + tests/conftest.py | 53 +++ tests/test_agent_configuration.py | 166 ++++++++ tests/test_course_recommender.py | 472 ++++++++++++++++++++++ tests/test_major_requirements.py | 47 +-- 12 files changed, 1318 insertions(+), 100 deletions(-) create mode 100644 chatdku/core/tools/course_recommender.py create mode 100644 tests/test_agent_configuration.py create mode 100644 tests/test_course_recommender.py diff --git a/chatdku/config.py b/chatdku/config.py index 39946982..d04ddcbe 100644 --- a/chatdku/config.py +++ b/chatdku/config.py @@ -55,7 +55,7 @@ def _initialize_defaults(self): db_host = _env("DB_HOST") db_port = _env("DB_PORT") db_name = _env("DB_NAME") - psql_uri = f"postgresql://{db_user}:{quote_plus(db_password)}@{db_host}:{db_port}/{db_name}" + psql_uri = f"postgresql://{db_user}:{quote_plus(db_password or '')}@{db_host}:{db_port}/{db_name}" self._store.update( { diff --git a/chatdku/core/agent.py b/chatdku/core/agent.py index 9c50b222..4566973e 100755 --- a/chatdku/core/agent.py +++ b/chatdku/core/agent.py @@ -3,6 +3,7 @@ import os import sys import traceback +import pyfiglet # Must be set before `import dspy` — prevents litellm from fetching the remote # model pricing database at startup (cuts ~40s off cold-start time). @@ -17,6 +18,7 @@ from chatdku.core.dspy_classes.executor import Executor from chatdku.core.dspy_classes.plan import Planner from chatdku.core.dspy_classes.synthesizer import Synthesizer +from chatdku.core.tools.course_recommender import CourseRecommenderOuter from chatdku.core.tools.course_schedule import CourseScheduleLookupOuter from chatdku.core.tools.get_prerequisites import PrerequisiteLookupOuter from chatdku.core.tools.llama_index_tools import ( @@ -112,7 +114,7 @@ def _forward_gen( # These limits are for compressing both tool and conversation memory. # Uses the executor's token limits as the executor has the largest context needs. limits = self.executor.get_token_limits( - plan="", + current_agenda="", current_user_message=current_user_message, conversation_history=self.conversation_memory.history_str(), trajectory=format_trajectory({}), @@ -196,7 +198,7 @@ def forward( return i -def build_agent(streaming: bool = True, max_iterations: int = 3) -> "Agent": +def build_agent(streaming: bool = True, max_iterations: int = 5) -> "Agent": """Configure DSPy and return a ready-to-use Agent instance.""" setup() use_phoenix() @@ -240,6 +242,11 @@ def build_agent(streaming: bool = True, max_iterations: int = 3) -> "Agent": QueryCurriculumOuter(), PrerequisiteLookupOuter(prereq_csv_path=config.prereq_csv_path), CourseScheduleLookupOuter(classdata_csv_path=config.classdata_csv_path), + CourseRecommenderOuter( + requirements_dir=config.major_requirements_dir, + classdata_csv_path=config.classdata_csv_path, + prereq_csv_path=config.prereq_csv_path, + ), ] return Agent( @@ -289,6 +296,8 @@ def _main_interactive(): agent = build_agent(streaming=True) + pyfiglet.figlet_format("ChatDKU", font="slant") + while True: try: print("*" * 10) diff --git a/chatdku/core/dspy_classes/executor.py b/chatdku/core/dspy_classes/executor.py index 87ada2d3..4e39a549 100644 --- a/chatdku/core/dspy_classes/executor.py +++ b/chatdku/core/dspy_classes/executor.py @@ -27,19 +27,25 @@ class AssessSignature(dspy.Signature): You are evaluating the progress of an information-gathering task for Duke Kunshan University (DKU). - Given the plan and the tool results collected so far (trajectory), determine: - 1. What information from the plan has been successfully gathered. + Given the current agenda and the tool results collected so far (trajectory), determine: + 1. What information from the agenda has been successfully gathered. 2. What information is still missing or insufficient. - 3. Whether you should continue gathering information or finish. + 3. What NEW investigation areas have been REVEALED by the tool results so far + that were not in the original agenda — for example, a retrieved policy document + mentions a mandatory course, or schedule data reveals an unmet prerequisite chain. + 4. Whether you should continue gathering information or finish. - Choose "continue" if the plan has unfulfilled steps that the available tools - can still address. + Choose "continue" if the agenda has unfulfilled steps OR if newly-revealed areas + warrant further investigation. Choose "finish" if you have gathered enough information to answer the user's - question, OR if the remaining gaps cannot be resolved with further tool calls. + question, OR if remaining gaps cannot be resolved with further tool calls. """ - plan: str = dspy.InputField( - desc="The plan describing what information to gather.", + current_agenda: str = dspy.InputField( + desc=( + "The current investigation agenda: the original plan plus any extensions " + "discovered during execution." + ), format=lambda x: x, ) current_user_message: str = dspy.InputField() @@ -52,9 +58,16 @@ class AssessSignature(dspy.Signature): assessment: str = dspy.OutputField( desc=( - "Brief analysis: (1) what information has been gathered so far, " - "(2) what is still missing from the plan, " - "(3) whether the missing information can be obtained with available tools." + "Brief analysis: (1) what has been gathered, " + "(2) what is still missing from the agenda, " + "(3) what new areas (if any) were revealed by the results." + ), + ) + agenda_extensions: str = dspy.OutputField( + desc=( + "New investigation areas revealed by the tool results that are NOT yet " + "in the current agenda. Describe each as a short action phrase. " + "Leave empty if nothing new was discovered." ), ) decision: str = dspy.OutputField(type=Literal["continue", "finish"]) @@ -63,8 +76,13 @@ class AssessSignature(dspy.Signature): class _ActSignatureBase(dspy.Signature): """ You are an Executor Agent for Duke Kunshan University (DKU). You have been - given a plan and an assessment of what information is still missing. - Your job is to pick the best tool to call next to fill the identified gaps. + given the current investigation agenda and an assessment of what is still missing. + Your job is to pick the best tool to call next. + + You MUST pursue the full current agenda — including any extensions discovered + during earlier steps — not just the original plan. If the assessment reveals + new requirements (e.g., a policy document names a mandatory course), investigate + those before finishing. Useful facts: - Available subject codes: DKU, GERMAN, INDSTU, JAPANESE, KOREAN, MUSIC, SPANISH, @@ -87,8 +105,11 @@ class _ActSignatureBase(dspy.Signature): query, try a different tool). """ - plan: str = dspy.InputField( - desc="The plan describing what information to gather.", + current_agenda: str = dspy.InputField( + desc=( + "The current investigation agenda: the original plan plus any extensions " + "discovered during execution. This is the full set of things to pursue." + ), format=lambda x: x, ) current_user_message: str = dspy.InputField() @@ -207,20 +228,20 @@ def __init__(self, tools, max_iterations=5): self.distiller = dspy.Predict(DistillSignature) self.assess_token_ratios: dict[str, float] = { - "plan": 3 / 12, + "current_agenda": 3 / 12, "current_user_message": 1 / 12, "conversation_history": 2 / 12, "conversation_summary": 1 / 12, "trajectory": 5 / 12, } self.act_token_ratios: dict[str, float] = { - "plan": 2 / 15, - "current_user_message": 1 / 15, - "conversation_history": 1 / 15, - "conversation_summary": 1 / 15, - "chatbot_role": 2 / 15, - "trajectory": 4 / 15, - "assessment": 2 / 15, + "current_agenda": 3 / 16, + "current_user_message": 1 / 16, + "conversation_history": 1 / 16, + "conversation_summary": 1 / 16, + "chatbot_role": 2 / 16, + "trajectory": 4 / 16, + "assessment": 2 / 16, } self.distill_token_ratios: dict[str, float] = { "current_user_message": 2 / 10, @@ -234,6 +255,9 @@ def __init__(self, tools, max_iterations=5): def get_token_limits(self, **kwargs) -> dict[str, int]: """Return token limits using the actor's ratios (tightest constraint).""" + # Ensure current_agenda is present (agent.py calls this with plan="") + if "current_agenda" not in kwargs and "plan" in kwargs: + kwargs["current_agenda"] = kwargs.pop("plan") template_len = len(get_template(self.actor, **kwargs)) return token_limit_ratio_to_count(self.act_token_ratios, template_len) @@ -249,6 +273,10 @@ def forward( conversation_summary=conversation_memory.summary, ) + # current_agenda starts as the original plan and grows as the Executor + # discovers new investigation areas from tool results. + current_agenda = plan + trajectory = {} with span_ctx_start("Executor", SpanKind.AGENT) as span: span.set_attribute("agent.name", "Executor") @@ -258,11 +286,9 @@ def forward( ) for idx in range(self.max_iterations): - formatted_traj = format_trajectory(trajectory) - - # Phase 1: ASSESS + # Phase 1: ASSESS against the current (possibly extended) agenda assess_inputs = { - "plan": plan, + "current_agenda": current_agenda, **shared_inputs, } assess_inputs = truncate_tokens_all( @@ -277,14 +303,25 @@ def forward( except ValueError: break - trajectory[f"assessment_{idx}"] = assess_result.assessment + # Record assessment; append any agenda extensions into the trajectory + # so future iterations can see what was discovered. + assessment_text = assess_result.assessment + extensions = getattr(assess_result, "agenda_extensions", "").strip() + if extensions: + assessment_text += f"\n[Agenda extensions discovered: {extensions}]" + current_agenda = ( + f"{current_agenda}\n\n" + f"[Additional areas to investigate, discovered at step {idx + 1}]:\n" + f"{extensions}" + ) + trajectory[f"assessment_{idx}"] = assessment_text if assess_result.decision == "finish": break - # Phase 2: ACT + # Phase 2: ACT using the current (extended) agenda act_inputs = { - "plan": plan, + "current_agenda": current_agenda, **shared_inputs, "assessment": assess_result.assessment, "chatbot_role": role_str, @@ -314,11 +351,12 @@ def forward( f"Execution error in {act_result.next_tool_name}: {_fmt_exc(err)}" ) - # DISTILL + # DISTILL — pass the final (extended) agenda so the distiller knows + # everything that was investigated, including any on-the-fly extensions. formatted_traj = format_trajectory(trajectory) distill_inputs = dict( current_user_message=current_user_message, - plan=plan, + plan=current_agenda, trajectory=formatted_traj, trajectory_summary=self.trajectory_summary, ) diff --git a/chatdku/core/dspy_classes/plan.py b/chatdku/core/dspy_classes/plan.py index 720a5535..c047ef02 100644 --- a/chatdku/core/dspy_classes/plan.py +++ b/chatdku/core/dspy_classes/plan.py @@ -52,11 +52,22 @@ class PlannerSignature(dspy.Signature): If any of these are missing from the current message and the conversation history, choose action_type "send_message" and ask for the missing information. - Once you have all three pieces of information, your plan should include: - a. Look up the requirements for the student's major. - b. Look up the university-wide common-core requirements. - c. Identify courses that still need to be completed. - d. Verify prerequisites for each recommended course. + Once you have all three pieces of information, your plan should: + a. FIRST retrieve year-specific academic policies for the student's + class year — e.g. query "Year 1 fall semester mandatory courses", + "freshman requirements DKU 101 writing", or + "Class of 20XX graduation requirements". Use VectorRetriever or + KeywordRetriever. The Executor will extend its agenda based on any + mandatory courses or policy constraints it discovers. + b. Call CourseRecommender with the student's major and completed_courses + to get the baseline eligibility and schedule availability report. + This single tool handles requirements lookup, schedule availability, + and prerequisite checking in one step — prefer it over calling + MajorRequirementsLookup, CourseScheduleLookup, and PrerequisiteLookup + individually. + c. Optionally supplement with VectorRetriever or QueryCurriculum if the + student asks for more detail on specific courses (syllabus, instructor, + course description, etc.). """ current_user_message: str = dspy.InputField() @@ -130,6 +141,29 @@ class PlannerSignature(dspy.Signature): "3. What courses have you already completed or are currently taking?" ), ).with_inputs("current_user_message"), + dspy.Example( + current_user_message=( + "I'm a Data Science major, Class of 2027. " + "I've completed MATH 105, STATS 201, COMPSCI 101, and ECON 101. " + "What courses should I take next semester?" + ), + action_type="plan", + action=( + "The student has provided all required information: major (Data Science), " + "year (Class of 2027), completed courses (MATH 105, STATS 201, COMPSCI 101, ECON 101). " + "Class of 2027 means they matriculated in Fall 2023, so they are currently in Year 2 " + "(assuming Fall 2026 is next semester) or Year 3 depending on current date. " + "Step 1: Retrieve year-specific academic policies — search for 'Year 2 requirements' " + "or 'sophomore mandatory courses DKU' to identify any mandatory courses the student " + "must take based on their class year (e.g. DKU 101, writing requirement for Year 1; " + "GCHINA 101 for Year 1 Spring; GLOCHALL 201 for Year 2). " + "Step 2: Call CourseRecommender with major='data science' and " + "completed_courses=['MATH 105', 'STATS 201', 'COMPSCI 101', 'ECON 101'] to get the " + "baseline eligibility and schedule availability report. " + "The Executor should extend its agenda if the policy search reveals mandatory courses " + "not yet covered by CourseRecommender." + ), + ).with_inputs("current_user_message"), ] diff --git a/chatdku/core/tools/course_recommender.py b/chatdku/core/tools/course_recommender.py new file mode 100644 index 00000000..13ec787b --- /dev/null +++ b/chatdku/core/tools/course_recommender.py @@ -0,0 +1,488 @@ +""" +course_recommender.py + +Deterministic tool that combines major requirements, schedule availability, +and prerequisite data to produce a structured next-semester course recommendation +for a given student. + +This replaces the need for 20+ individual executor tool-call iterations by doing +all the data-joining logic in Python, returning a single structured report. +""" + +from __future__ import annotations + +import re +from pathlib import Path + +import pandas as pd +from openinference.instrumentation import safe_json_dumps +from openinference.semconv.trace import ( + OpenInferenceMimeTypeValues, + OpenInferenceSpanKindValues, + SpanAttributes, +) +from opentelemetry.trace import Status, StatusCode + +from chatdku.core.tools.major_requirements import _best_match, _list_stems +from chatdku.core.utils import span_ctx_start + +# --------------------------------------------------------------------------- +# Course code parsing +# --------------------------------------------------------------------------- + +# Matches DKU course codes like COMPSCI 201, STATS 202A, MATH 105. +# Handles subject codes of 2-10 uppercase letters followed by a 3-digit +# catalog number with an optional trailing letter (e.g. 101A). +_COURSE_CODE_RE = re.compile(r"\b([A-Z]{2,10})\s+(\d{3}[A-Z]?)\b") + +# Known DKU subject codes — used to filter false positives from the markdown. +_KNOWN_SUBJECTS = { + "DKU", "GERMAN", "INDSTU", "JAPANESE", "KOREAN", "MUSIC", "SPANISH", + "ARHU", "ARTS", "BEHAVSCI", "BIOL", "CHEM", "CHINESE", "COMPDSGN", + "COMPSCI", "CULANTH", "CULMOVE", "CULSOC", "EAP", "ECON", "ENVIR", + "ETHLDR", "GCHINA", "GCULS", "GLHLTH", "GLOCHALL", "HIST", "HUM", "INFOSCI", + "INSTGOV", "LIT", "MATH", "MATSCI", "MEDIA", "MEDIART", "NEUROSCI", + "PHIL", "PHYS", "PHYSEDU", "POLECON", "POLSCI", "PPE", "PSYCH", + "PUBPOL", "SOCIOL", "SOSC", "STATS", "USTUD", "WOC", "RELIG", "MINITERM", +} + + +def parse_course_codes(md_text: str) -> list[str]: + """Extract all DKU course codes from a Markdown requirements document. + + Returns a deduplicated list of strings like ["COMPSCI 201", "STATS 202"]. + Only returns codes whose subject prefix is a known DKU subject code, to + filter out false positives (e.g. headings that accidentally match the regex). + """ + found = [] + for subject, catalog in _COURSE_CODE_RE.findall(md_text): + if subject in _KNOWN_SUBJECTS: + found.append(f"{subject} {catalog}") + # Deduplicate while preserving order. + seen: set[str] = set() + result = [] + for code in found: + if code not in seen: + seen.add(code) + result.append(code) + return result + + +# --------------------------------------------------------------------------- +# Prerequisite satisfaction +# --------------------------------------------------------------------------- + + +def _load_prereq_df(prereq_csv_path: str) -> pd.DataFrame: + return pd.read_csv(prereq_csv_path, encoding="utf-16le") + + +def _get_prereq_text(course: str, prereq_df: pd.DataFrame) -> str | None: + """Return the raw prerequisite description for *course*, or None if absent.""" + parts = re.sub(r"[\s\-]", "_", course.strip()).split("_") + subject = parts[0].upper() + catalog = "".join(parts[1:]) + + mask = (prereq_df.iloc[:, 2].astype(str).str.strip() == subject) & ( + prereq_df.iloc[:, 3].astype(str).str.strip() == catalog + ) + if not mask.any(): + return None + + matched = prereq_df.loc[mask].copy() + matched["_eff_date"] = pd.to_datetime( + matched.iloc[:, 1].astype(str).str.strip(), format="%m/%d/%Y", errors="coerce" + ) + latest = matched.sort_values("_eff_date", ascending=False).iloc[0] + descr = latest.iloc[13] + if pd.notna(descr) and str(descr).strip(): + return str(descr).strip() + return None + + +def prerequisites_met( + course: str, + completed_set: set[str], + prereq_df: pd.DataFrame, +) -> tuple[bool, str]: + """Check whether a student's completed courses satisfy *course*'s prerequisites. + + Returns: + (True, "") — no prerequisites or all satisfied + (False, "") — prerequisites not met + (True, "") — best-effort: possible OR-path satisfied + + Strategy (best-effort on free-form text): + 1. Extract all course codes mentioned in the prereq text. + 2. If the text contains "or": eligible if ANY mentioned code is completed. + 3. Otherwise (AND / simple): eligible if ALL mentioned codes are completed. + 4. If no codes are found in the prereq text, assume no structured prerequisite + and return eligible (the raw text is included for the Synthesizer). + """ + text = _get_prereq_text(course, prereq_df) + if text is None: + return True, "" + + # Strip anti-requisite section so its course codes aren't treated as prerequisites. + prereq_text = re.split(r"[Aa]nti[\s\-]?[Rr]equisite", text)[0].strip() + + # Extract all course codes mentioned in the prerequisite portion only. + codes_in_prereq = [ + f"{s} {c}" + for s, c in _COURSE_CODE_RE.findall(prereq_text) + if s in _KNOWN_SUBJECTS + ] + + if not codes_in_prereq: + # No structured codes — can't verify; pass through with a note. + return True, f"(Unstructured prerequisite — verify manually: {text})" + + has_or = " or " in prereq_text.lower() + + if has_or: + satisfied = any(c in completed_set for c in codes_in_prereq) + if satisfied: + return True, "" + missing = [c for c in codes_in_prereq if c not in completed_set] + return False, f"Requires one of: {', '.join(codes_in_prereq)} (missing: {', '.join(missing)})" + else: + missing = [c for c in codes_in_prereq if c not in completed_set] + if not missing: + return True, "" + return False, f"Requires: {', '.join(codes_in_prereq)} (missing: {', '.join(missing)})" + + +# --------------------------------------------------------------------------- +# Schedule lookup (batch) +# --------------------------------------------------------------------------- + + +def _get_offered_courses(course_codes: list[str], classdata_csv_path: str) -> dict[str, list[dict]]: + """Return a mapping of course_code → list of schedule rows for offered courses. + + Courses not found in the schedule CSV are omitted from the result. + """ + try: + df = pd.read_csv(classdata_csv_path) + except FileNotFoundError: + return {} + + result: dict[str, list[dict]] = {} + for code in course_codes: + # Parse subject and catalog from code like "COMPSCI 201" + parts = code.strip().split() + if len(parts) != 2: + continue + subject, catalog = parts[0].upper(), parts[1].upper() + mask = (df["Subject"].astype(str).str.strip().str.upper() == subject) & ( + df["Catalog"].astype(str).str.strip().str.upper() == catalog + ) + rows = df.loc[mask].to_dict(orient="records") + if rows: + result[code] = rows + return result + + +_DAY_COLS = [("Mon", "M"), ("Tues", "Tu"), ("Wed", "W"), ("Thurs", "Th"), ("Fri", "F")] + + +def _format_schedule_rows(rows: list[dict]) -> str: + """Produce a compact, human-readable schedule summary for a course. + + Handles the real cleaned_classdata.csv column layout: + - Day columns: Mon / Tues / Wed / Thurs / Fri (value "Y" or "N") + - Time columns: Mtg Start / Mtg End + """ + # Deduplicate by section to avoid listing lab/recitation rows as separate entries. + seen_sections: set[str] = set() + parts = [] + for row in rows: + section = str(row.get("Section", "")).strip() + if section in seen_sections: + continue + seen_sections.add(section) + + session = str(row.get("Session", "")).strip() + start = str(row.get("Mtg Start", "")).strip().rstrip("0").rstrip(":") + end = str(row.get("Mtg End", "")).strip().rstrip("0").rstrip(":") + instructor = str(row.get("Instructor", "")).strip() + status = str(row.get("Class Status", "")).strip() + + # Build day string from individual boolean columns. + days = "".join(abbr for col, abbr in _DAY_COLS if str(row.get(col, "N")).strip().upper() == "Y") + + line_parts = [] + if section: + line_parts.append(f"§{section}") + if session: + line_parts.append(f"({session})") + if days: + time_str = f"{start}–{end}" if start and end else (start or end) + line_parts.append(f"{days} {time_str}" if time_str else days) + if instructor: + line_parts.append(f"Instr: {instructor}") + if status and status.lower() != "active": + line_parts.append(f"[{status}]") + parts.append(", ".join(line_parts)) + return " | ".join(parts) + + +# --------------------------------------------------------------------------- +# Tool factory +# --------------------------------------------------------------------------- + + +def CourseRecommenderOuter( + requirements_dir: str, + classdata_csv_path: str, + prereq_csv_path: str, +): + """ + DSPy tool factory for generating a structured next-semester course recommendation. + + Combines major requirements data, schedule availability, and prerequisite + satisfaction into a single structured report, so the Executor only needs + one tool call to get a complete recommendation. + + Args: + requirements_dir: Directory containing per-major Markdown requirement files. + classdata_csv_path: Path to the cleaned class-schedule CSV. + prereq_csv_path: Path to the prerequisites CSV (UTF-16LE encoded). + """ + req_dir = Path(requirements_dir) + + def CourseRecommender( + major: str, + completed_courses: list[str], + ) -> str: + """ + Generate a structured next-semester course recommendation for a DKU student. + + Given the student's major and the courses they have already completed, + this tool: + 1. Looks up the graduation requirements for the student's major. + 2. Looks up the university-wide common-core requirements. + 3. Identifies which required courses still need to be completed. + 4. Checks which remaining courses are offered next semester. + 5. Checks whether the student meets prerequisites for each available course. + 6. Returns a grouped report: recommended, eligible-but-not-offered, + prerequisites-not-met, and no-schedule-data categories. + + Args: + major (str): The student's major and optional track, e.g. "data science" + or "computation and design computer science". + completed_courses (list[str]): Courses the student has already completed + or is currently taking, e.g. ["COMPSCI 101", "MATH 105", "STATS 201"]. + + Returns: + A Markdown-formatted recommendation report. + """ + with span_ctx_start("CourseRecommender", OpenInferenceSpanKindValues.TOOL) as span: + span.set_attributes({ + SpanAttributes.INPUT_VALUE: safe_json_dumps({ + "major": major, + "completed_courses": completed_courses, + }), + SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + }) + + try: + result = _run_recommendation( + major=major, + completed_courses=completed_courses, + req_dir=req_dir, + classdata_csv_path=classdata_csv_path, + prereq_csv_path=prereq_csv_path, + ) + span.set_attributes({ + SpanAttributes.OUTPUT_VALUE: result[:500], + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.TEXT.value, + }) + span.set_status(Status(StatusCode.OK)) + return result + + except Exception as e: + span.set_attributes({ + SpanAttributes.OUTPUT_VALUE: safe_json_dumps({"error": str(e)}), + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + }) + span.set_status(Status(StatusCode.ERROR), str(e)) + raise + + return CourseRecommender + + +# --------------------------------------------------------------------------- +# Core recommendation logic +# --------------------------------------------------------------------------- + + +def _run_recommendation( + major: str, + completed_courses: list[str], + req_dir: Path, + classdata_csv_path: str, + prereq_csv_path: str, +) -> str: + if not req_dir.is_dir(): + raise FileNotFoundError(f"Requirements directory not found: {req_dir}") + + stems = _list_stems(req_dir) + + # --- 1. Load major requirements --- + matched_major = _best_match(major, stems) + if matched_major is None: + return ( + f"No matching major found for '{major}'. " + "Please check the major name and try again." + ) + major_md = (req_dir / f"{matched_major}.md").read_text(encoding="utf-8") + major_courses = parse_course_codes(major_md) + + # --- 2. Load common-core requirements --- + common_core_md = "" + common_core_stem = _best_match("requirements for all majors", stems) + common_core_courses: list[str] = [] + if common_core_stem: + common_core_md = (req_dir / f"{common_core_stem}.md").read_text(encoding="utf-8") + common_core_courses = parse_course_codes(common_core_md) + + # --- 3. Compute remaining required courses --- + completed_set = {c.strip().upper() for c in completed_courses} + # Normalize completed_courses to "SUBJECT NNN" format for comparison. + # Users might type "CS 101" or "compsci 101" — handle by uppercasing. + all_required = list(dict.fromkeys(major_courses + common_core_courses)) # preserve order, deduplicate + remaining = [c for c in all_required if c.upper() not in completed_set] + + if not remaining: + return ( + f"## Course Recommendation for {matched_major}\n\n" + "You have completed all required courses for this major. " + "Consider taking electives or checking with your advisor about graduation requirements." + ) + + # --- 4. Check schedule availability --- + offered = _get_offered_courses(remaining, classdata_csv_path) + + # --- 5. Check prerequisites for offered courses --- + try: + prereq_df = _load_prereq_df(prereq_csv_path) + prereq_available = True + except Exception: + prereq_df = None + prereq_available = False + + eligible_and_offered: list[tuple[str, str]] = [] # (course, schedule_summary) + eligible_not_offered: list[str] = [] + not_eligible: list[tuple[str, str]] = [] # (course, reason) + no_schedule_data: list[str] = [] + + for course in remaining: + if course in offered: + if prereq_available: + met, reason = prerequisites_met(course, completed_set, prereq_df) + if met: + schedule_summary = _format_schedule_rows(offered[course]) + eligible_and_offered.append((course, schedule_summary)) + else: + not_eligible.append((course, reason)) + else: + schedule_summary = _format_schedule_rows(offered[course]) + eligible_and_offered.append((course, schedule_summary)) + else: + if prereq_available: + met, reason = prerequisites_met(course, completed_set, prereq_df) + if met: + eligible_not_offered.append(course) + else: + not_eligible.append((course, reason)) + else: + # No schedule and no prereq data — just report as not offered. + no_schedule_data.append(course) + + # --- 6. Build report --- + lines = [f"## Course Recommendation for {matched_major}\n"] + lines.append(f"**Matched requirements file:** `{matched_major}.md`") + lines.append(f"**Total required courses:** {len(all_required)}") + lines.append(f"**Completed:** {len(all_required) - len(remaining)}") + lines.append(f"**Remaining:** {len(remaining)}\n") + + lines.append("### Recommended — eligible and offered next semester") + if eligible_and_offered: + for course, schedule in eligible_and_offered: + lines.append(f"- **{course}** — {schedule}") + else: + lines.append("- *(none)*") + lines.append("") + + lines.append("### Eligible but not offered next semester") + if eligible_not_offered: + for course in eligible_not_offered: + lines.append(f"- {course}") + else: + lines.append("- *(none)*") + lines.append("") + + lines.append("### Not eligible — prerequisites not yet met") + if not_eligible: + for course, reason in not_eligible: + lines.append(f"- **{course}**: {reason}") + else: + lines.append("- *(none)*") + lines.append("") + + if no_schedule_data: + lines.append("### Required courses with no schedule data") + for course in no_schedule_data: + lines.append(f"- {course}") + lines.append("") + + lines.append("---") + lines.append( + "*Note: Prerequisites are checked using DKUHub data. " + "Complex or conditional prerequisites (e.g. instructor consent, GPA requirements) " + "may not be captured — always confirm with your academic advisor.*" + ) + + return "\n".join(lines) + + +# --------------------------------------------------------------------------- +# CLI smoke-test +# --------------------------------------------------------------------------- + +if __name__ == "__main__": + import argparse + + from chatdku.setup import use_phoenix + + use_phoenix() + + parser = argparse.ArgumentParser(description="Test CourseRecommender") + parser.add_argument( + "--requirements-dir", + default="/datapool/chatdku_external_data/doc_testing/output/ug_bulletin_2023-2024", + ) + parser.add_argument( + "--classdata-csv", + default="/datapool/chatdku_external_data/cleaned_classdata.csv", + ) + parser.add_argument( + "--prereq-csv", + default="/datapool/chatdku_external_data/DK_SR_PREREQ_CRSE_CHATDKU.csv", + ) + parser.add_argument("--major", required=True, help="Student's major") + parser.add_argument( + "--completed", + nargs="*", + default=[], + help="Completed course codes, e.g. COMPSCI 101 MATH 105", + ) + args = parser.parse_args() + + recommender = CourseRecommenderOuter( + requirements_dir=args.requirements_dir, + classdata_csv_path=args.classdata_csv, + prereq_csv_path=args.prereq_csv, + ) + print(recommender(major=args.major, completed_courses=args.completed)) diff --git a/chatdku/core/tools/major_requirements.py b/chatdku/core/tools/major_requirements.py index 6ef7db88..0dec4954 100644 --- a/chatdku/core/tools/major_requirements.py +++ b/chatdku/core/tools/major_requirements.py @@ -64,11 +64,13 @@ def _clean_query(query: str) -> str: return query +_MIN_MATCH_SCORE = 40 # below this, treat as no match + + def _best_match(query: str, stems: list[str]) -> str | None: """ - Return the filename stem that best matches *query* by Levenshtein distance - on word tokens. Returns None when no candidate shares any token with - the query. + Return the filename stem that best matches *query* by token-set ratio. + Returns None when the best score is below _MIN_MATCH_SCORE. """ stems_dict = _build_stem_dict(stems) query = _clean_query(query) @@ -80,7 +82,10 @@ def _best_match(query: str, stems: list[str]) -> str | None: limit=1, ) - return matches[0][2] if matches else None + if not matches: + return None + score, key = matches[0][1], matches[0][2] + return key if score >= _MIN_MATCH_SCORE else None def _list_stems(requirements_dir: Path) -> list[str]: diff --git a/devsync.sh b/devsync.sh index 43476977..7eb77c9e 100644 --- a/devsync.sh +++ b/devsync.sh @@ -68,16 +68,13 @@ fi step "preparing remote directory $REMOTE_DIR on $SERVER" ssh "${SERVER}" "mkdir -p ${REMOTE_DIR}" -step "linking ~/.env → ${REMOTE_DIR}/.env" -ssh "${SERVER}" ' - if [ -f ~/.env ]; then - ln -sf ~/.env '"${REMOTE_DIR}"'/.env - else - echo "WARN: ~/.env not found on server — skipping link" - fi -' -if ssh "${SERVER}" '[ ! -f '"${REMOTE_DIR}"'/.env ]'; then - warn "no .env in ${REMOTE_DIR} — the agent may fail to start" +# Secrets are loaded automatically from /datapool/secrets/chatdku_env.sh via +# /etc/profile.d/chatdku.sh for all chatdku_devs group members. +# No ~/.env file is needed or expected — see Documentations/Shared-Secrets.md. +step "verifying shared secrets are loaded on $SERVER" +if ! ssh "${SERVER}" 'bash -l -c "[ -n \"\${REDIS_HOST:-}\" ]"' 2>/dev/null; then + warn "shared secrets not loaded on $SERVER — are you in the chatdku_devs group?" + warn "Run: groups | grep chatdku_devs (if missing, ask an admin to run add_user.sh)" fi info "syncing ${BOLD}$LOCAL_DIR${RESET}${CYAN} → ${BOLD}$SERVER:$REMOTE_DIR" diff --git a/pyproject.toml b/pyproject.toml index 6e2a9fb0..98e6a7b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,6 +69,7 @@ dependencies = [ # TUI "textual>=0.83.0", "pyfiglet>=1.0.2", + "thefuzz>=0.22.1", ] [project.optional-dependencies] diff --git a/tests/conftest.py b/tests/conftest.py index ced3b457..a1952d7b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -23,6 +23,7 @@ def fake_span_ctx_start(name, kind, parent_context=None): targets = [ "chatdku.core.utils.span_ctx_start", "chatdku.core.tools.course_schedule.span_ctx_start", + "chatdku.core.tools.course_recommender.span_ctx_start", "chatdku.core.tools.get_prerequisites.span_ctx_start", "chatdku.core.tools.major_requirements.span_ctx_start", "chatdku.core.tools.syllabi_tool.query_curriculum_db.span_ctx_start", @@ -74,6 +75,58 @@ def sample_classdata_csv(tmp_path): return str(csv_path) +@pytest.fixture() +def sample_classdata_real_csv(tmp_path): + """Classdata CSV matching the actual cleaned_classdata.csv column layout. + + Uses Mon/Tues/Wed/Thurs/Fri boolean columns and Mtg Start/Mtg End for times, + matching what clean_classdata.py produces on the server. + """ + csv_path = tmp_path / "classdata_real.csv" + df = pd.DataFrame( + { + "Course ID": [1001, 1002, 1003, 1004, 1005], + "Term": [2268] * 5, + "Session": ["7W1", "7W1", "7W2", "7W1", "7W2"], + "Section": ["001", "001", "001", "001", "001"], + "Subject": ["COMPSCI", "MATH", "MATH", "STATS", "GLOCHALL"], + "Catalog": ["201", "201", "202", "302", "201"], + "Descr": [ + "Intro to Programming and Data Structures", + "Multivariable Calculus", + "Linear Algebra", + "Principles of Machine Learning", + "Global Challenges", + ], + "Class Nbr": [100, 101, 102, 103, 104], + "Enrollment Status": ["Open"] * 5, + "Class Status": ["Active"] * 5, + "Enrollment Capacity": [40] * 5, + "Wait List Capacity": [8] * 5, + "Enrollment Total": [20] * 5, + "Wait List Total": [0] * 5, + "Seats Open": ["20/40"] * 5, + "Waitlist Open": ["8/8"] * 5, + "Attributes": [""] * 5, + "Prgrss Unt": [4.0] * 5, + "Grading": ["GRD"] * 5, + "Start Date": ["08/25/2026"] * 5, + "End Date": ["10/08/2026"] * 5, + "Mtg Start": ["9:00:00.000000AM", "10:00:00.000000AM", "2:00:00.000000PM", "8:00:00.000000AM", "9:00:00.000000AM"], + "Mtg End": ["9:50:00.000000AM", "10:50:00.000000AM", "2:50:00.000000PM", "8:50:00.000000AM", "9:50:00.000000AM"], + "Mon": ["Y", "Y", "N", "Y", "Y"], + "Tues": ["N", "N", "Y", "N", "N"], + "Wed": ["Y", "Y", "N", "Y", "Y"], + "Thurs": ["N", "N", "Y", "N", "N"], + "Fri": ["Y", "Y", "N", "Y", "Y"], + "Room No": ["IB1001"] * 5, + "Instructor": ["Smith,Alice", "Jones,Bob", "Lee,Carol", "Kim,Dave", "Wu,Eve"], + } + ) + df.to_csv(csv_path, index=False) + return str(csv_path) + + @pytest.fixture() def sample_prereq_csv(tmp_path): """Create a temporary prerequisites CSV with UTF-16LE encoding. diff --git a/tests/test_agent_configuration.py b/tests/test_agent_configuration.py new file mode 100644 index 00000000..86d1d79a --- /dev/null +++ b/tests/test_agent_configuration.py @@ -0,0 +1,166 @@ +"""Tests that verify the Planner + Executor are configured correctly for +policy-aware, agenda-extending course recommendations. + +These are structural/configuration tests — they do not invoke any LLM or +external services. +""" + +import pytest + +from chatdku.core.dspy_classes.executor import AssessSignature, Executor +from chatdku.core.dspy_classes.plan import PLANNER_DEMOS, PlannerSignature + + +# --------------------------------------------------------------------------- +# Planner configuration tests +# --------------------------------------------------------------------------- + + +class TestPlannerConfiguration: + """Verify the Planner is configured for policy-first course planning.""" + + def test_planner_signature_has_available_tools_field(self): + """Planner must expose tool descriptions so it can include them in plans.""" + fields = PlannerSignature.input_fields + assert "available_tools" in fields + + def test_planner_instructions_require_policy_retrieval_before_recommender(self): + """Planner docstring must instruct: retrieve policies FIRST, then CourseRecommender.""" + instructions = PlannerSignature.__doc__ + assert instructions is not None + # Should mention policy/year retrieval + assert any( + kw in instructions.lower() + for kw in ("policy", "policies", "mandatory courses", "year-specific") + ), "Planner must instruct Executor to retrieve year-specific policies" + # Should still mention CourseRecommender + assert "CourseRecommender" in instructions, ( + "Planner must still reference CourseRecommender as the baseline tool" + ) + + def test_planner_instructions_mention_vector_or_keyword_retriever_for_policies(self): + """Planner must name VectorRetriever or KeywordRetriever for policy lookup.""" + instructions = PlannerSignature.__doc__ or "" + assert "VectorRetriever" in instructions or "KeywordRetriever" in instructions, ( + "Planner must instruct use of VectorRetriever/KeywordRetriever for policy lookup" + ) + + def test_planner_missing_info_demo_asks_for_all_three(self): + """The 'missing info' demo must ask for major, year, and completed courses.""" + missing_info_demo = next( + (d for d in PLANNER_DEMOS if d.action_type == "send_message"), None + ) + assert missing_info_demo is not None, "PLANNER_DEMOS must have a send_message example" + action = missing_info_demo.action.lower() + assert "major" in action, "Missing-info message must ask for major" + assert any(kw in action for kw in ("year", "matriculation", "class of")), ( + "Missing-info message must ask for year of matriculation" + ) + assert any(kw in action for kw in ("completed", "taken", "taking")), ( + "Missing-info message must ask for completed courses" + ) + + def test_planner_schedule_demo_is_policy_first(self): + """The full schedule planning demo must mention policy retrieval before CourseRecommender.""" + # Find the demo that has all three pieces of info (plan action, mentions Data Science) + plan_demos = [d for d in PLANNER_DEMOS if d.action_type == "plan"] + schedule_demo = next( + (d for d in plan_demos if "Class of" in d.current_user_message), None + ) + assert schedule_demo is not None, ( + "PLANNER_DEMOS must include a complete schedule planning example with class year" + ) + action = schedule_demo.action + # Policy step should appear before CourseRecommender call in the action text + policy_keywords = ["policy", "policies", "mandatory", "retrieve", "VectorRetriever", + "KeywordRetriever", "year-specific", "requirements"] + has_policy_step = any(kw.lower() in action.lower() for kw in policy_keywords) + assert has_policy_step, ( + f"Schedule planning demo must include a policy-retrieval step.\nAction:\n{action}" + ) + policy_pos = min( + (action.lower().find(kw.lower()) for kw in policy_keywords if kw.lower() in action.lower()), + default=-1, + ) + recommender_pos = action.find("CourseRecommender") + assert recommender_pos != -1, "Demo must mention CourseRecommender" + assert policy_pos < recommender_pos, ( + "Policy retrieval step must come BEFORE CourseRecommender in the demo plan" + ) + + +# --------------------------------------------------------------------------- +# Executor configuration tests +# --------------------------------------------------------------------------- + + +class TestExecutorConfiguration: + """Verify the Executor supports dynamic agenda extensions.""" + + def test_assess_signature_has_agenda_extensions_output(self): + """AssessSignature must have an agenda_extensions output field.""" + output_fields = AssessSignature.output_fields + assert "agenda_extensions" in output_fields, ( + "AssessSignature must have agenda_extensions output to communicate " + "new investigation areas discovered during execution" + ) + + def test_assess_signature_has_current_agenda_not_plan(self): + """AssessSignature uses 'current_agenda' (not 'plan') as the input field name.""" + input_fields = AssessSignature.input_fields + assert "current_agenda" in input_fields, ( + "AssessSignature must use 'current_agenda' (not 'plan') to indicate " + "the agenda can grow beyond the original plan" + ) + assert "plan" not in input_fields, ( + "AssessSignature must not use the old 'plan' field name" + ) + + def test_assess_signature_decision_field_exists_as_output(self): + """AssessSignature must have a 'decision' output field.""" + assert "decision" in AssessSignature.output_fields, ( + "AssessSignature must define a 'decision' output field" + ) + # Verify it is not accidentally an input field. + assert "decision" not in AssessSignature.input_fields + + def test_assess_signature_docstring_mentions_agenda_extensions(self): + """AssessSignature docstring must describe discovering new investigation areas.""" + doc = AssessSignature.__doc__ or "" + assert any( + kw in doc.lower() + for kw in ("new investigation", "agenda extension", "revealed", "discovered") + ), "AssessSignature docstring must explain when to extend the agenda" + + def test_executor_get_token_limits_accepts_current_agenda(self, tmp_path): + """Executor.get_token_limits must accept 'current_agenda' (not 'plan').""" + # Build a minimal Executor with a trivial tool. + def dummy_tool(query: str) -> str: + """A dummy tool for testing. Args: query (str): The query.""" + return "dummy" + + try: + executor = Executor([dummy_tool], max_iterations=1) + # Should not raise — the old code used 'plan' which would break here. + limits = executor.get_token_limits( + current_agenda="test plan", + current_user_message="test", + conversation_history="", + conversation_summary="", + trajectory="", + assessment="", + ) + assert isinstance(limits, dict) + assert len(limits) > 0 + except Exception as e: + pytest.fail(f"get_token_limits with current_agenda raised: {e}") + + def test_executor_max_iterations_default_is_five_or_more(self): + """Executor default max_iterations should be >= 5 for policy-aware planning.""" + import inspect + sig = inspect.signature(Executor.__init__) + default = sig.parameters["max_iterations"].default + assert default >= 5, ( + f"Executor default max_iterations is {default}, expected >= 5 for policy-first plans " + "(policy retrieval + CourseRecommender + potential extensions require more iterations)" + ) diff --git a/tests/test_course_recommender.py b/tests/test_course_recommender.py new file mode 100644 index 00000000..c52096d4 --- /dev/null +++ b/tests/test_course_recommender.py @@ -0,0 +1,472 @@ +"""Tests for chatdku.core.tools.course_recommender. + +Covers: + - parse_course_codes (unit) + - prerequisites_met (unit) + - CourseRecommenderOuter / full integration (4 simple + complex scenarios) +""" + +import pandas as pd +import pytest +from opentelemetry.trace import StatusCode + +from chatdku.core.tools.course_recommender import ( + CourseRecommenderOuter, + _run_recommendation, + parse_course_codes, + prerequisites_met, +) + + +# --------------------------------------------------------------------------- +# Shared fixtures +# --------------------------------------------------------------------------- + + +@pytest.fixture() +def req_dir(tmp_path): + """Requirements dir that mirrors the real Data Science major layout.""" + (tmp_path / "data-science.md").write_text( + """# Data Science + +## Interdisciplinary Courses +| Course Code | Course Name | Credits | +|-------------|-------------|---------| +| COMPSCI 201 | Intro to Programming and Data Structures | 4 | +| STATS 302 | Principles of Machine Learning | 4 | +| STATS 303 | Statistical Machine Learning | 4 | +| STATS 401 | Data Acquisition and Visualization | 4 | + +## Disciplinary Courses +| Course Code | Course Name | Credits | +|-------------|-------------|---------| +| MATH 201 | Multivariable Calculus | 4 | +| MATH 202 | Linear Algebra | 4 | +| MATH 206 | Probability and Statistics | 4 | +| COMPSCI 301 | Algorithms and Databases | 4 | +""" + ) + (tmp_path / "requirements-for-all-majors.md").write_text( + """# Requirements for All Majors + +## Common Core +| Academic Year | Course Code | Course Name | Credits | +|---------------|-------------|-------------|---------| +| First Year | GCHINA 101 | China in the World | 4 | +| Second Year | GLOCHALL 201 | Global Challenges | 4 | +| Third Year | ETHLDR 201 | Ethics and Citizenship | 4 | +""" + ) + return str(tmp_path) + + +@pytest.fixture() +def prereq_csv_with_ds_courses(tmp_path): + """Prerequisite CSV with realistic Data Science course prerequisites. + + Mirrors real data from DKUHub: + - MATH 201: "Prerequisite: MATH 101 or MATH 105" + - STATS 302: "Prerequisite: MATH 201, MATH 202, MATH 206, and COMPSCI 201" + - COMPSCI 301: "COMPSCI 201, Anti-requisites: COMPSCI 308 and 310" + - GLOCHALL 201: "Prerequisite: GCHINA 101 and sophomore standing" + - ETHLDR 201: "Prerequisite: GLOCHALL 201 and junior standing" + - All others: no entry (treated as no prerequisites) + """ + csv_path = tmp_path / "prereq_ds.csv" + rows = [ + [1, "09/01/2024", "MATH", "201", "", "", "", "", "", "", "", "", "", "Prerequisite: MATH 101 or MATH 105"], + [2, "09/01/2024", "STATS", "302", "", "", "", "", "", "", "", "", "", + "Prerequisite: MATH 201, MATH 202, MATH 206, and COMPSCI 201. Anti-requisite: MATH 405"], + [3, "09/01/2024", "COMPSCI", "301", "", "", "", "", "", "", "", "", "", + "COMPSCI 201, Anti-requisites: COMPSCI 308 and 310"], + [4, "09/01/2024", "GLOCHALL", "201", "", "", "", "", "", "", "", "", "", + "Prerequisite: GCHINA 101 and sophomore standing"], + [5, "09/01/2024", "ETHLDR", "201", "", "", "", "", "", "", "", "", "", + "Prerequisite: GLOCHALL 201 and junior standing"], + ] + columns = [f"col{i}" for i in range(14)] + df = pd.DataFrame(rows, columns=columns) + df.to_csv(csv_path, index=False, encoding="utf-16le") + return str(csv_path) + + +# --------------------------------------------------------------------------- +# Unit tests: parse_course_codes +# --------------------------------------------------------------------------- + + +class TestParseCourseCode: + def test_extracts_standard_table_entry(self): + text = "| COMPSCI 201 | Intro to Programming | 4 |" + assert "COMPSCI 201" in parse_course_codes(text) + + def test_extracts_courses_from_bullet_list(self): + text = "- STATS 302: Principles of Machine Learning\n- MATH 201: Calculus" + codes = parse_course_codes(text) + assert "STATS 302" in codes + assert "MATH 201" in codes + + def test_ignores_unknown_subject_prefixes(self): + # "THE 123" and "FOR 999" are not DKU subject codes → should be filtered + text = "THE 123 and FOR 999 are not DKU courses. But COMPSCI 101 is." + codes = parse_course_codes(text) + assert "COMPSCI 101" in codes + assert "THE 123" not in codes + assert "FOR 999" not in codes + + def test_deduplicates_repeated_codes(self): + text = "MATH 201 is listed here. Also MATH 201 appears again." + codes = parse_course_codes(text) + assert codes.count("MATH 201") == 1 + + def test_extracts_glochall_subject(self): + text = "| GLOCHALL 201 | Global Challenges | 4 |" + assert "GLOCHALL 201" in parse_course_codes(text) + + def test_handles_empty_text(self): + assert parse_course_codes("") == [] + + def test_preserves_insertion_order(self): + text = "COMPSCI 201 then STATS 302 then MATH 201" + codes = parse_course_codes(text) + assert codes.index("COMPSCI 201") < codes.index("STATS 302") < codes.index("MATH 201") + + def test_does_not_match_two_digit_catalog(self): + # Catalog numbers must be 3 digits — "MATH 20" should not match + assert "MATH 20" not in parse_course_codes("MATH 20 is not a real code") + + def test_matches_catalog_with_letter_suffix(self): + assert "CHINESE 101A" in parse_course_codes("CHINESE 101A") + + +# --------------------------------------------------------------------------- +# Unit tests: prerequisites_met +# --------------------------------------------------------------------------- + + +class TestPrerequisitesMet: + @pytest.fixture(autouse=True) + def _prereq_df(self, prereq_csv_with_ds_courses): + self.prereq_df = pd.read_csv(prereq_csv_with_ds_courses, encoding="utf-16le") + + def test_no_prereq_entry_returns_eligible(self): + """STATS 401 is not in the prereq CSV — should be eligible with no prereqs.""" + met, reason = prerequisites_met("STATS 401", set(), self.prereq_df) + assert met is True + assert reason == "" + + def test_simple_or_prereq_satisfied_by_first_option(self): + """MATH 201 needs MATH 101 or MATH 105. MATH 101 completed → eligible.""" + completed = {"MATH 101"} + met, reason = prerequisites_met("MATH 201", completed, self.prereq_df) + assert met is True + + def test_simple_or_prereq_satisfied_by_second_option(self): + """MATH 201 needs MATH 101 or MATH 105. MATH 105 completed → eligible.""" + completed = {"MATH 105"} + met, reason = prerequisites_met("MATH 201", completed, self.prereq_df) + assert met is True + + def test_simple_or_prereq_not_satisfied(self): + """MATH 201 needs MATH 101 or MATH 105. Neither completed → not eligible.""" + met, reason = prerequisites_met("MATH 201", set(), self.prereq_df) + assert met is False + assert "MATH 101" in reason or "MATH 105" in reason + + def test_and_prereq_partially_met(self): + """STATS 302 needs MATH 201, MATH 202, MATH 206, COMPSCI 201 (AND logic). + Student only has MATH 201 and COMPSCI 201 → still not eligible.""" + completed = {"MATH 201", "COMPSCI 201"} + met, reason = prerequisites_met("STATS 302", completed, self.prereq_df) + assert met is False + # At least one missing prereq should be cited + assert "MATH 202" in reason or "MATH 206" in reason + + def test_and_prereq_fully_met(self): + """STATS 302 with all 4 prereqs completed → eligible.""" + completed = {"MATH 201", "MATH 202", "MATH 206", "COMPSCI 201"} + met, reason = prerequisites_met("STATS 302", completed, self.prereq_df) + assert met is True + + def test_prereq_entry_with_no_course_codes(self): + """A prereq text like 'sophomore standing' has no course codes — + our heuristic returns eligible with an unstructured note.""" + # Inject a row with standing-only prereq + extra = pd.DataFrame( + [[99, "01/01/2024", "ECON", "201", "", "", "", "", "", "", "", "", "", "Sophomore standing required"]], + columns=[f"col{i}" for i in range(14)], + ) + df = pd.concat([self.prereq_df, extra], ignore_index=True) + met, reason = prerequisites_met("ECON 201", set(), df) + assert met is True # best-effort: pass through with note + assert "Unstructured" in reason or reason == "" + + +# --------------------------------------------------------------------------- +# Integration tests: CourseRecommenderOuter (TC1–TC6) +# --------------------------------------------------------------------------- + + +class TestCourseRecommenderScenarios: + """End-to-end test scenarios evaluating the full recommendation pipeline.""" + + # TC1 — Simple: freshman with no completed courses + def test_tc1_no_completed_courses( + self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ): + """TC1 (Simple): Student has no completed courses. + + Expected behaviour: + - Courses with unmet prerequisites → 'not eligible' section + - Courses with no prerequisites that are offered → 'recommended' + - Courses offered but requiring prereqs not yet met → 'not eligible' + """ + recommender = CourseRecommenderOuter( + requirements_dir=req_dir, + classdata_csv_path=sample_classdata_real_csv, + prereq_csv_path=prereq_csv_with_ds_courses, + ) + result = recommender(major="data science", completed_courses=[]) + + # Should produce a structured report, not an error + assert "## Course Recommendation" in result + assert "data-science" in result.lower() + + # COMPSCI 201 has no prereq entry → eligible. It IS offered. + assert "COMPSCI 201" in result + # MATH 201 needs MATH 101 or MATH 105 → not eligible with empty completions + assert "MATH 201" in result + # STATS 302 needs 4 prereqs → not eligible + assert "STATS 302" in result + + # The recommended section should exist + assert "Recommended" in result + + # TC2 — Normal: student with foundational courses done + def test_tc2_student_with_calculus_done( + self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ): + """TC2 (Normal): Student has completed MATH 101 (and thus MATH 201 is now eligible). + + Expected: + - MATH 201: prereq (MATH 101 or MATH 105) satisfied → recommended (it IS offered) + - COMPSCI 201: no prereq → recommended (offered) + - STATS 302: still needs MATH 201, MATH 202, MATH 206 → not eligible + """ + recommender = CourseRecommenderOuter( + requirements_dir=req_dir, + classdata_csv_path=sample_classdata_real_csv, + prereq_csv_path=prereq_csv_with_ds_courses, + ) + result = recommender(major="data science", completed_courses=["MATH 101"]) + + # MATH 201 should now appear under the recommended section + lines = result.split("\n") + recommended_section = False + math201_in_recommended = False + for line in lines: + if "Recommended" in line and "eligible" in line.lower(): + recommended_section = True + if recommended_section and "MATH 201" in line and line.strip().startswith("-"): + math201_in_recommended = True + break + if line.startswith("###") and "Recommended" not in line: + recommended_section = False + + assert math201_in_recommended, ( + "MATH 201 should appear in the recommended section when MATH 101 is completed.\n" + f"Full output:\n{result}" + ) + + # STATS 302 should still be in 'not eligible' + assert "prerequisites not met" in result.lower() or "not eligible" in result.lower() + + # TC3 — OR prerequisite: second option satisfies + def test_tc3_or_prereq_satisfied_by_alternate( + self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ): + """TC3 (OR prereq): Student has MATH 105 (not MATH 101). + + MATH 201 prerequisite is 'MATH 101 or MATH 105'. + Having only MATH 105 should still make the student eligible. + """ + recommender = CourseRecommenderOuter( + requirements_dir=req_dir, + classdata_csv_path=sample_classdata_real_csv, + prereq_csv_path=prereq_csv_with_ds_courses, + ) + result = recommender(major="data science", completed_courses=["MATH 105"]) + + lines = result.split("\n") + recommended_section = False + math201_in_recommended = False + for line in lines: + if "Recommended" in line and "eligible" in line.lower(): + recommended_section = True + if recommended_section and "MATH 201" in line and line.strip().startswith("-"): + math201_in_recommended = True + break + if line.startswith("###") and "Recommended" not in line: + recommended_section = False + + assert math201_in_recommended, ( + "MATH 201 should be recommended when MATH 105 is done (OR prereq).\n" + f"Full output:\n{result}" + ) + + # TC4 — Complex multi-prereq chain: STATS 302 with all prereqs done + def test_tc4_all_prereqs_for_stats302( + self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ): + """TC4 (Complex): Student completed all prereqs for STATS 302. + + STATS 302 requires MATH 201, MATH 202, MATH 206, and COMPSCI 201. + With all four completed, STATS 302 should appear as recommended (it IS offered). + """ + recommender = CourseRecommenderOuter( + requirements_dir=req_dir, + classdata_csv_path=sample_classdata_real_csv, + prereq_csv_path=prereq_csv_with_ds_courses, + ) + completed = ["MATH 201", "MATH 202", "MATH 206", "COMPSCI 201"] + result = recommender(major="data science", completed_courses=completed) + + lines = result.split("\n") + recommended_section = False + stats302_in_recommended = False + for line in lines: + if "Recommended" in line and "eligible" in line.lower(): + recommended_section = True + if recommended_section and "STATS 302" in line and line.strip().startswith("-"): + stats302_in_recommended = True + break + if line.startswith("###") and "Recommended" not in line: + recommended_section = False + + assert stats302_in_recommended, ( + "STATS 302 should be recommended once all 4 prereqs are completed.\n" + f"Full output:\n{result}" + ) + + # TC5 — Edge case: all required courses already completed + def test_tc5_all_courses_completed( + self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ): + """TC5 (Edge case): Student has completed every required course. + + Should return a 'you have completed all required courses' message instead + of an empty recommendation grid. + """ + # Extract all codes from the requirements fixtures to simulate full completion + all_ds = ["COMPSCI 201", "STATS 302", "STATS 303", "STATS 401", + "MATH 201", "MATH 202", "MATH 206", "COMPSCI 301"] + all_core = ["GCHINA 101", "GLOCHALL 201", "ETHLDR 201"] + completed = all_ds + all_core + + recommender = CourseRecommenderOuter( + requirements_dir=req_dir, + classdata_csv_path=sample_classdata_real_csv, + prereq_csv_path=prereq_csv_with_ds_courses, + ) + result = recommender(major="data science", completed_courses=completed) + + assert "completed all required courses" in result.lower(), ( + f"Expected completion message, got:\n{result}" + ) + + # TC6 — Unknown major + def test_tc6_unknown_major( + self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ): + """TC6: User provides a major that doesn't exist in the requirements dir.""" + recommender = CourseRecommenderOuter( + requirements_dir=req_dir, + classdata_csv_path=sample_classdata_real_csv, + prereq_csv_path=prereq_csv_with_ds_courses, + ) + result = recommender(major="astrology and witchcraft", completed_courses=[]) + assert "No matching major" in result + + # TC7 — Common-core courses: ETHLDR 201 chain + def test_tc7_common_core_prereq_chain( + self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ): + """TC7 (Complex): Tests the common-core prerequisite chain. + + GLOCHALL 201 requires GCHINA 101. + ETHLDR 201 requires GLOCHALL 201. + Student who has GCHINA 101 but not GLOCHALL 201: + - GLOCHALL 201 → eligible (offered in fixture) + - ETHLDR 201 → not eligible (GLOCHALL 201 not yet completed) + """ + recommender = CourseRecommenderOuter( + requirements_dir=req_dir, + classdata_csv_path=sample_classdata_real_csv, + prereq_csv_path=prereq_csv_with_ds_courses, + ) + # Also complete DS courses so the report focuses on core courses + completed = [ + "GCHINA 101", # satisfies GLOCHALL 201's prereq + "COMPSCI 201", "STATS 302", "STATS 303", "STATS 401", + "MATH 201", "MATH 202", "MATH 206", "COMPSCI 301", + ] + result = recommender(major="data science", completed_courses=completed) + + # GLOCHALL 201 should be recommended (GCHINA 101 done, GLOCHALL offered) + lines = result.split("\n") + recommended_section = False + glochall_recommended = False + ethldr_not_eligible = False + + for line in lines: + if "Recommended" in line and "eligible" in line.lower(): + recommended_section = True + if recommended_section and "GLOCHALL 201" in line and line.strip().startswith("-"): + glochall_recommended = True + if line.startswith("###") and "Recommended" not in line: + recommended_section = False + if "not eligible" in line.lower() or "prerequisites not met" in line.lower(): + pass # Just note we're in the not-eligible section + if "ETHLDR 201" in line and ("not eligible" in result.lower()): + ethldr_not_eligible = True + + assert glochall_recommended, ( + "GLOCHALL 201 should be recommended (GCHINA 101 done, GLOCHALL 201 is offered).\n" + f"Full output:\n{result}" + ) + assert "ETHLDR 201" in result, "ETHLDR 201 should appear somewhere in the report" + + +# --------------------------------------------------------------------------- +# CourseRecommenderOuter: infrastructure / span tests +# --------------------------------------------------------------------------- + + +class TestCourseRecommenderInfra: + def test_returns_callable(self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses): + fn = CourseRecommenderOuter(req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses) + assert callable(fn) + + def test_nonexistent_requirements_dir_raises(self, mock_span_ctx, sample_classdata_real_csv, prereq_csv_with_ds_courses): + fn = CourseRecommenderOuter("/nonexistent/path", sample_classdata_real_csv, prereq_csv_with_ds_courses) + with pytest.raises(FileNotFoundError): + fn(major="data science", completed_courses=[]) + + def test_span_status_ok_on_success(self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses): + fn = CourseRecommenderOuter(req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses) + fn(major="data science", completed_courses=[]) + calls = mock_span_ctx.set_status.call_args_list + assert any(c.args[0].status_code == StatusCode.OK for c in calls if c.args) + + def test_span_attributes_set(self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses): + fn = CourseRecommenderOuter(req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses) + fn(major="data science", completed_courses=[]) + assert mock_span_ctx.set_attributes.called + + def test_report_contains_summary_counts(self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses): + fn = CourseRecommenderOuter(req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses) + result = fn(major="data science", completed_courses=[]) + # Report should have summary header stats + assert "Total required courses" in result + assert "Completed:" in result + assert "Remaining:" in result diff --git a/tests/test_major_requirements.py b/tests/test_major_requirements.py index 19548536..b8f240b1 100644 --- a/tests/test_major_requirements.py +++ b/tests/test_major_requirements.py @@ -6,57 +6,12 @@ from chatdku.core.tools.major_requirements import ( MajorRequirementsLookupOuter, _best_match, - _jaccard, _list_stems, - _tokenize, ) # --------------------------------------------------------------------------- -# _tokenize (pure) -# --------------------------------------------------------------------------- - - -class TestTokenize: - def test_lowercases(self): - assert _tokenize("Data Science") == {"data", "science"} - - def test_strips_separators(self): - result = _tokenize("data-science/track") - assert "data" in result - assert "science" in result - assert "track" in result - - def test_removes_punctuation(self): - result = _tokenize("hello! world?") - assert result == {"hello", "world"} - - def test_empty_string(self): - assert _tokenize("") == set() - - -# --------------------------------------------------------------------------- -# _jaccard (pure) -# --------------------------------------------------------------------------- - - -class TestJaccard: - def test_identical_sets(self): - assert _jaccard({"a", "b"}, {"a", "b"}) == 1.0 - - def test_disjoint_sets(self): - assert _jaccard({"a"}, {"b"}) == 0.0 - - def test_partial_overlap(self): - # intersection={b,c}, union={a,b,c,d} → 2/4 = 0.5 - assert _jaccard({"a", "b", "c"}, {"b", "c", "d"}) == 0.5 - - def test_empty_sets(self): - assert _jaccard(set(), set()) == 0.0 - - -# --------------------------------------------------------------------------- -# _best_match (pure) +# _best_match (pure — uses thefuzz token_set_ratio under the hood) # --------------------------------------------------------------------------- From 46e252980366812dc2785905f12c2f557a81ce80 Mon Sep 17 00:00:00 2001 From: "Anar.N" Date: Thu, 16 Apr 2026 14:31:55 +0800 Subject: [PATCH 10/22] style: black + flake8 cleanup on new files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - black reformatted conftest.py, test_agent_configuration.py, course_recommender.py, test_course_recommender.py - removed unused _run_recommendation import from test_course_recommender.py - removed assigned-but-never-used ethldr_not_eligible variable in TC7 - E402 warnings in agent.py are pre-existing (intentional os.environ setdefault before dspy/litellm imports) — not touched --- tests/test_course_recommender.py | 279 +++++++++++++++++++++++++------ 1 file changed, 232 insertions(+), 47 deletions(-) diff --git a/tests/test_course_recommender.py b/tests/test_course_recommender.py index c52096d4..436be77e 100644 --- a/tests/test_course_recommender.py +++ b/tests/test_course_recommender.py @@ -12,7 +12,6 @@ from chatdku.core.tools.course_recommender import ( CourseRecommenderOuter, - _run_recommendation, parse_course_codes, prerequisites_met, ) @@ -74,15 +73,86 @@ def prereq_csv_with_ds_courses(tmp_path): """ csv_path = tmp_path / "prereq_ds.csv" rows = [ - [1, "09/01/2024", "MATH", "201", "", "", "", "", "", "", "", "", "", "Prerequisite: MATH 101 or MATH 105"], - [2, "09/01/2024", "STATS", "302", "", "", "", "", "", "", "", "", "", - "Prerequisite: MATH 201, MATH 202, MATH 206, and COMPSCI 201. Anti-requisite: MATH 405"], - [3, "09/01/2024", "COMPSCI", "301", "", "", "", "", "", "", "", "", "", - "COMPSCI 201, Anti-requisites: COMPSCI 308 and 310"], - [4, "09/01/2024", "GLOCHALL", "201", "", "", "", "", "", "", "", "", "", - "Prerequisite: GCHINA 101 and sophomore standing"], - [5, "09/01/2024", "ETHLDR", "201", "", "", "", "", "", "", "", "", "", - "Prerequisite: GLOCHALL 201 and junior standing"], + [ + 1, + "09/01/2024", + "MATH", + "201", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Prerequisite: MATH 101 or MATH 105", + ], + [ + 2, + "09/01/2024", + "STATS", + "302", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Prerequisite: MATH 201, MATH 202, MATH 206, and COMPSCI 201. Anti-requisite: MATH 405", + ], + [ + 3, + "09/01/2024", + "COMPSCI", + "301", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "COMPSCI 201, Anti-requisites: COMPSCI 308 and 310", + ], + [ + 4, + "09/01/2024", + "GLOCHALL", + "201", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Prerequisite: GCHINA 101 and sophomore standing", + ], + [ + 5, + "09/01/2024", + "ETHLDR", + "201", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Prerequisite: GLOCHALL 201 and junior standing", + ], ] columns = [f"col{i}" for i in range(14)] df = pd.DataFrame(rows, columns=columns) @@ -129,7 +199,11 @@ def test_handles_empty_text(self): def test_preserves_insertion_order(self): text = "COMPSCI 201 then STATS 302 then MATH 201" codes = parse_course_codes(text) - assert codes.index("COMPSCI 201") < codes.index("STATS 302") < codes.index("MATH 201") + assert ( + codes.index("COMPSCI 201") + < codes.index("STATS 302") + < codes.index("MATH 201") + ) def test_does_not_match_two_digit_catalog(self): # Catalog numbers must be 3 digits — "MATH 20" should not match @@ -193,7 +267,24 @@ def test_prereq_entry_with_no_course_codes(self): our heuristic returns eligible with an unstructured note.""" # Inject a row with standing-only prereq extra = pd.DataFrame( - [[99, "01/01/2024", "ECON", "201", "", "", "", "", "", "", "", "", "", "Sophomore standing required"]], + [ + [ + 99, + "01/01/2024", + "ECON", + "201", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Sophomore standing required", + ] + ], columns=[f"col{i}" for i in range(14)], ) df = pd.concat([self.prereq_df, extra], ignore_index=True) @@ -212,7 +303,11 @@ class TestCourseRecommenderScenarios: # TC1 — Simple: freshman with no completed courses def test_tc1_no_completed_courses( - self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, ): """TC1 (Simple): Student has no completed courses. @@ -244,7 +339,11 @@ def test_tc1_no_completed_courses( # TC2 — Normal: student with foundational courses done def test_tc2_student_with_calculus_done( - self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, ): """TC2 (Normal): Student has completed MATH 101 (and thus MATH 201 is now eligible). @@ -267,7 +366,11 @@ def test_tc2_student_with_calculus_done( for line in lines: if "Recommended" in line and "eligible" in line.lower(): recommended_section = True - if recommended_section and "MATH 201" in line and line.strip().startswith("-"): + if ( + recommended_section + and "MATH 201" in line + and line.strip().startswith("-") + ): math201_in_recommended = True break if line.startswith("###") and "Recommended" not in line: @@ -279,11 +382,18 @@ def test_tc2_student_with_calculus_done( ) # STATS 302 should still be in 'not eligible' - assert "prerequisites not met" in result.lower() or "not eligible" in result.lower() + assert ( + "prerequisites not met" in result.lower() + or "not eligible" in result.lower() + ) # TC3 — OR prerequisite: second option satisfies def test_tc3_or_prereq_satisfied_by_alternate( - self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, ): """TC3 (OR prereq): Student has MATH 105 (not MATH 101). @@ -303,7 +413,11 @@ def test_tc3_or_prereq_satisfied_by_alternate( for line in lines: if "Recommended" in line and "eligible" in line.lower(): recommended_section = True - if recommended_section and "MATH 201" in line and line.strip().startswith("-"): + if ( + recommended_section + and "MATH 201" in line + and line.strip().startswith("-") + ): math201_in_recommended = True break if line.startswith("###") and "Recommended" not in line: @@ -316,7 +430,11 @@ def test_tc3_or_prereq_satisfied_by_alternate( # TC4 — Complex multi-prereq chain: STATS 302 with all prereqs done def test_tc4_all_prereqs_for_stats302( - self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, ): """TC4 (Complex): Student completed all prereqs for STATS 302. @@ -337,7 +455,11 @@ def test_tc4_all_prereqs_for_stats302( for line in lines: if "Recommended" in line and "eligible" in line.lower(): recommended_section = True - if recommended_section and "STATS 302" in line and line.strip().startswith("-"): + if ( + recommended_section + and "STATS 302" in line + and line.strip().startswith("-") + ): stats302_in_recommended = True break if line.startswith("###") and "Recommended" not in line: @@ -350,7 +472,11 @@ def test_tc4_all_prereqs_for_stats302( # TC5 — Edge case: all required courses already completed def test_tc5_all_courses_completed( - self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, ): """TC5 (Edge case): Student has completed every required course. @@ -358,8 +484,16 @@ def test_tc5_all_courses_completed( of an empty recommendation grid. """ # Extract all codes from the requirements fixtures to simulate full completion - all_ds = ["COMPSCI 201", "STATS 302", "STATS 303", "STATS 401", - "MATH 201", "MATH 202", "MATH 206", "COMPSCI 301"] + all_ds = [ + "COMPSCI 201", + "STATS 302", + "STATS 303", + "STATS 401", + "MATH 201", + "MATH 202", + "MATH 206", + "COMPSCI 301", + ] all_core = ["GCHINA 101", "GLOCHALL 201", "ETHLDR 201"] completed = all_ds + all_core @@ -370,13 +504,17 @@ def test_tc5_all_courses_completed( ) result = recommender(major="data science", completed_courses=completed) - assert "completed all required courses" in result.lower(), ( - f"Expected completion message, got:\n{result}" - ) + assert ( + "completed all required courses" in result.lower() + ), f"Expected completion message, got:\n{result}" # TC6 — Unknown major def test_tc6_unknown_major( - self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, ): """TC6: User provides a major that doesn't exist in the requirements dir.""" recommender = CourseRecommenderOuter( @@ -389,7 +527,11 @@ def test_tc6_unknown_major( # TC7 — Common-core courses: ETHLDR 201 chain def test_tc7_common_core_prereq_chain( - self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, ): """TC7 (Complex): Tests the common-core prerequisite chain. @@ -407,8 +549,14 @@ def test_tc7_common_core_prereq_chain( # Also complete DS courses so the report focuses on core courses completed = [ "GCHINA 101", # satisfies GLOCHALL 201's prereq - "COMPSCI 201", "STATS 302", "STATS 303", "STATS 401", - "MATH 201", "MATH 202", "MATH 206", "COMPSCI 301", + "COMPSCI 201", + "STATS 302", + "STATS 303", + "STATS 401", + "MATH 201", + "MATH 202", + "MATH 206", + "COMPSCI 301", ] result = recommender(major="data science", completed_courses=completed) @@ -416,25 +564,26 @@ def test_tc7_common_core_prereq_chain( lines = result.split("\n") recommended_section = False glochall_recommended = False - ethldr_not_eligible = False for line in lines: if "Recommended" in line and "eligible" in line.lower(): recommended_section = True - if recommended_section and "GLOCHALL 201" in line and line.strip().startswith("-"): + if ( + recommended_section + and "GLOCHALL 201" in line + and line.strip().startswith("-") + ): glochall_recommended = True if line.startswith("###") and "Recommended" not in line: recommended_section = False - if "not eligible" in line.lower() or "prerequisites not met" in line.lower(): - pass # Just note we're in the not-eligible section - if "ETHLDR 201" in line and ("not eligible" in result.lower()): - ethldr_not_eligible = True assert glochall_recommended, ( "GLOCHALL 201 should be recommended (GCHINA 101 done, GLOCHALL 201 is offered).\n" f"Full output:\n{result}" ) - assert "ETHLDR 201" in result, "ETHLDR 201 should appear somewhere in the report" + assert ( + "ETHLDR 201" in result + ), "ETHLDR 201 should appear somewhere in the report" # --------------------------------------------------------------------------- @@ -443,28 +592,64 @@ def test_tc7_common_core_prereq_chain( class TestCourseRecommenderInfra: - def test_returns_callable(self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses): - fn = CourseRecommenderOuter(req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses) + def test_returns_callable( + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, + ): + fn = CourseRecommenderOuter( + req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ) assert callable(fn) - def test_nonexistent_requirements_dir_raises(self, mock_span_ctx, sample_classdata_real_csv, prereq_csv_with_ds_courses): - fn = CourseRecommenderOuter("/nonexistent/path", sample_classdata_real_csv, prereq_csv_with_ds_courses) + def test_nonexistent_requirements_dir_raises( + self, mock_span_ctx, sample_classdata_real_csv, prereq_csv_with_ds_courses + ): + fn = CourseRecommenderOuter( + "/nonexistent/path", sample_classdata_real_csv, prereq_csv_with_ds_courses + ) with pytest.raises(FileNotFoundError): fn(major="data science", completed_courses=[]) - def test_span_status_ok_on_success(self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses): - fn = CourseRecommenderOuter(req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses) + def test_span_status_ok_on_success( + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, + ): + fn = CourseRecommenderOuter( + req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ) fn(major="data science", completed_courses=[]) calls = mock_span_ctx.set_status.call_args_list assert any(c.args[0].status_code == StatusCode.OK for c in calls if c.args) - def test_span_attributes_set(self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses): - fn = CourseRecommenderOuter(req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses) + def test_span_attributes_set( + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, + ): + fn = CourseRecommenderOuter( + req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ) fn(major="data science", completed_courses=[]) assert mock_span_ctx.set_attributes.called - def test_report_contains_summary_counts(self, mock_span_ctx, req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses): - fn = CourseRecommenderOuter(req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses) + def test_report_contains_summary_counts( + self, + mock_span_ctx, + req_dir, + sample_classdata_real_csv, + prereq_csv_with_ds_courses, + ): + fn = CourseRecommenderOuter( + req_dir, sample_classdata_real_csv, prereq_csv_with_ds_courses + ) result = fn(major="data science", completed_courses=[]) # Report should have summary header stats assert "Total required courses" in result From 0282677a7fc1d3396dd7854f65c71701d31574cc Mon Sep 17 00:00:00 2001 From: "Anar.N" Date: Thu, 16 Apr 2026 14:32:19 +0800 Subject: [PATCH 11/22] black formatted --- chatdku/core/tools/course_recommender.py | 132 +++++++++++++++++------ pyproject.toml | 5 + tests/conftest.py | 24 ++++- tests/test_agent_configuration.py | 89 +++++++++------ 4 files changed, 183 insertions(+), 67 deletions(-) diff --git a/chatdku/core/tools/course_recommender.py b/chatdku/core/tools/course_recommender.py index 13ec787b..5cbd6137 100644 --- a/chatdku/core/tools/course_recommender.py +++ b/chatdku/core/tools/course_recommender.py @@ -37,13 +37,57 @@ # Known DKU subject codes — used to filter false positives from the markdown. _KNOWN_SUBJECTS = { - "DKU", "GERMAN", "INDSTU", "JAPANESE", "KOREAN", "MUSIC", "SPANISH", - "ARHU", "ARTS", "BEHAVSCI", "BIOL", "CHEM", "CHINESE", "COMPDSGN", - "COMPSCI", "CULANTH", "CULMOVE", "CULSOC", "EAP", "ECON", "ENVIR", - "ETHLDR", "GCHINA", "GCULS", "GLHLTH", "GLOCHALL", "HIST", "HUM", "INFOSCI", - "INSTGOV", "LIT", "MATH", "MATSCI", "MEDIA", "MEDIART", "NEUROSCI", - "PHIL", "PHYS", "PHYSEDU", "POLECON", "POLSCI", "PPE", "PSYCH", - "PUBPOL", "SOCIOL", "SOSC", "STATS", "USTUD", "WOC", "RELIG", "MINITERM", + "DKU", + "GERMAN", + "INDSTU", + "JAPANESE", + "KOREAN", + "MUSIC", + "SPANISH", + "ARHU", + "ARTS", + "BEHAVSCI", + "BIOL", + "CHEM", + "CHINESE", + "COMPDSGN", + "COMPSCI", + "CULANTH", + "CULMOVE", + "CULSOC", + "EAP", + "ECON", + "ENVIR", + "ETHLDR", + "GCHINA", + "GCULS", + "GLHLTH", + "GLOCHALL", + "HIST", + "HUM", + "INFOSCI", + "INSTGOV", + "LIT", + "MATH", + "MATSCI", + "MEDIA", + "MEDIART", + "NEUROSCI", + "PHIL", + "PHYS", + "PHYSEDU", + "POLECON", + "POLSCI", + "PPE", + "PSYCH", + "PUBPOL", + "SOCIOL", + "SOSC", + "STATS", + "USTUD", + "WOC", + "RELIG", + "MINITERM", } @@ -144,12 +188,18 @@ def prerequisites_met( if satisfied: return True, "" missing = [c for c in codes_in_prereq if c not in completed_set] - return False, f"Requires one of: {', '.join(codes_in_prereq)} (missing: {', '.join(missing)})" + return ( + False, + f"Requires one of: {', '.join(codes_in_prereq)} (missing: {', '.join(missing)})", + ) else: missing = [c for c in codes_in_prereq if c not in completed_set] if not missing: return True, "" - return False, f"Requires: {', '.join(codes_in_prereq)} (missing: {', '.join(missing)})" + return ( + False, + f"Requires: {', '.join(codes_in_prereq)} (missing: {', '.join(missing)})", + ) # --------------------------------------------------------------------------- @@ -157,7 +207,9 @@ def prerequisites_met( # --------------------------------------------------------------------------- -def _get_offered_courses(course_codes: list[str], classdata_csv_path: str) -> dict[str, list[dict]]: +def _get_offered_courses( + course_codes: list[str], classdata_csv_path: str +) -> dict[str, list[dict]]: """Return a mapping of course_code → list of schedule rows for offered courses. Courses not found in the schedule CSV are omitted from the result. @@ -209,7 +261,11 @@ def _format_schedule_rows(rows: list[dict]) -> str: status = str(row.get("Class Status", "")).strip() # Build day string from individual boolean columns. - days = "".join(abbr for col, abbr in _DAY_COLS if str(row.get(col, "N")).strip().upper() == "Y") + days = "".join( + abbr + for col, abbr in _DAY_COLS + if str(row.get(col, "N")).strip().upper() == "Y" + ) line_parts = [] if section: @@ -277,14 +333,20 @@ def CourseRecommender( Returns: A Markdown-formatted recommendation report. """ - with span_ctx_start("CourseRecommender", OpenInferenceSpanKindValues.TOOL) as span: - span.set_attributes({ - SpanAttributes.INPUT_VALUE: safe_json_dumps({ - "major": major, - "completed_courses": completed_courses, - }), - SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, - }) + with span_ctx_start( + "CourseRecommender", OpenInferenceSpanKindValues.TOOL + ) as span: + span.set_attributes( + { + SpanAttributes.INPUT_VALUE: safe_json_dumps( + { + "major": major, + "completed_courses": completed_courses, + } + ), + SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) try: result = _run_recommendation( @@ -294,18 +356,22 @@ def CourseRecommender( classdata_csv_path=classdata_csv_path, prereq_csv_path=prereq_csv_path, ) - span.set_attributes({ - SpanAttributes.OUTPUT_VALUE: result[:500], - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.TEXT.value, - }) + span.set_attributes( + { + SpanAttributes.OUTPUT_VALUE: result[:500], + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.TEXT.value, + } + ) span.set_status(Status(StatusCode.OK)) return result except Exception as e: - span.set_attributes({ - SpanAttributes.OUTPUT_VALUE: safe_json_dumps({"error": str(e)}), - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, - }) + span.set_attributes( + { + SpanAttributes.OUTPUT_VALUE: safe_json_dumps({"error": str(e)}), + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) span.set_status(Status(StatusCode.ERROR), str(e)) raise @@ -344,14 +410,18 @@ def _run_recommendation( common_core_stem = _best_match("requirements for all majors", stems) common_core_courses: list[str] = [] if common_core_stem: - common_core_md = (req_dir / f"{common_core_stem}.md").read_text(encoding="utf-8") + common_core_md = (req_dir / f"{common_core_stem}.md").read_text( + encoding="utf-8" + ) common_core_courses = parse_course_codes(common_core_md) # --- 3. Compute remaining required courses --- completed_set = {c.strip().upper() for c in completed_courses} # Normalize completed_courses to "SUBJECT NNN" format for comparison. # Users might type "CS 101" or "compsci 101" — handle by uppercasing. - all_required = list(dict.fromkeys(major_courses + common_core_courses)) # preserve order, deduplicate + all_required = list( + dict.fromkeys(major_courses + common_core_courses) + ) # preserve order, deduplicate remaining = [c for c in all_required if c.upper() not in completed_set] if not remaining: @@ -372,9 +442,9 @@ def _run_recommendation( prereq_df = None prereq_available = False - eligible_and_offered: list[tuple[str, str]] = [] # (course, schedule_summary) + eligible_and_offered: list[tuple[str, str]] = [] # (course, schedule_summary) eligible_not_offered: list[str] = [] - not_eligible: list[tuple[str, str]] = [] # (course, reason) + not_eligible: list[tuple[str, str]] = [] # (course, reason) no_schedule_data: list[str] = [] for course in remaining: diff --git a/pyproject.toml b/pyproject.toml index 98e6a7b9..85a8570b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -100,3 +100,8 @@ packages = ["chatdku"] [tool.flake8] ignore = ["E203","W503"] max-line-length = 120 + +[dependency-groups] +dev = [ + "flake8>=7.3.0", +] diff --git a/tests/conftest.py b/tests/conftest.py index a1952d7b..1e1bd5b8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -112,15 +112,33 @@ def sample_classdata_real_csv(tmp_path): "Grading": ["GRD"] * 5, "Start Date": ["08/25/2026"] * 5, "End Date": ["10/08/2026"] * 5, - "Mtg Start": ["9:00:00.000000AM", "10:00:00.000000AM", "2:00:00.000000PM", "8:00:00.000000AM", "9:00:00.000000AM"], - "Mtg End": ["9:50:00.000000AM", "10:50:00.000000AM", "2:50:00.000000PM", "8:50:00.000000AM", "9:50:00.000000AM"], + "Mtg Start": [ + "9:00:00.000000AM", + "10:00:00.000000AM", + "2:00:00.000000PM", + "8:00:00.000000AM", + "9:00:00.000000AM", + ], + "Mtg End": [ + "9:50:00.000000AM", + "10:50:00.000000AM", + "2:50:00.000000PM", + "8:50:00.000000AM", + "9:50:00.000000AM", + ], "Mon": ["Y", "Y", "N", "Y", "Y"], "Tues": ["N", "N", "Y", "N", "N"], "Wed": ["Y", "Y", "N", "Y", "Y"], "Thurs": ["N", "N", "Y", "N", "N"], "Fri": ["Y", "Y", "N", "Y", "Y"], "Room No": ["IB1001"] * 5, - "Instructor": ["Smith,Alice", "Jones,Bob", "Lee,Carol", "Kim,Dave", "Wu,Eve"], + "Instructor": [ + "Smith,Alice", + "Jones,Bob", + "Lee,Carol", + "Kim,Dave", + "Wu,Eve", + ], } ) df.to_csv(csv_path, index=False) diff --git a/tests/test_agent_configuration.py b/tests/test_agent_configuration.py index 86d1d79a..9ea60f69 100644 --- a/tests/test_agent_configuration.py +++ b/tests/test_agent_configuration.py @@ -34,31 +34,35 @@ def test_planner_instructions_require_policy_retrieval_before_recommender(self): for kw in ("policy", "policies", "mandatory courses", "year-specific") ), "Planner must instruct Executor to retrieve year-specific policies" # Should still mention CourseRecommender - assert "CourseRecommender" in instructions, ( - "Planner must still reference CourseRecommender as the baseline tool" - ) + assert ( + "CourseRecommender" in instructions + ), "Planner must still reference CourseRecommender as the baseline tool" - def test_planner_instructions_mention_vector_or_keyword_retriever_for_policies(self): + def test_planner_instructions_mention_vector_or_keyword_retriever_for_policies( + self, + ): """Planner must name VectorRetriever or KeywordRetriever for policy lookup.""" instructions = PlannerSignature.__doc__ or "" - assert "VectorRetriever" in instructions or "KeywordRetriever" in instructions, ( - "Planner must instruct use of VectorRetriever/KeywordRetriever for policy lookup" - ) + assert ( + "VectorRetriever" in instructions or "KeywordRetriever" in instructions + ), "Planner must instruct use of VectorRetriever/KeywordRetriever for policy lookup" def test_planner_missing_info_demo_asks_for_all_three(self): """The 'missing info' demo must ask for major, year, and completed courses.""" missing_info_demo = next( (d for d in PLANNER_DEMOS if d.action_type == "send_message"), None ) - assert missing_info_demo is not None, "PLANNER_DEMOS must have a send_message example" + assert ( + missing_info_demo is not None + ), "PLANNER_DEMOS must have a send_message example" action = missing_info_demo.action.lower() assert "major" in action, "Missing-info message must ask for major" - assert any(kw in action for kw in ("year", "matriculation", "class of")), ( - "Missing-info message must ask for year of matriculation" - ) - assert any(kw in action for kw in ("completed", "taken", "taking")), ( - "Missing-info message must ask for completed courses" - ) + assert any( + kw in action for kw in ("year", "matriculation", "class of") + ), "Missing-info message must ask for year of matriculation" + assert any( + kw in action for kw in ("completed", "taken", "taking") + ), "Missing-info message must ask for completed courses" def test_planner_schedule_demo_is_policy_first(self): """The full schedule planning demo must mention policy retrieval before CourseRecommender.""" @@ -67,26 +71,38 @@ def test_planner_schedule_demo_is_policy_first(self): schedule_demo = next( (d for d in plan_demos if "Class of" in d.current_user_message), None ) - assert schedule_demo is not None, ( - "PLANNER_DEMOS must include a complete schedule planning example with class year" - ) + assert ( + schedule_demo is not None + ), "PLANNER_DEMOS must include a complete schedule planning example with class year" action = schedule_demo.action # Policy step should appear before CourseRecommender call in the action text - policy_keywords = ["policy", "policies", "mandatory", "retrieve", "VectorRetriever", - "KeywordRetriever", "year-specific", "requirements"] + policy_keywords = [ + "policy", + "policies", + "mandatory", + "retrieve", + "VectorRetriever", + "KeywordRetriever", + "year-specific", + "requirements", + ] has_policy_step = any(kw.lower() in action.lower() for kw in policy_keywords) - assert has_policy_step, ( - f"Schedule planning demo must include a policy-retrieval step.\nAction:\n{action}" - ) + assert ( + has_policy_step + ), f"Schedule planning demo must include a policy-retrieval step.\nAction:\n{action}" policy_pos = min( - (action.lower().find(kw.lower()) for kw in policy_keywords if kw.lower() in action.lower()), + ( + action.lower().find(kw.lower()) + for kw in policy_keywords + if kw.lower() in action.lower() + ), default=-1, ) recommender_pos = action.find("CourseRecommender") assert recommender_pos != -1, "Demo must mention CourseRecommender" - assert policy_pos < recommender_pos, ( - "Policy retrieval step must come BEFORE CourseRecommender in the demo plan" - ) + assert ( + policy_pos < recommender_pos + ), "Policy retrieval step must come BEFORE CourseRecommender in the demo plan" # --------------------------------------------------------------------------- @@ -112,15 +128,15 @@ def test_assess_signature_has_current_agenda_not_plan(self): "AssessSignature must use 'current_agenda' (not 'plan') to indicate " "the agenda can grow beyond the original plan" ) - assert "plan" not in input_fields, ( - "AssessSignature must not use the old 'plan' field name" - ) + assert ( + "plan" not in input_fields + ), "AssessSignature must not use the old 'plan' field name" def test_assess_signature_decision_field_exists_as_output(self): """AssessSignature must have a 'decision' output field.""" - assert "decision" in AssessSignature.output_fields, ( - "AssessSignature must define a 'decision' output field" - ) + assert ( + "decision" in AssessSignature.output_fields + ), "AssessSignature must define a 'decision' output field" # Verify it is not accidentally an input field. assert "decision" not in AssessSignature.input_fields @@ -129,11 +145,17 @@ def test_assess_signature_docstring_mentions_agenda_extensions(self): doc = AssessSignature.__doc__ or "" assert any( kw in doc.lower() - for kw in ("new investigation", "agenda extension", "revealed", "discovered") + for kw in ( + "new investigation", + "agenda extension", + "revealed", + "discovered", + ) ), "AssessSignature docstring must explain when to extend the agenda" def test_executor_get_token_limits_accepts_current_agenda(self, tmp_path): """Executor.get_token_limits must accept 'current_agenda' (not 'plan').""" + # Build a minimal Executor with a trivial tool. def dummy_tool(query: str) -> str: """A dummy tool for testing. Args: query (str): The query.""" @@ -158,6 +180,7 @@ def dummy_tool(query: str) -> str: def test_executor_max_iterations_default_is_five_or_more(self): """Executor default max_iterations should be >= 5 for policy-aware planning.""" import inspect + sig = inspect.signature(Executor.__init__) default = sig.parameters["max_iterations"].default assert default >= 5, ( From cd6ac076dc306d827a1b801c478abda44e31659a Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Thu, 16 Apr 2026 14:36:11 +0800 Subject: [PATCH 12/22] Renamed query lookup to syllabi lookus --- chatdku/core/agent.py | 4 +- .../classes_schema.json | 0 .../create_chatdku_readonly_user.sql | 0 .../create_table.sql | 0 .../curriculum_schema.json | 0 .../{syllabi_tool => syllabi}/example.py | 0 .../{syllabi_tool => syllabi}/generate_sql.py | 0 .../{syllabi_tool => syllabi}/get_schema.py | 0 .../reqs_syllabi_agent | 0 .../run_local_ingest.sh | 0 .../syllabi_tool.py} | 13 +++--- .../{syllabi_tool => syllabi}/update_db.py | 0 chatdku/django/chatdku_django/chat/tools.py | 4 +- chatdku/django/chatdku_django/chat/views.py | 2 - tests/conftest.py | 2 +- tests/test_sql_agent.py | 46 +++++++++---------- utils/startup_timer.py | 8 ++-- 17 files changed, 38 insertions(+), 41 deletions(-) rename chatdku/core/tools/{syllabi_tool => syllabi}/classes_schema.json (100%) rename chatdku/core/tools/{syllabi_tool => syllabi}/create_chatdku_readonly_user.sql (100%) rename chatdku/core/tools/{syllabi_tool => syllabi}/create_table.sql (100%) rename chatdku/core/tools/{syllabi_tool => syllabi}/curriculum_schema.json (100%) rename chatdku/core/tools/{syllabi_tool => syllabi}/example.py (100%) rename chatdku/core/tools/{syllabi_tool => syllabi}/generate_sql.py (100%) rename chatdku/core/tools/{syllabi_tool => syllabi}/get_schema.py (100%) rename chatdku/core/tools/{syllabi_tool => syllabi}/reqs_syllabi_agent (100%) rename chatdku/core/tools/{syllabi_tool => syllabi}/run_local_ingest.sh (100%) rename chatdku/core/tools/{syllabi_tool/query_curriculum_db.py => syllabi/syllabi_tool.py} (89%) rename chatdku/core/tools/{syllabi_tool => syllabi}/update_db.py (100%) diff --git a/chatdku/core/agent.py b/chatdku/core/agent.py index 4566973e..c7f9ea72 100755 --- a/chatdku/core/agent.py +++ b/chatdku/core/agent.py @@ -26,7 +26,7 @@ VectorRetrieverOuter, ) from chatdku.core.tools.major_requirements import MajorRequirementsLookupOuter -from chatdku.core.tools.syllabi_tool.query_curriculum_db import QueryCurriculumOuter +from chatdku.core.tools.syllabi.syllabi_tool import SyllabusLookupOuter from chatdku.core.utils import format_trajectory, load_conversation, span_start from chatdku.setup import setup, use_phoenix @@ -239,7 +239,7 @@ def build_agent(streaming: bool = True, max_iterations: int = 5) -> "Agent": files=[], ), MajorRequirementsLookupOuter(config.major_requirements_dir), - QueryCurriculumOuter(), + SyllabusLookupOuter(), PrerequisiteLookupOuter(prereq_csv_path=config.prereq_csv_path), CourseScheduleLookupOuter(classdata_csv_path=config.classdata_csv_path), CourseRecommenderOuter( diff --git a/chatdku/core/tools/syllabi_tool/classes_schema.json b/chatdku/core/tools/syllabi/classes_schema.json similarity index 100% rename from chatdku/core/tools/syllabi_tool/classes_schema.json rename to chatdku/core/tools/syllabi/classes_schema.json diff --git a/chatdku/core/tools/syllabi_tool/create_chatdku_readonly_user.sql b/chatdku/core/tools/syllabi/create_chatdku_readonly_user.sql similarity index 100% rename from chatdku/core/tools/syllabi_tool/create_chatdku_readonly_user.sql rename to chatdku/core/tools/syllabi/create_chatdku_readonly_user.sql diff --git a/chatdku/core/tools/syllabi_tool/create_table.sql b/chatdku/core/tools/syllabi/create_table.sql similarity index 100% rename from chatdku/core/tools/syllabi_tool/create_table.sql rename to chatdku/core/tools/syllabi/create_table.sql diff --git a/chatdku/core/tools/syllabi_tool/curriculum_schema.json b/chatdku/core/tools/syllabi/curriculum_schema.json similarity index 100% rename from chatdku/core/tools/syllabi_tool/curriculum_schema.json rename to chatdku/core/tools/syllabi/curriculum_schema.json diff --git a/chatdku/core/tools/syllabi_tool/example.py b/chatdku/core/tools/syllabi/example.py similarity index 100% rename from chatdku/core/tools/syllabi_tool/example.py rename to chatdku/core/tools/syllabi/example.py diff --git a/chatdku/core/tools/syllabi_tool/generate_sql.py b/chatdku/core/tools/syllabi/generate_sql.py similarity index 100% rename from chatdku/core/tools/syllabi_tool/generate_sql.py rename to chatdku/core/tools/syllabi/generate_sql.py diff --git a/chatdku/core/tools/syllabi_tool/get_schema.py b/chatdku/core/tools/syllabi/get_schema.py similarity index 100% rename from chatdku/core/tools/syllabi_tool/get_schema.py rename to chatdku/core/tools/syllabi/get_schema.py diff --git a/chatdku/core/tools/syllabi_tool/reqs_syllabi_agent b/chatdku/core/tools/syllabi/reqs_syllabi_agent similarity index 100% rename from chatdku/core/tools/syllabi_tool/reqs_syllabi_agent rename to chatdku/core/tools/syllabi/reqs_syllabi_agent diff --git a/chatdku/core/tools/syllabi_tool/run_local_ingest.sh b/chatdku/core/tools/syllabi/run_local_ingest.sh similarity index 100% rename from chatdku/core/tools/syllabi_tool/run_local_ingest.sh rename to chatdku/core/tools/syllabi/run_local_ingest.sh diff --git a/chatdku/core/tools/syllabi_tool/query_curriculum_db.py b/chatdku/core/tools/syllabi/syllabi_tool.py similarity index 89% rename from chatdku/core/tools/syllabi_tool/query_curriculum_db.py rename to chatdku/core/tools/syllabi/syllabi_tool.py index 0f15c52c..06294aad 100644 --- a/chatdku/core/tools/syllabi_tool/query_curriculum_db.py +++ b/chatdku/core/tools/syllabi/syllabi_tool.py @@ -8,26 +8,25 @@ from opentelemetry.trace import Status, StatusCode from chatdku.core.tools.retriever.base_retriever import NodeWithScore, nodes_to_OTLP -from chatdku.core.tools.syllabi_tool.generate_sql import GenerateSQL +from chatdku.core.tools.syllabi.generate_sql import GenerateSQL from chatdku.core.utils import span_ctx_start from chatdku.setup import DB table_name = "curriculum" -def QueryCurriculumOuter(N=3): +def SyllabusLookupOuter(N=3): db = DB() sql_agent = GenerateSQL() db_schema = fetch_schema(db=db) - def QueryCurriculum(query: str, current_user_message: str) -> tuple[str, dict]: + def SyllabusLookup(query: str, current_user_message: str) -> tuple[str, dict]: """ - Takes a natural language query about courses and classes offered - at Duke Kunshan University -> generates intermediate SQL query + Takes a natural language query about course syllabus -> generates intermediate SQL query passed into Postgres which has courses' syllabi -> Result formatted in natural language. It can answer what a specific course covers, what kind of assignments - are given, a course's grading policy, and a course's history (when it was offered). + are given, and a course's grading policy. Good tool for syllabus questions. @@ -95,7 +94,7 @@ def QueryCurriculum(query: str, current_user_message: str) -> tuple[str, dict]: return answer, internal_result - return QueryCurriculum + return SyllabusLookup def fetch_schema(db: DB) -> str: diff --git a/chatdku/core/tools/syllabi_tool/update_db.py b/chatdku/core/tools/syllabi/update_db.py similarity index 100% rename from chatdku/core/tools/syllabi_tool/update_db.py rename to chatdku/core/tools/syllabi/update_db.py diff --git a/chatdku/django/chatdku_django/chat/tools.py b/chatdku/django/chatdku_django/chat/tools.py index 98a5bd0a..7411f213 100644 --- a/chatdku/django/chatdku_django/chat/tools.py +++ b/chatdku/django/chatdku_django/chat/tools.py @@ -1,5 +1,5 @@ from chatdku.core.tools.llama_index_tools import KeywordRetrieverOuter, VectorRetrieverOuter -from chatdku.core.tools.syllabi_tool.query_curriculum_db import QueryCurriculumOuter +from chatdku.core.tools.syllabi.syllabi_tool import SyllabusLookupOuter def get_tools(user_id: str, search_mode, docs): @@ -21,7 +21,7 @@ def get_tools(user_id: str, search_mode, docs): search_mode=search_mode, files=docs, ), - QueryCurriculumOuter(), + SyllabusLookupOuter(), ] return base_tools diff --git a/chatdku/django/chatdku_django/chat/views.py b/chatdku/django/chatdku_django/chat/views.py index 5b39d547..852d3077 100644 --- a/chatdku/django/chatdku_django/chat/views.py +++ b/chatdku/django/chatdku_django/chat/views.py @@ -30,8 +30,6 @@ from rest_framework.views import APIView from chatdku.core.agent import Agent -from chatdku.core.tools.llama_index_tools import KeywordRetrieverOuter, VectorRetrieverOuter -from chatdku.core.tools.syllabi_tool.query_curriculum_db import QueryCurriculumOuter from chat.tools import get_tools logger = logging.getLogger(__name__) diff --git a/tests/conftest.py b/tests/conftest.py index 1e1bd5b8..d6083818 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -26,7 +26,7 @@ def fake_span_ctx_start(name, kind, parent_context=None): "chatdku.core.tools.course_recommender.span_ctx_start", "chatdku.core.tools.get_prerequisites.span_ctx_start", "chatdku.core.tools.major_requirements.span_ctx_start", - "chatdku.core.tools.syllabi_tool.query_curriculum_db.span_ctx_start", + "chatdku.core.tools.syllabi.query_curriculum_db.span_ctx_start", "chatdku.core.tools.retriever.base_retriever.span_ctx_start", ] for target in targets: diff --git a/tests/test_sql_agent.py b/tests/test_sql_agent.py index eebca60f..ab3d4b98 100644 --- a/tests/test_sql_agent.py +++ b/tests/test_sql_agent.py @@ -10,15 +10,15 @@ import pytest -from chatdku.core.tools.syllabi_tool.generate_sql import ( +from chatdku.core.tools.syllabi.generate_sql import ( _collapse_repeated_lines, _dedupe_lines, _truncate_long_output, ) # Import helpers directly after patching -from chatdku.core.tools.syllabi_tool.query_curriculum_db import ( - QueryCurriculumOuter, +from chatdku.core.tools.syllabi.syllabi_tool import ( + SyllabusLookupOuter, fetch_schema, ) @@ -27,7 +27,7 @@ # We patch setup() and use_phoenix() before importing the module. -query_curriculum_db = QueryCurriculumOuter() +query_curriculum_db = SyllabusLookupOuter() class TestCollapseRepeatedLines: @@ -149,7 +149,7 @@ def mock_db(monkeypatch): ] mock_db_cls = MagicMock(return_value=db_instance) monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.DB", + "chatdku.core.tools.syllabi.query_curriculum_db.DB", mock_db_cls, ) return db_instance @@ -160,7 +160,7 @@ def mock_generate_sql(monkeypatch): sql_agent = MagicMock(return_value=FAKE_SQL) mock_cls = MagicMock(return_value=sql_agent) monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.GenerateSQL", + "chatdku.core.tools.syllabi.query_curriculum_db.GenerateSQL", mock_cls, ) return sql_agent @@ -175,7 +175,7 @@ def mock_dspy_predict(monkeypatch): predictor_instance = MagicMock(return_value=fake_result) mock_predict_cls = MagicMock(return_value=predictor_instance) monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.dspy.Predict", + "chatdku.core.tools.syllabi.query_curriculum_db.dspy.Predict", mock_predict_cls, ) return fake_result @@ -224,7 +224,7 @@ def test_sql_execution_error_handled_gracefully( Exception("DB is down"), # SQL execution fails ] monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.DB", + "chatdku.core.tools.syllabi.query_curriculum_db.DB", MagicMock(return_value=db_instance), ) # Should not raise; error is caught and passed to the LM as text @@ -238,7 +238,7 @@ def test_think_section_stripped_from_result( fake_result.result = "internalClean answer." predictor_instance = MagicMock(return_value=fake_result) monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.dspy.Predict", + "chatdku.core.tools.syllabi.query_curriculum_db.dspy.Predict", MagicMock(return_value=predictor_instance), ) result, internal = query_curriculum_db("Test query.", "Test query.") @@ -252,7 +252,7 @@ def test_repeated_lines_in_lm_output_collapsed( fake_result.result = "\n".join(["answer"] * 20) predictor_instance = MagicMock(return_value=fake_result) monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.dspy.Predict", + "chatdku.core.tools.syllabi.query_curriculum_db.dspy.Predict", MagicMock(return_value=predictor_instance), ) result, internal = query_curriculum_db( @@ -266,7 +266,7 @@ def mock_db_outer(monkeypatch): db_instance = MagicMock() db_instance.execute.side_effect = [FAKE_SCHEMA_ROWS, FAKE_ROWS] monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.DB", + "chatdku.core.tools.syllabi.query_curriculum_db.DB", MagicMock(return_value=db_instance), ) return db_instance @@ -276,7 +276,7 @@ def mock_db_outer(monkeypatch): def mock_generate_sql_outer(monkeypatch): sql_agent = MagicMock(return_value=FAKE_SQL) monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.GenerateSQL", + "chatdku.core.tools.syllabi.query_curriculum_db.GenerateSQL", MagicMock(return_value=sql_agent), ) return sql_agent @@ -288,7 +288,7 @@ def mock_dspy_predict_outer(monkeypatch): fake_result.result = "Two math courses found." predictor_instance = MagicMock(return_value=fake_result) monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.dspy.Predict", + "chatdku.core.tools.syllabi.query_curriculum_db.dspy.Predict", MagicMock(return_value=predictor_instance), ) return fake_result @@ -298,7 +298,7 @@ class TestQueryCurriculumOuter: def test_returns_tuple( self, mock_db_outer, mock_generate_sql_outer, mock_dspy_predict_outer ): - fn = QueryCurriculumOuter() + fn = SyllabusLookupOuter() result = fn("What courses are there?", "What courses are there?") assert isinstance(result, tuple) assert len(result) == 2 @@ -306,14 +306,14 @@ def test_returns_tuple( def test_result_is_string( self, mock_db_outer, mock_generate_sql_outer, mock_dspy_predict_outer ): - fn = QueryCurriculumOuter() + fn = SyllabusLookupOuter() result_str, internal = fn("List CS courses.", "List CS courses.") assert isinstance(result_str, str) def test_internal_result_contains_sql( self, mock_db_outer, mock_generate_sql_outer, mock_dspy_predict_outer ): - fn = QueryCurriculumOuter() + fn = SyllabusLookupOuter() _, internal = fn("Find courses.", "Find courses.") assert "sql" in internal assert isinstance(internal["sql"], str) @@ -325,16 +325,16 @@ def test_sql_error_reflected_in_output(self, monkeypatch, mock_generate_sql_oute Exception("timeout"), ] monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.DB", + "chatdku.core.tools.syllabi.query_curriculum_db.DB", MagicMock(return_value=db_instance), ) fake_result = MagicMock() fake_result.result = "SQL execution error: timeout" monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.dspy.Predict", + "chatdku.core.tools.syllabi.query_curriculum_db.dspy.Predict", MagicMock(return_value=MagicMock(return_value=fake_result)), ) - fn = QueryCurriculumOuter() + fn = SyllabusLookupOuter() result_str, _ = fn("Any query.", "Any query.") assert isinstance(result_str, str) @@ -344,10 +344,10 @@ def test_think_section_stripped( fake_result = MagicMock() fake_result.result = "skipReal answer." monkeypatch.setattr( - "chatdku.core.tools.syllabi_tool.query_curriculum_db.dspy.Predict", + "chatdku.core.tools.syllabi.query_curriculum_db.dspy.Predict", MagicMock(return_value=MagicMock(return_value=fake_result)), ) - fn = QueryCurriculumOuter() + fn = SyllabusLookupOuter() result_str, _ = fn("Q.", "Q.") assert "" not in result_str assert "Real answer." in result_str @@ -360,10 +360,10 @@ def test_no_tracer_attribute_on_config( monkeypatch, ): """Runs without error when config has no tracer (uses nullcontext).""" - import chatdku.core.tools.syllabi_tool.query_curriculum_db as mod + import chatdku.core.tools.syllabi.syllabi_tool as mod fake_config = MagicMock(spec=[]) # no tracer attribute monkeypatch.setattr(mod, "config", fake_config) - fn = QueryCurriculumOuter() + fn = SyllabusLookupOuter() result_str, internal = fn("Any query.", "Any query.") assert isinstance(result_str, str) diff --git a/utils/startup_timer.py b/utils/startup_timer.py index 2e58125c..1570886a 100644 --- a/utils/startup_timer.py +++ b/utils/startup_timer.py @@ -26,9 +26,9 @@ def lap(label: str, t_prev: float) -> float: from chatdku.core.tools.retriever.keyword_retriever import KeywordRetriever; t = lap("import KeywordRetriever (+ NLTK check)", t) # noqa: E402,E401,E501 from chatdku.core.tools.retriever.vector_retriever import VectorRetriever; t = lap("import VectorRetriever (+ chromadb)", t) # noqa: E402,E401,E501 from chatdku.core.tools.major_requirements import MajorRequirementsLookupOuter; t = lap("import MajorRequirementsLookupOuter", t) # noqa: E402,E401,E501 -from chatdku.core.tools.syllabi_tool.query_curriculum_db import QueryCurriculumOuter; t = lap("import QueryCurriculumOuter (+ DB)", t) # noqa: E402,E401,E501 -from chatdku.core.tools.get_prerequisites import PrerequisiteLookupOuter; t = lap("import PrerequisiteLookupOuter", t) # noqa: E402,E401,E501 -from chatdku.core.tools.course_schedule import CourseScheduleLookupOuter; t = lap("import CourseScheduleLookupOuter", t) # noqa: E402,E401,E501 +from chatdku.core.tools.syllabi.syllabi_tool import SyllabusLookupOuter; t = lap("import QueryCurriculumOuter (+ DB)", t) # noqa: E402,E401,E501 +t = lap("import PrerequisiteLookupOuter", t) # noqa: E402,E401,E501 +t = lap("import CourseScheduleLookupOuter", t) # noqa: E402,E401,E501 from chatdku.setup import setup, use_phoenix; t = lap("import setup, use_phoenix", t) # noqa: E402,E401 # --- initialization --- @@ -58,7 +58,7 @@ def lap(label: str, t_prev: float) -> float: MajorRequirementsLookupOuter(config.major_requirements_dir) t = lap("MajorRequirementsLookupOuter() init", t) -QueryCurriculumOuter() +SyllabusLookupOuter() t = lap("QueryCurriculumOuter() init (DB connect + schema fetch)", t) print(f"\n=== total: {t - _t0:.2f}s ===") From d1bfbfeb7224410af13606da2db36a527ead2900 Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Thu, 16 Apr 2026 14:54:02 +0800 Subject: [PATCH 13/22] Refactor - Removed unnecessary tool outer functions --- chatdku/config.py | 2 +- chatdku/core/agent.py | 20 +-- chatdku/core/tools/course_recommender.py | 220 ++++++++--------------- chatdku/core/tools/course_schedule.py | 143 +++++++-------- chatdku/core/tools/get_prerequisites.py | 111 +++++------- chatdku/core/tools/major_requirements.py | 191 +++++++++----------- 6 files changed, 280 insertions(+), 407 deletions(-) diff --git a/chatdku/config.py b/chatdku/config.py index d04ddcbe..89642579 100644 --- a/chatdku/config.py +++ b/chatdku/config.py @@ -112,7 +112,7 @@ def _initialize_defaults(self): # External data "prereq_csv_path": "/datapool/chatdku_external_data/DK_SR_PREREQ_CRSE_CHATDKU.csv", "classdata_csv_path": "/datapool/chatdku_external_data/cleaned_classdata.csv", - "major_requirements_dir": "/datapool/chatdku_external_data/doc_testing/output/ug_bulletin_2023-2024", + "major_req_dir": "/datapool/chatdku_external_data/doc_testing/output/ug_bulletin_2023-2024", } ) # refresh read-only view diff --git a/chatdku/core/agent.py b/chatdku/core/agent.py index c7f9ea72..70fa7c3f 100755 --- a/chatdku/core/agent.py +++ b/chatdku/core/agent.py @@ -18,14 +18,14 @@ from chatdku.core.dspy_classes.executor import Executor from chatdku.core.dspy_classes.plan import Planner from chatdku.core.dspy_classes.synthesizer import Synthesizer -from chatdku.core.tools.course_recommender import CourseRecommenderOuter -from chatdku.core.tools.course_schedule import CourseScheduleLookupOuter -from chatdku.core.tools.get_prerequisites import PrerequisiteLookupOuter +from chatdku.core.tools.course_recommender import CourseRecommender +from chatdku.core.tools.course_schedule import CourseScheduleLookup +from chatdku.core.tools.get_prerequisites import PrerequisiteLookup from chatdku.core.tools.llama_index_tools import ( KeywordRetrieverOuter, VectorRetrieverOuter, ) -from chatdku.core.tools.major_requirements import MajorRequirementsLookupOuter +from chatdku.core.tools.major_requirements import MajorRequirementsLookup from chatdku.core.tools.syllabi.syllabi_tool import SyllabusLookupOuter from chatdku.core.utils import format_trajectory, load_conversation, span_start from chatdku.setup import setup, use_phoenix @@ -238,15 +238,11 @@ def build_agent(streaming: bool = True, max_iterations: int = 5) -> "Agent": search_mode=search_mode, files=[], ), - MajorRequirementsLookupOuter(config.major_requirements_dir), SyllabusLookupOuter(), - PrerequisiteLookupOuter(prereq_csv_path=config.prereq_csv_path), - CourseScheduleLookupOuter(classdata_csv_path=config.classdata_csv_path), - CourseRecommenderOuter( - requirements_dir=config.major_requirements_dir, - classdata_csv_path=config.classdata_csv_path, - prereq_csv_path=config.prereq_csv_path, - ), + MajorRequirementsLookup, + PrerequisiteLookup, + CourseRecommender, + CourseScheduleLookup, ] return Agent( diff --git a/chatdku/core/tools/course_recommender.py b/chatdku/core/tools/course_recommender.py index 5cbd6137..db47179f 100644 --- a/chatdku/core/tools/course_recommender.py +++ b/chatdku/core/tools/course_recommender.py @@ -25,6 +25,7 @@ from chatdku.core.tools.major_requirements import _best_match, _list_stems from chatdku.core.utils import span_ctx_start +from chatdku.config import config # --------------------------------------------------------------------------- # Course code parsing @@ -37,57 +38,15 @@ # Known DKU subject codes — used to filter false positives from the markdown. _KNOWN_SUBJECTS = { - "DKU", - "GERMAN", - "INDSTU", - "JAPANESE", - "KOREAN", - "MUSIC", - "SPANISH", - "ARHU", - "ARTS", - "BEHAVSCI", - "BIOL", - "CHEM", - "CHINESE", - "COMPDSGN", - "COMPSCI", - "CULANTH", - "CULMOVE", - "CULSOC", - "EAP", - "ECON", - "ENVIR", - "ETHLDR", - "GCHINA", - "GCULS", - "GLHLTH", - "GLOCHALL", - "HIST", - "HUM", - "INFOSCI", - "INSTGOV", - "LIT", - "MATH", - "MATSCI", - "MEDIA", - "MEDIART", - "NEUROSCI", - "PHIL", - "PHYS", - "PHYSEDU", - "POLECON", - "POLSCI", - "PPE", - "PSYCH", - "PUBPOL", - "SOCIOL", - "SOSC", - "STATS", - "USTUD", - "WOC", - "RELIG", - "MINITERM", + "DKU", "GERMAN", "INDSTU", "JAPANESE", "KOREAN", "MUSIC", + "SPANISH", "ARHU", "ARTS", "BEHAVSCI", "BIOL", "CHEM", + "CHINESE", "COMPDSGN", "COMPSCI", "CULANTH", "CULMOVE", "CULSOC", + "EAP", "ECON", "ENVIR", "ETHLDR", "GCHINA", "GCULS", + "GLHLTH", "GLOCHALL", "HIST", "HUM", "INFOSCI", "INSTGOV", + "LIT", "MATH", "MATSCI", "MEDIA", "MEDIART", "NEUROSCI", + "PHIL", "PHYS", "PHYSEDU", "POLECON", "POLSCI", "PPE", + "PSYCH", "PUBPOL", "SOCIOL", "SOSC", "STATS", "USTUD", + "WOC", "RELIG", "MINITERM", } @@ -288,94 +247,76 @@ def _format_schedule_rows(rows: list[dict]) -> str: # --------------------------------------------------------------------------- -def CourseRecommenderOuter( - requirements_dir: str, - classdata_csv_path: str, - prereq_csv_path: str, -): +def CourseRecommender( + major: str, + completed_courses: list[str], +) -> str: """ - DSPy tool factory for generating a structured next-semester course recommendation. - - Combines major requirements data, schedule availability, and prerequisite - satisfaction into a single structured report, so the Executor only needs - one tool call to get a complete recommendation. + Generate a structured next-semester course recommendation for a DKU student. + + Given the student's major and the courses they have already completed, + this tool: + 1. Looks up the graduation requirements for the student's major. + 2. Looks up the university-wide common-core requirements. + 3. Identifies which required courses still need to be completed. + 4. Checks which remaining courses are offered next semester. + 5. Checks whether the student meets prerequisites for each available course. + 6. Returns a grouped report: recommended, eligible-but-not-offered, + prerequisites-not-met, and no-schedule-data categories. Args: - requirements_dir: Directory containing per-major Markdown requirement files. - classdata_csv_path: Path to the cleaned class-schedule CSV. - prereq_csv_path: Path to the prerequisites CSV (UTF-16LE encoded). + major (str): The student's major and optional track, e.g. "data science" + or "computation and design computer science". + completed_courses (list[str]): Courses the student has already completed + or is currently taking, e.g. ["COMPSCI 101", "MATH 105", "STATS 201"]. + + Returns: + A Markdown-formatted recommendation report. """ - req_dir = Path(requirements_dir) - - def CourseRecommender( - major: str, - completed_courses: list[str], - ) -> str: - """ - Generate a structured next-semester course recommendation for a DKU student. - - Given the student's major and the courses they have already completed, - this tool: - 1. Looks up the graduation requirements for the student's major. - 2. Looks up the university-wide common-core requirements. - 3. Identifies which required courses still need to be completed. - 4. Checks which remaining courses are offered next semester. - 5. Checks whether the student meets prerequisites for each available course. - 6. Returns a grouped report: recommended, eligible-but-not-offered, - prerequisites-not-met, and no-schedule-data categories. - - Args: - major (str): The student's major and optional track, e.g. "data science" - or "computation and design computer science". - completed_courses (list[str]): Courses the student has already completed - or is currently taking, e.g. ["COMPSCI 101", "MATH 105", "STATS 201"]. - - Returns: - A Markdown-formatted recommendation report. - """ - with span_ctx_start( - "CourseRecommender", OpenInferenceSpanKindValues.TOOL - ) as span: + req_dir = config.major_req_dir + classdata_csv_path = config.classdata_csv_path + prereq_csv_path = config.prereq_csv_path + with span_ctx_start( + "CourseRecommender", OpenInferenceSpanKindValues.TOOL + ) as span: + span.set_attributes( + { + SpanAttributes.INPUT_VALUE: safe_json_dumps( + { + "major": major, + "completed_courses": completed_courses, + } + ), + SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) + + try: + result = _run_recommendation( + major=major, + completed_courses=completed_courses, + req_dir=req_dir, + classdata_csv_path=classdata_csv_path, + prereq_csv_path=prereq_csv_path, + ) span.set_attributes( { - SpanAttributes.INPUT_VALUE: safe_json_dumps( - { - "major": major, - "completed_courses": completed_courses, - } - ), - SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + SpanAttributes.OUTPUT_VALUE: result[:500], + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.TEXT.value, } ) + span.set_status(Status(StatusCode.OK)) + return result - try: - result = _run_recommendation( - major=major, - completed_courses=completed_courses, - req_dir=req_dir, - classdata_csv_path=classdata_csv_path, - prereq_csv_path=prereq_csv_path, - ) - span.set_attributes( - { - SpanAttributes.OUTPUT_VALUE: result[:500], - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.TEXT.value, - } - ) - span.set_status(Status(StatusCode.OK)) - return result - - except Exception as e: - span.set_attributes( - { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps({"error": str(e)}), - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, - } - ) - span.set_status(Status(StatusCode.ERROR), str(e)) - raise - - return CourseRecommender + except Exception as e: + span.set_attributes( + { + SpanAttributes.OUTPUT_VALUE: safe_json_dumps({"error": str(e)}), + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) + span.set_status(Status(StatusCode.ERROR), str(e)) + raise e # --------------------------------------------------------------------------- @@ -529,18 +470,6 @@ def _run_recommendation( use_phoenix() parser = argparse.ArgumentParser(description="Test CourseRecommender") - parser.add_argument( - "--requirements-dir", - default="/datapool/chatdku_external_data/doc_testing/output/ug_bulletin_2023-2024", - ) - parser.add_argument( - "--classdata-csv", - default="/datapool/chatdku_external_data/cleaned_classdata.csv", - ) - parser.add_argument( - "--prereq-csv", - default="/datapool/chatdku_external_data/DK_SR_PREREQ_CRSE_CHATDKU.csv", - ) parser.add_argument("--major", required=True, help="Student's major") parser.add_argument( "--completed", @@ -550,9 +479,4 @@ def _run_recommendation( ) args = parser.parse_args() - recommender = CourseRecommenderOuter( - requirements_dir=args.requirements_dir, - classdata_csv_path=args.classdata_csv, - prereq_csv_path=args.prereq_csv, - ) - print(recommender(major=args.major, completed_courses=args.completed)) + __import__('pprint').pprint(CourseRecommender(major=args.major, completed_courses=args.completed)) diff --git a/chatdku/core/tools/course_schedule.py b/chatdku/core/tools/course_schedule.py index 6f8d223c..c5639b12 100644 --- a/chatdku/core/tools/course_schedule.py +++ b/chatdku/core/tools/course_schedule.py @@ -18,6 +18,7 @@ from opentelemetry.trace import Status, StatusCode from chatdku.core.utils import span_ctx_start +from chatdku.config import config # --------------------------------------------------------------------------- @@ -66,89 +67,79 @@ def _lookup(course_raw: str, df: pd.DataFrame) -> list[dict]: # --------------------------------------------------------------------------- -def CourseScheduleLookupOuter(classdata_csv_path: str): +def CourseScheduleLookup(course_names: list[str]) -> str: """ - DSPy tool factory for looking up next-semester course schedule data. + Look up the course schedule for one or more courses at Duke Kunshan University. - Args: - classdata_csv_path: Path to the cleaned class-data CSV - (produced by scripts/clean_classdata.py). - """ + Given a list of course codes (e.g. ["COMPSCI 101", "CHINESE 101A"]), + returns the schedule information (sections, times, instructors, enrollment, + etc.) for each course from the upcoming semester's class data. - def CourseScheduleLookup(course_names: list[str]) -> str: - """ - Look up the course schedule for one or more courses at Duke Kunshan University. + Handles formatting variations such as "COMPSCI101" or "COMPSCI-101". - Given a list of course codes (e.g. ["COMPSCI 101", "CHINESE 101A"]), - returns the schedule information (sections, times, instructors, enrollment, - etc.) for each course from the upcoming semester's class data. - - Handles formatting variations such as "COMPSCI101" or "COMPSCI-101". + Args: + course_names (list[str]): Courses to look up, e.g. ["STATS 202", "BIOL 305"]. - Args: - course_names (list[str]): Courses to look up, e.g. ["STATS 202", "BIOL 305"]. + Returns: + JSON string with schedule rows for every matched course, + or an informative message when a course is not found. + """ + classdata_csv_path = config.classdata_csv_path + with span_ctx_start( + "CourseScheduleLookup", OpenInferenceSpanKindValues.TOOL + ) as span: + span.set_attributes( + { + SpanAttributes.INPUT_VALUE: safe_json_dumps( + dict(course_names=course_names) + ), + SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) + + try: + df = pd.read_csv(classdata_csv_path) + except FileNotFoundError: + msg = f"Course schedule data file not found: {classdata_csv_path}" + span.set_attributes( + { + SpanAttributes.OUTPUT_VALUE: safe_json_dumps(dict(error=msg)), + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) + span.set_status(Status(StatusCode.ERROR), msg) + raise FileNotFoundError(msg) + + try: + results: dict[str, list[dict] | str] = {} + for course in course_names: + rows = _lookup(course, df) + if rows: + results[course] = rows + else: + results[course] = f"No schedule found for '{course}'." + + output = json.dumps(results, default=str) + span.set_attributes( + { + SpanAttributes.OUTPUT_VALUE: output, + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) + span.set_status(Status(StatusCode.OK)) + return output - Returns: - JSON string with schedule rows for every matched course, - or an informative message when a course is not found. - """ - with span_ctx_start( - "CourseScheduleLookup", OpenInferenceSpanKindValues.TOOL - ) as span: + except Exception as e: span.set_attributes( { - SpanAttributes.INPUT_VALUE: safe_json_dumps( - dict(course_names=course_names) + SpanAttributes.OUTPUT_VALUE: safe_json_dumps( + dict(error=str(e)) ), - SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, } ) - - try: - df = pd.read_csv(classdata_csv_path) - except FileNotFoundError: - msg = f"Course schedule data file not found: {classdata_csv_path}" - span.set_attributes( - { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps(dict(error=msg)), - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, - } - ) - span.set_status(Status(StatusCode.ERROR), msg) - raise FileNotFoundError(msg) - - try: - results: dict[str, list[dict] | str] = {} - for course in course_names: - rows = _lookup(course, df) - if rows: - results[course] = rows - else: - results[course] = f"No schedule found for '{course}'." - - output = json.dumps(results, default=str) - span.set_attributes( - { - SpanAttributes.OUTPUT_VALUE: output, - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, - } - ) - span.set_status(Status(StatusCode.OK)) - return output - - except Exception as e: - span.set_attributes( - { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict(error=str(e)) - ), - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, - } - ) - span.set_status(Status(StatusCode.ERROR), str(e)) - raise - - return CourseScheduleLookup + span.set_status(Status(StatusCode.ERROR), str(e)) + raise # --------------------------------------------------------------------------- @@ -161,11 +152,6 @@ def CourseScheduleLookup(course_names: list[str]) -> str: import argparse parser = argparse.ArgumentParser(description="Test CourseScheduleLookup") - parser.add_argument( - "--csv", - default="/datapool/chatdku_external_data/cleaned_classdata.csv", - help="Path to the cleaned class-data CSV", - ) parser.add_argument( "courses", nargs="+", @@ -173,5 +159,4 @@ def CourseScheduleLookup(course_names: list[str]) -> str: ) args = parser.parse_args() - lookup = CourseScheduleLookupOuter(args.csv) - __import__("pprint").pprint((lookup(args.courses))) + __import__("pprint").pprint(CourseScheduleLookup(args.courses)) diff --git a/chatdku/core/tools/get_prerequisites.py b/chatdku/core/tools/get_prerequisites.py index b3ccb410..de6f0ecc 100644 --- a/chatdku/core/tools/get_prerequisites.py +++ b/chatdku/core/tools/get_prerequisites.py @@ -11,6 +11,7 @@ from opentelemetry.trace import Status, StatusCode from chatdku.core.utils import span_ctx_start +from chatdku.config import config logger = logging.getLogger(__name__) @@ -49,81 +50,63 @@ def get_prereq(course: str, data_file_path: str) -> str: return f"Unknown error in finding prerequisite for {course}." -def PrerequisiteLookupOuter(prereq_csv_path: str): +def PrerequisiteLookup(course_names: list[str]) -> str: """ - DSPy tool factory for looking up course prerequisites. - Returns a Phoenix-observable callable for the agent's tool list. + Look up the prerequisites for one or more courses at Duke Kunshan University. - Args: - prereq_csv_path: Path to the prerequisites CSV file. - """ + Given a list of course names (e.g. ["STATS 202", "COMPSCI 201", "MATH 206"]), + returns the prerequisite and anti-requisite requirements for each course. + Uses the latest available version of the course requirements. - def PrerequisiteLookup(course_names: list[str]) -> str: - """ - Look up the prerequisites for one or more courses at Duke Kunshan University. + Good tool for answering questions about what courses are needed + before taking specific courses. - Given a list of course names (e.g. ["STATS 202", "COMPSCI 201", "MATH 206"]), - returns the prerequisite and anti-requisite requirements for each course. - Uses the latest available version of the course requirements. - - Good tool for answering questions about what courses are needed - before taking specific courses. + Args: + course_names (list[str]): The courses to look up, e.g. ["STATS 202", "COMPSCI 101"]. - Args: - course_names (list[str]): The courses to look up, e.g. ["STATS 202", "COMPSCI 101"]. + Returns: + String describing the prerequisites for each course, separated by newlines. + """ + prereq_csv_path = config.prereq_csv_path + with span_ctx_start( + "PrerequisiteLookup", OpenInferenceSpanKindValues.TOOL + ) as span: + span.set_attributes( + { + SpanAttributes.INPUT_VALUE: safe_json_dumps( + dict(course_names=course_names) + ), + SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) - Returns: - String describing the prerequisites for each course, separated by newlines. - """ - with span_ctx_start( - "PrerequisiteLookup", OpenInferenceSpanKindValues.TOOL - ) as span: + try: + results = [ + get_prereq(course, prereq_csv_path) for course in course_names + ] + result = "\n".join(results) span.set_attributes( { - SpanAttributes.INPUT_VALUE: safe_json_dumps( - dict(course_names=course_names) + SpanAttributes.OUTPUT_VALUE: safe_json_dumps( + dict(result=result) ), - SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, } ) - - try: - results = [ - get_prereq(course, prereq_csv_path) for course in course_names - ] - result = "\n".join(results) - span.set_attributes( - { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict(result=result) - ), - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, - } - ) - span.set_status(Status(StatusCode.OK)) - return result - except Exception as e: - span.set_attributes( - { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict(error=str(e)) - ), - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, - } - ) - span.set_status(Status(StatusCode.ERROR), str(e)) - raise e - - return PrerequisiteLookup + span.set_status(Status(StatusCode.OK)) + return result + except Exception as e: + span.set_attributes( + { + SpanAttributes.OUTPUT_VALUE: safe_json_dumps( + dict(error=str(e)) + ), + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) + span.set_status(Status(StatusCode.ERROR), str(e)) + raise e if __name__ == "__main__": - import os - - local_csv = os.path.join( - os.path.dirname(__file__), - "chatdku_external_data", - "DK_SR_PREREQ_CRSE_CHATDKU.csv", - ) - lookup = PrerequisiteLookupOuter(local_csv) - print(lookup(["STATS 202", "COMPSCI 201"])) + print(PrerequisiteLookup(["STATS 202", "COMPSCI 201"])) diff --git a/chatdku/core/tools/major_requirements.py b/chatdku/core/tools/major_requirements.py index 0dec4954..8660f972 100644 --- a/chatdku/core/tools/major_requirements.py +++ b/chatdku/core/tools/major_requirements.py @@ -34,6 +34,7 @@ from thefuzz import fuzz, process from chatdku.core.utils import span_ctx_start +from chatdku.config import config logger = logging.getLogger(__name__) @@ -97,120 +98,109 @@ def _list_stems(requirements_dir: Path) -> list[str]: # --------------------------------------------------------------------------- -def MajorRequirementsLookupOuter(requirements_dir: str): +def MajorRequirementsLookup(major: str) -> str: """ - DSPy tool factory for looking up DKU major/track degree requirements. + Look up the graduation requirements for a Duke Kunshan University major. + + Given a major (and optional track) name, returns the full list of + required and elective courses from the UG Bulletin (2023-2024). + + Pass major="list" to get the names of all available majors/tracks. + Pass major="requirements for all majors" to retrieve the university-wide + core requirements that every student must complete regardless of major. + + Examples of valid major strings: + "data science" + "computation and design / computer science" + "behavioral science psychology" + "global health biology" + "requirements for all majors" + "list" Args: - requirements_dir: Path to the directory containing per-major - Markdown files from the UG Bulletin. + major (str): Major (and optionally track) name, e.g. "data science". + Pass "list" to enumerate available majors. + + Returns: + Markdown text of the major's requirements, or an error message when + no match is found. """ - req_dir = Path(requirements_dir) - - def MajorRequirementsLookup(major: str) -> str: - """ - Look up the graduation requirements for a Duke Kunshan University major. - - Given a major (and optional track) name, returns the full list of - required and elective courses from the UG Bulletin (2023-2024). - - Pass major="list" to get the names of all available majors/tracks. - Pass major="requirements for all majors" to retrieve the university-wide - core requirements that every student must complete regardless of major. - - Examples of valid major strings: - "data science" - "computation and design / computer science" - "behavioral science psychology" - "global health biology" - "requirements for all majors" - "list" - - Args: - major (str): Major (and optionally track) name, e.g. "data science". - Pass "list" to enumerate available majors. - - Returns: - Markdown text of the major's requirements, or an error message when - no match is found. - """ - with span_ctx_start( - "MajorRequirementsLookup", OpenInferenceSpanKindValues.TOOL - ) as span: - span.set_attributes( - { - SpanAttributes.INPUT_VALUE: safe_json_dumps(dict(major=major)), - SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, - } - ) + req_dir = config.major_req_dir + with span_ctx_start( + "MajorRequirementsLookup", OpenInferenceSpanKindValues.TOOL + ) as span: + span.set_attributes( + { + SpanAttributes.INPUT_VALUE: safe_json_dumps(dict(major=major)), + SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) + + try: + if not req_dir.is_dir(): + raise FileNotFoundError( + f"Requirements directory not found: {req_dir}" + ) - try: - if not req_dir.is_dir(): - raise FileNotFoundError( - f"Requirements directory not found: {req_dir}" - ) - - stems = _list_stems(req_dir) - if not stems: - raise FileNotFoundError(f"No requirement files found in {req_dir}") - - # Special: list all available majors - if major.strip().lower() == "list": - result = "Available DKU majors/tracks:\n" + "\n".join( - f" - {s}" for s in stems - ) - span.set_attributes( - { - SpanAttributes.OUTPUT_VALUE: result, - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.TEXT.value, - } - ) - span.set_status(Status(StatusCode.OK)) - return result - - matched = _best_match(major, stems) - if matched is None: - result = ( - f"No matching major found for '{major}'. " - "Call with major='list' to see all available majors." - ) - span.set_attributes( - { - SpanAttributes.OUTPUT_VALUE: result, - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.TEXT.value, - } - ) - span.set_status(Status(StatusCode.OK)) - return result - - md_path = req_dir / f"{matched}.md" - content = md_path.read_text(encoding="utf-8") - result = f"# Requirements: {matched}\n\n{content}" + stems = _list_stems(req_dir) + if not stems: + raise FileNotFoundError(f"No requirement files found in {req_dir}") + # Special: list all available majors + if major.strip().lower() == "list": + result = "Available DKU majors/tracks:\n" + "\n".join( + f" - {s}" for s in stems + ) span.set_attributes( { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict(matched_file=matched, char_count=len(result)) - ), - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + SpanAttributes.OUTPUT_VALUE: result, + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.TEXT.value, } ) span.set_status(Status(StatusCode.OK)) return result - except Exception as e: + matched = _best_match(major, stems) + if matched is None: + result = ( + f"No matching major found for '{major}'. " + "Call with major='list' to see all available majors." + ) span.set_attributes( { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict(error=str(e)) - ), - SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + SpanAttributes.OUTPUT_VALUE: result, + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.TEXT.value, } ) - span.set_status(Status(StatusCode.ERROR), str(e)) - raise + span.set_status(Status(StatusCode.OK)) + return result + + md_path = req_dir / f"{matched}.md" + content = md_path.read_text(encoding="utf-8") + result = f"# Requirements: {matched}\n\n{content}" + + span.set_attributes( + { + SpanAttributes.OUTPUT_VALUE: safe_json_dumps( + dict(matched_file=matched, char_count=len(result)) + ), + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) + span.set_status(Status(StatusCode.OK)) + return result - return MajorRequirementsLookup + except Exception as e: + span.set_attributes( + { + SpanAttributes.OUTPUT_VALUE: safe_json_dumps( + dict(error=str(e)) + ), + SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, + } + ) + span.set_status(Status(StatusCode.ERROR), str(e)) + raise e # --------------------------------------------------------------------------- @@ -224,13 +214,8 @@ def MajorRequirementsLookup(major: str) -> str: use_phoenix() parser = argparse.ArgumentParser(description="Test MajorRequirementsLookup") - parser.add_argument( - "--dir", - default="/datapool/chatdku_external_data/doc_testing/output/ug_bulletin_2023-2024", - help="Path to the requirements markdown directory", - ) parser.add_argument("--major", required=True, help="Major name to look up") args = parser.parse_args() - lookup = MajorRequirementsLookupOuter(args.dir) - print(lookup(args.major)) + lookup = MajorRequirementsLookup(args.major) + __import__('pprint').pprint(lookup) From 544e54e1a30b4295f468de386e777e8b2d7fb72e Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Tue, 21 Apr 2026 12:08:06 +0800 Subject: [PATCH 14/22] fused both the assessment and executor together --- chatdku/core/dspy_classes/executor.py | 141 +++++++++++++++----------- 1 file changed, 82 insertions(+), 59 deletions(-) diff --git a/chatdku/core/dspy_classes/executor.py b/chatdku/core/dspy_classes/executor.py index 4e39a549..708a9b8d 100644 --- a/chatdku/core/dspy_classes/executor.py +++ b/chatdku/core/dspy_classes/executor.py @@ -73,17 +73,33 @@ class AssessSignature(dspy.Signature): decision: str = dspy.OutputField(type=Literal["continue", "finish"]) -class _ActSignatureBase(dspy.Signature): - """ - You are an Executor Agent for Duke Kunshan University (DKU). You have been - given the current investigation agenda and an assessment of what is still missing. - Your job is to pick the best tool to call next. +class ExecutorSignatureBase(dspy.Signature): + """You are an Executor Agent for Duke Kunshan University (DKU) gathering + information to answer a user's question. + + Given the plan and the tool results collected so far (trajectory), do the following in order: + + 1. Assess progress: + 1. What information from the plan has been successfully gathered. + 2. What information is still missing or insufficient. + 3. What NEW investigation areas have been REVEALED by the tool results so far + that were not in the original agenda — for example, a retrieved policy document + mentions a mandatory course, or schedule data reveals an unmet prerequisite chain. You MUST pursue the full current agenda — including any extensions discovered during earlier steps — not just the original plan. If the assessment reveals new requirements (e.g., a policy document names a mandatory course), investigate those before finishing. + 2. Decide whether to continue or finish: + - Choose "finish" in the next_tool_name field if you have gathered enough + information to answer the user's question, OR if the remaining gaps cannot + be resolved with further tool calls. + + 3. If continuing, pick the best tool to call next to fill the identified + gaps. If a previous tool call failed, try to work around it (e.g. + rephrase the query, try a different tool). + Useful facts: - Available subject codes: DKU, GERMAN, INDSTU, JAPANESE, KOREAN, MUSIC, SPANISH, ARHU, ARTS, BEHAVSCI, BIOL, CHEM, CHINESE, COMPDSGN, COMPSCI, CULANTH, CULMOVE, @@ -100,9 +116,6 @@ class _ActSignatureBase(dspy.Signature): - "Psychology" -> "PSYCH" - "Physics" -> "PHYS" etc. - - If a previous tool call failed, try to work around it (e.g. rephrase the - query, try a different tool). """ current_agenda: str = dspy.InputField( @@ -114,16 +127,27 @@ class _ActSignatureBase(dspy.Signature): ) current_user_message: str = dspy.InputField() trajectory: str = dspy.InputField( - desc="Tool calls and their results collected so far.", - format=lambda x: x, - ) - assessment: str = dspy.InputField( - desc="Analysis of what has been gathered and what is still missing.", + desc="Tool calls and their results collected so far. May be empty on the first iteration.", format=lambda x: x, ) conversation_history: str = CONVERSATION_HISTORY_FIELD conversation_summary: str = CONVERSATION_SUMMARY_FIELD chatbot_role: str = ROLE_PROMPT + agenda_extensions: str = dspy.OutputField( + desc=( + "New investigation areas revealed by the tool results that are NOT yet " + "in the current agenda. Describe each as a short action phrase. " + "Leave empty if nothing new was discovered." + ), + ) + assessment: str = dspy.OutputField( + desc=( + "Brief analysis: (1) what information has been gathered so far, " + "(2) what is still missing from the plan, " + "(3) whether the missing information can be obtained with available tools." + ), + format=lambda x: x, + ) class DistillSignature(dspy.Signature): @@ -201,18 +225,34 @@ def __init__(self, tools, max_iterations=5): # Build the ActSignature dynamically with tool descriptions in the instructions. instr = ( - [f"{_ActSignatureBase.instructions}\n"] - if _ActSignatureBase.instructions + [f"{ExecutorSignatureBase.instructions}\n"] + if ExecutorSignatureBase.instructions else [] ) + outputs = ", ".join( + [f"`{k}`" for k in ExecutorSignatureBase.output_fields.keys()] + ) + + tools["finish"] = Tool( + func=lambda: "Completed.", + name="finish", + desc=f"Marks the task as complete. That is, signals that all information for producing the outputs, i.e. {outputs}, are now available to be extracted.", + args={}, + ) for idx, tool in enumerate(tools.values()): instr.append(f"({idx + 1}) {tool}") instr.append( "When providing `next_tool_args`, the value inside the field must be in JSON format" ) - act_signature = ( - dspy.Signature({**_ActSignatureBase.input_fields}, "\n".join(instr)) + exec_signature = ( + dspy.Signature( + { + **ExecutorSignatureBase.input_fields, + **ExecutorSignatureBase.output_fields, + }, + "\n".join(instr), + ) .append("next_thought", dspy.OutputField(), type_=str) .append( "next_tool_name", @@ -223,8 +263,7 @@ def __init__(self, tools, max_iterations=5): ) self.tools = tools - self.assessor = dspy.Predict(AssessSignature) - self.actor = dspy.Predict(act_signature) + self.executor = dspy.Predict(exec_signature) self.distiller = dspy.Predict(DistillSignature) self.assess_token_ratios: dict[str, float] = { @@ -258,7 +297,7 @@ def get_token_limits(self, **kwargs) -> dict[str, int]: # Ensure current_agenda is present (agent.py calls this with plan="") if "current_agenda" not in kwargs and "plan" in kwargs: kwargs["current_agenda"] = kwargs.pop("plan") - template_len = len(get_template(self.actor, **kwargs)) + template_len = len(get_template(self.executor, **kwargs)) return token_limit_ratio_to_count(self.act_token_ratios, template_len) def forward( @@ -286,27 +325,33 @@ def forward( ) for idx in range(self.max_iterations): - # Phase 1: ASSESS against the current (possibly extended) agenda - assess_inputs = { + + # Phase 1: ACT using the current (extended) agenda + executor_inputs = { "current_agenda": current_agenda, **shared_inputs, + "chatbot_role": role_str, } - assess_inputs = truncate_tokens_all( - assess_inputs, - self._assess_token_limits(**assess_inputs), + executor_inputs = truncate_tokens_all( + executor_inputs, + self._act_token_limits(**executor_inputs), ) try: - assess_result = self._call_with_potential_trajectory_truncation( - self.assessor, trajectory, **assess_inputs + executor_result = self._call_with_potential_trajectory_truncation( + self.executor, trajectory, **executor_inputs ) except ValueError: break + if executor_result.next_tool_name == "finish": + break + # Record assessment; append any agenda extensions into the trajectory # so future iterations can see what was discovered. - assessment_text = assess_result.assessment - extensions = getattr(assess_result, "agenda_extensions", "").strip() + assessment_text = executor_result.assessment + + extensions = getattr(executor_result, "agenda_extensions", "").strip() if extensions: assessment_text += f"\n[Agenda extensions discovered: {extensions}]" current_agenda = ( @@ -314,41 +359,19 @@ def forward( f"[Additional areas to investigate, discovered at step {idx + 1}]:\n" f"{extensions}" ) - trajectory[f"assessment_{idx}"] = assessment_text - if assess_result.decision == "finish": - break - - # Phase 2: ACT using the current (extended) agenda - act_inputs = { - "current_agenda": current_agenda, - **shared_inputs, - "assessment": assess_result.assessment, - "chatbot_role": role_str, - } - act_inputs = truncate_tokens_all( - act_inputs, - self._act_token_limits(**act_inputs), - ) - - try: - act_result = self._call_with_potential_trajectory_truncation( - self.actor, trajectory, **act_inputs - ) - except ValueError: - break - - trajectory[f"thought_{idx}"] = act_result.next_thought - trajectory[f"tool_name_{idx}"] = act_result.next_tool_name - trajectory[f"tool_args_{idx}"] = act_result.next_tool_args + trajectory[f"assessment_{idx}"] = assessment_text + trajectory[f"thought_{idx}"] = executor_result.next_thought + trajectory[f"tool_name_{idx}"] = executor_result.next_tool_name + trajectory[f"tool_args_{idx}"] = executor_result.next_tool_args try: trajectory[f"observation_{idx}"] = self.tools[ - act_result.next_tool_name - ](**act_result.next_tool_args) + executor_result.next_tool_name + ](**executor_result.next_tool_args) except Exception as err: trajectory[f"observation_{idx}"] = ( - f"Execution error in {act_result.next_tool_name}: {_fmt_exc(err)}" + f"Execution error in {executor_result.next_tool_name}: {_fmt_exc(err)}" ) # DISTILL — pass the final (extended) agenda so the distiller knows @@ -380,7 +403,7 @@ def _assess_token_limits(self, **kwargs) -> dict[str, int]: return token_limit_ratio_to_count(self.assess_token_ratios, template_len) def _act_token_limits(self, **kwargs) -> dict[str, int]: - template_len = len(get_template(self.actor, **kwargs)) + template_len = len(get_template(self.executor, **kwargs)) return token_limit_ratio_to_count(self.act_token_ratios, template_len) def _distill_token_limits(self, **kwargs) -> dict[str, int]: From c06ac34b6555c70f3975085d0de9f6838f1e9862 Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Tue, 21 Apr 2026 13:40:41 +0800 Subject: [PATCH 15/22] Updated the model's configs and disabled thinking. --- chatdku/config.py | 13 +++++++++---- chatdku/core/agent.py | 30 ++++++++++++------------------ 2 files changed, 21 insertions(+), 22 deletions(-) diff --git a/chatdku/config.py b/chatdku/config.py index 89642579..a4f440a9 100644 --- a/chatdku/config.py +++ b/chatdku/config.py @@ -60,13 +60,18 @@ def _initialize_defaults(self): self._store.update( { # LLM - "llm": "Qwen/Qwen3-30B-A3B-Instruct-2507", + "llm": "Qwen/Qwen3.6-35B-A3B", "llm_url": "http://localhost:18085/v1", "llm_api_key": llm_api_key, - "backup_llm": "Qwen/Qwen3-30B-A3B-Instruct-2507", + "backup_llm": "Qwen/Qwen3.6-35B-A3B", "backup_llm_url": "http://localhost:18085/v1", - "llm_temperature": 0.7, - "context_window": 22000, + "llm_temperature": 1.0, + "top_p": 1.0, + "top_k": 40, + "min_p": 0.0, + "presence_penalty": 2.0, + "repetition_penalty": 1.0, + "context_window": 35000, "output_window": 10000, "response_type": "Multiple Paragraphs", # Embedding diff --git a/chatdku/core/agent.py b/chatdku/core/agent.py index 70fa7c3f..900516fb 100755 --- a/chatdku/core/agent.py +++ b/chatdku/core/agent.py @@ -27,7 +27,7 @@ ) from chatdku.core.tools.major_requirements import MajorRequirementsLookup from chatdku.core.tools.syllabi.syllabi_tool import SyllabusLookupOuter -from chatdku.core.utils import format_trajectory, load_conversation, span_start +from chatdku.core.utils import load_conversation, span_start from chatdku.setup import setup, use_phoenix # When `--dev` is passed to the script, enable additional debug prints in this module. @@ -108,19 +108,6 @@ def _forward_gen( ) with use_span(span): - # Putting this in `self.__init__()` might not work due to that you might - # want DSPy to change prompt dynamically. - - # These limits are for compressing both tool and conversation memory. - # Uses the executor's token limits as the executor has the largest context needs. - limits = self.executor.get_token_limits( - current_agenda="", - current_user_message=current_user_message, - conversation_history=self.conversation_memory.history_str(), - trajectory=format_trajectory({}), - assessment="", - ) - # Clear internal memory for each user message self.internal_memory.clear() @@ -135,7 +122,6 @@ def _forward_gen( self.conversation_memory( role="assistant", content=prev_response, - max_history_size=limits["conversation_history"], ) plan_result = self.planner( @@ -167,7 +153,6 @@ def _forward_gen( self.conversation_memory( role="user", content=current_user_message, - max_history_size=limits["conversation_history"], ) if not self.streaming: @@ -204,12 +189,21 @@ def build_agent(streaming: bool = True, max_iterations: int = 5) -> "Agent": use_phoenix() lm = dspy.LM( - model="openai/" + config.backup_llm, - api_base=config.backup_llm_url, + model="openai/" + config.llm, + api_base=config.llm_url, api_key=config.llm_api_key, model_type="chat", max_tokens=config.output_window, + top_p=config.top_p, + min_p=config.min_p, + presence_penalty=config.presence_penalty, + repetition_penalty=config.repetition_penalty, temperature=config.llm_temperature, + extra_body={ + "top_k": config.top_k, + "chat_template_kwargs": {"enable_thinking": False}, + }, + enable_thinking=False, ) dspy.configure(lm=lm) From 9bb3df5093edc6c0225680b13dd04d7afda540e4 Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Tue, 21 Apr 2026 13:41:08 +0800 Subject: [PATCH 16/22] Only 3 conversation exchanges are saved in history and rest is summarized --- .../core/dspy_classes/conversation_memory.py | 111 ++++++++---------- 1 file changed, 48 insertions(+), 63 deletions(-) diff --git a/chatdku/core/dspy_classes/conversation_memory.py b/chatdku/core/dspy_classes/conversation_memory.py index ae9e5148..ab694f59 100644 --- a/chatdku/core/dspy_classes/conversation_memory.py +++ b/chatdku/core/dspy_classes/conversation_memory.py @@ -1,6 +1,7 @@ -from typing import Optional +import json import dspy +from litellm.exceptions import ContextWindowExceededError from openinference.instrumentation import safe_json_dumps from openinference.semconv.trace import ( OpenInferenceMimeTypeValues, @@ -8,21 +9,12 @@ SpanAttributes, ) from opentelemetry.trace import Status, StatusCode -from pydantic import BaseModel, ConfigDict - -from chatdku.core.dspy_common import get_template -from chatdku.core.utils import ( - span_ctx_start, - strs_fit_max_tokens_reverse, - token_limit_ratio_to_count, - truncate_tokens_all, -) + +from chatdku.core.utils import span_ctx_start -class ConversationMemoryEntry(BaseModel): - model_config = ConfigDict(extra="forbid") - role: str - content: str +MAX_HISTORY_ENTRIES = 6 +TRUNCATE_BATCH_SIZE = 2 class CompressConversationMemorySignature(dspy.Signature): @@ -56,70 +48,32 @@ class ConversationMemory(dspy.Module): def __init__(self): super().__init__() self.compressor = dspy.Predict(CompressConversationMemorySignature) - self.history: list[ConversationMemoryEntry] = [] + self.history: list[dict] = [] self.summary: str = "" - self.token_ratios: dict[str, float] = { - "history_to_discard": 2 / 4, - "previous_summary": 1 / 4, - } - - def history_str(self, left: int = 0, right: Optional[int] = None): - if right is None: - right = len(self.history) - - return "\n".join( - [ - i.model_dump_json(indent=4) - for i in self.history[left:right] - if not isinstance(i, dict) - ] - ) - def get_token_limits(self, **kwargs) -> dict[str, int]: - return token_limit_ratio_to_count( - self.token_ratios, len(get_template(self.compressor, **kwargs)) - ) + def history_str(self) -> str: + return "\n".join(json.dumps(entry) for entry in self.history) - def forward(self, role: str, content: str, max_history_size: int = 1000): + def forward(self, role: str, content: str): with span_ctx_start( "Conversation Memory", OpenInferenceSpanKindValues.CHAIN ) as span: - new_entry = ConversationMemoryEntry(role=role, content=content) + new_entry = {role: content} span.set_attributes( { - SpanAttributes.INPUT_VALUE: safe_json_dumps(new_entry.model_dump()), + SpanAttributes.INPUT_VALUE: safe_json_dumps(new_entry), SpanAttributes.INPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, } ) self.history.append(new_entry) - min_index = strs_fit_max_tokens_reverse( - [i.model_dump_json() for i in self.history if not isinstance(i, dict)], - "\n", - max_history_size, - ) - if min_index > 0: - compressor_inputs = dict( - history_to_discard=self.history_str(0, min_index), - previous_summary=self.summary, - ) - compressor_inputs = truncate_tokens_all( - compressor_inputs, self.get_token_limits(**compressor_inputs) - ) - self.summary = self.compressor(**compressor_inputs).current_summary - self.history = self.history[min_index:] + if len(self.history) > MAX_HISTORY_ENTRIES: + self._compress_oldest_with_retry(TRUNCATE_BATCH_SIZE) span.set_attributes( { SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict( - history=[ - i.model_dump() - for i in self.history - if not isinstance(i, dict) - ], - summary=self.summary, - ) + dict(history=self.history, summary=self.summary) ), SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, } @@ -127,5 +81,36 @@ def forward(self, role: str, content: str, max_history_size: int = 1000): span.set_status(Status(StatusCode.OK)) def register_history(self, role: str, content: str): - new_entry = ConversationMemoryEntry(role=role, content=content) - self.history.append(new_entry) + self.history.append({role: content}) + + def _compress_oldest_with_retry(self, batch_size: int): + """Summarize the oldest `batch_size` entries into the running summary. + + On context window overflow, shrinks the batch one entry at a time and + retries (up to 3 attempts), mirroring the pattern in Executor. + """ + to_discard = self.history[:batch_size] + remaining = self.history[batch_size:] + + for _ in range(3): + try: + self.summary = self._summarize(to_discard, self.summary) + self.history = remaining + return + except ContextWindowExceededError: + if len(to_discard) <= 1: + raise ValueError( + "The conversation history exceeded the context window even with a single entry." + ) + self.summary = self._summarize([to_discard[0]], self.summary) + to_discard = to_discard[1:] + + raise ValueError( + "The context window was exceeded even after 3 attempts to truncate the conversation history." + ) + + def _summarize(self, entries: list[dict], previous_summary: str) -> str: + return self.compressor( + history_to_discard="\n".join(json.dumps(e) for e in entries), + previous_summary=previous_summary, + ).current_summary From f13fe9e1aab1c2e87dc648191ac080675a45c855 Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Tue, 21 Apr 2026 13:42:37 +0800 Subject: [PATCH 17/22] conversation summary before the history since it is the earlier exchange that gets summarized --- chatdku/core/dspy_classes/plan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatdku/core/dspy_classes/plan.py b/chatdku/core/dspy_classes/plan.py index c047ef02..d64863d3 100644 --- a/chatdku/core/dspy_classes/plan.py +++ b/chatdku/core/dspy_classes/plan.py @@ -71,8 +71,8 @@ class year — e.g. query "Year 1 fall semester mandatory courses", """ current_user_message: str = dspy.InputField() - conversation_history: str = CONVERSATION_HISTORY_FIELD conversation_summary: str = CONVERSATION_SUMMARY_FIELD + conversation_history: str = CONVERSATION_HISTORY_FIELD chatbot_role: str = ROLE_PROMPT available_tools: str = dspy.InputField( desc="Descriptions of the tools available to the Executor.", From a4467e50186e3c9b69a36926036cb6e9052c2c71 Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Tue, 21 Apr 2026 13:43:17 +0800 Subject: [PATCH 18/22] Removed assessment and infused it into the executor call --- chatdku/core/dspy_classes/executor.py | 151 +++++--------------------- 1 file changed, 28 insertions(+), 123 deletions(-) diff --git a/chatdku/core/dspy_classes/executor.py b/chatdku/core/dspy_classes/executor.py index 708a9b8d..01b6f0ee 100644 --- a/chatdku/core/dspy_classes/executor.py +++ b/chatdku/core/dspy_classes/executor.py @@ -1,3 +1,4 @@ +from datetime import date from typing import Any, Literal import dspy @@ -22,57 +23,6 @@ ) -class AssessSignature(dspy.Signature): - """ - You are evaluating the progress of an information-gathering task for - Duke Kunshan University (DKU). - - Given the current agenda and the tool results collected so far (trajectory), determine: - 1. What information from the agenda has been successfully gathered. - 2. What information is still missing or insufficient. - 3. What NEW investigation areas have been REVEALED by the tool results so far - that were not in the original agenda — for example, a retrieved policy document - mentions a mandatory course, or schedule data reveals an unmet prerequisite chain. - 4. Whether you should continue gathering information or finish. - - Choose "continue" if the agenda has unfulfilled steps OR if newly-revealed areas - warrant further investigation. - Choose "finish" if you have gathered enough information to answer the user's - question, OR if remaining gaps cannot be resolved with further tool calls. - """ - - current_agenda: str = dspy.InputField( - desc=( - "The current investigation agenda: the original plan plus any extensions " - "discovered during execution." - ), - format=lambda x: x, - ) - current_user_message: str = dspy.InputField() - trajectory: str = dspy.InputField( - desc="Tool calls and their results collected so far. May be empty on the first iteration.", - format=lambda x: x, - ) - conversation_history: str = CONVERSATION_HISTORY_FIELD - conversation_summary: str = CONVERSATION_SUMMARY_FIELD - - assessment: str = dspy.OutputField( - desc=( - "Brief analysis: (1) what has been gathered, " - "(2) what is still missing from the agenda, " - "(3) what new areas (if any) were revealed by the results." - ), - ) - agenda_extensions: str = dspy.OutputField( - desc=( - "New investigation areas revealed by the tool results that are NOT yet " - "in the current agenda. Describe each as a short action phrase. " - "Leave empty if nothing new was discovered." - ), - ) - decision: str = dspy.OutputField(type=Literal["continue", "finish"]) - - class ExecutorSignatureBase(dspy.Signature): """You are an Executor Agent for Duke Kunshan University (DKU) gathering information to answer a user's question. @@ -130,16 +80,10 @@ class ExecutorSignatureBase(dspy.Signature): desc="Tool calls and their results collected so far. May be empty on the first iteration.", format=lambda x: x, ) - conversation_history: str = CONVERSATION_HISTORY_FIELD conversation_summary: str = CONVERSATION_SUMMARY_FIELD + conversation_history: str = CONVERSATION_HISTORY_FIELD chatbot_role: str = ROLE_PROMPT - agenda_extensions: str = dspy.OutputField( - desc=( - "New investigation areas revealed by the tool results that are NOT yet " - "in the current agenda. Describe each as a short action phrase. " - "Leave empty if nothing new was discovered." - ), - ) + current_date: date = dspy.InputField() assessment: str = dspy.OutputField( desc=( "Brief analysis: (1) what information has been gathered so far, " @@ -148,6 +92,13 @@ class ExecutorSignatureBase(dspy.Signature): ), format=lambda x: x, ) + agenda_extensions: str = dspy.OutputField( + desc=( + "New investigation areas revealed by the tool results that are NOT yet " + "in the current agenda. Describe each as a short action phrase. " + "Leave empty if nothing new was discovered." + ), + ) class DistillSignature(dspy.Signature): @@ -213,8 +164,8 @@ class SummarizerSignature(dspy.Signature): # Keys per iteration in the trajectory dict. -# assessment, thought, tool_name, tool_args, observation -_KEYS_PER_ITERATION = 5 +# tool_name, tool_args, observation +_KEYS_PER_ITERATION = 3 class Executor(dspy.Module): @@ -266,22 +217,6 @@ def __init__(self, tools, max_iterations=5): self.executor = dspy.Predict(exec_signature) self.distiller = dspy.Predict(DistillSignature) - self.assess_token_ratios: dict[str, float] = { - "current_agenda": 3 / 12, - "current_user_message": 1 / 12, - "conversation_history": 2 / 12, - "conversation_summary": 1 / 12, - "trajectory": 5 / 12, - } - self.act_token_ratios: dict[str, float] = { - "current_agenda": 3 / 16, - "current_user_message": 1 / 16, - "conversation_history": 1 / 16, - "conversation_summary": 1 / 16, - "chatbot_role": 2 / 16, - "trajectory": 4 / 16, - "assessment": 2 / 16, - } self.distill_token_ratios: dict[str, float] = { "current_user_message": 2 / 10, "plan": 2 / 10, @@ -292,13 +227,6 @@ def __init__(self, tools, max_iterations=5): self.trajectory_summary = "" self.max_iterations = max_iterations - def get_token_limits(self, **kwargs) -> dict[str, int]: - """Return token limits using the actor's ratios (tightest constraint).""" - # Ensure current_agenda is present (agent.py calls this with plan="") - if "current_agenda" not in kwargs and "plan" in kwargs: - kwargs["current_agenda"] = kwargs.pop("plan") - template_len = len(get_template(self.executor, **kwargs)) - return token_limit_ratio_to_count(self.act_token_ratios, template_len) def forward( self, @@ -306,35 +234,26 @@ def forward( current_user_message: str, conversation_memory: ConversationMemory, ) -> dspy.Prediction: - shared_inputs = dict( - current_user_message=current_user_message, - conversation_history=conversation_memory.history_str(), - conversation_summary=conversation_memory.summary, - ) - # current_agenda starts as the original plan and grows as the Executor # discovers new investigation areas from tool results. current_agenda = plan trajectory = {} with span_ctx_start("Executor", SpanKind.AGENT) as span: - span.set_attribute("agent.name", "Executor") - span.set_attribute( - "input.value", - safe_json_dumps({"plan": plan, **shared_inputs}), - ) - for idx in range(self.max_iterations): + executor_inputs = dict( + current_agenda= current_agenda, + current_user_message=current_user_message, + conversation_history=conversation_memory.history_str(), + conversation_summary=conversation_memory.summary, + current_date=str(date.today()), + chatbot_role= role_str, + ) - # Phase 1: ACT using the current (extended) agenda - executor_inputs = { - "current_agenda": current_agenda, - **shared_inputs, - "chatbot_role": role_str, - } - executor_inputs = truncate_tokens_all( - executor_inputs, - self._act_token_limits(**executor_inputs), + span.set_attribute("agent.name", "Executor") + span.set_attribute( + "input.value", + safe_json_dumps(executor_inputs) ) try: @@ -347,21 +266,17 @@ def forward( if executor_result.next_tool_name == "finish": break - # Record assessment; append any agenda extensions into the trajectory - # so future iterations can see what was discovered. - assessment_text = executor_result.assessment - + # NOTE: By Temuulen - I don't think we need to record assessment + # The agent can just assess everyturn and the assessment can act like + # a thought process guideline extensions = getattr(executor_result, "agenda_extensions", "").strip() if extensions: - assessment_text += f"\n[Agenda extensions discovered: {extensions}]" current_agenda = ( f"{current_agenda}\n\n" f"[Additional areas to investigate, discovered at step {idx + 1}]:\n" f"{extensions}" ) - - trajectory[f"assessment_{idx}"] = assessment_text - trajectory[f"thought_{idx}"] = executor_result.next_thought + # NOTE: Same as assessment, we don't need to record the thought process trajectory[f"tool_name_{idx}"] = executor_result.next_tool_name trajectory[f"tool_args_{idx}"] = executor_result.next_tool_args @@ -396,16 +311,6 @@ def forward( summary=self.trajectory_summary, ) - # Token limit helpers - - def _assess_token_limits(self, **kwargs) -> dict[str, int]: - template_len = len(get_template(self.assessor, **kwargs)) - return token_limit_ratio_to_count(self.assess_token_ratios, template_len) - - def _act_token_limits(self, **kwargs) -> dict[str, int]: - template_len = len(get_template(self.executor, **kwargs)) - return token_limit_ratio_to_count(self.act_token_ratios, template_len) - def _distill_token_limits(self, **kwargs) -> dict[str, int]: template_len = len(get_template(self.distiller, **kwargs)) return token_limit_ratio_to_count(self.distill_token_ratios, template_len) From e96b56cd6c9e194d9f98782e1bc625a1d30d1dcd Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Tue, 21 Apr 2026 13:44:04 +0800 Subject: [PATCH 19/22] used Path() classes for input paths --- chatdku/core/tools/course_recommender.py | 14 +++++++------- chatdku/core/tools/major_requirements.py | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/chatdku/core/tools/course_recommender.py b/chatdku/core/tools/course_recommender.py index db47179f..c842b0b1 100644 --- a/chatdku/core/tools/course_recommender.py +++ b/chatdku/core/tools/course_recommender.py @@ -76,7 +76,7 @@ def parse_course_codes(md_text: str) -> list[str]: # --------------------------------------------------------------------------- -def _load_prereq_df(prereq_csv_path: str) -> pd.DataFrame: +def _load_prereq_df(prereq_csv_path: Path) -> pd.DataFrame: return pd.read_csv(prereq_csv_path, encoding="utf-16le") @@ -167,7 +167,7 @@ def prerequisites_met( def _get_offered_courses( - course_codes: list[str], classdata_csv_path: str + course_codes: list[str], classdata_csv_path: Path ) -> dict[str, list[dict]]: """Return a mapping of course_code → list of schedule rows for offered courses. @@ -273,9 +273,9 @@ def CourseRecommender( Returns: A Markdown-formatted recommendation report. """ - req_dir = config.major_req_dir - classdata_csv_path = config.classdata_csv_path - prereq_csv_path = config.prereq_csv_path + req_dir = Path(config.major_req_dir) + classdata_csv_path = Path(config.classdata_csv_path) + prereq_csv_path = Path(config.prereq_csv_path) with span_ctx_start( "CourseRecommender", OpenInferenceSpanKindValues.TOOL ) as span: @@ -328,8 +328,8 @@ def _run_recommendation( major: str, completed_courses: list[str], req_dir: Path, - classdata_csv_path: str, - prereq_csv_path: str, + classdata_csv_path: Path, + prereq_csv_path: Path, ) -> str: if not req_dir.is_dir(): raise FileNotFoundError(f"Requirements directory not found: {req_dir}") diff --git a/chatdku/core/tools/major_requirements.py b/chatdku/core/tools/major_requirements.py index 8660f972..94759002 100644 --- a/chatdku/core/tools/major_requirements.py +++ b/chatdku/core/tools/major_requirements.py @@ -125,7 +125,7 @@ def MajorRequirementsLookup(major: str) -> str: Markdown text of the major's requirements, or an error message when no match is found. """ - req_dir = config.major_req_dir + req_dir = Path(config.major_req_dir) with span_ctx_start( "MajorRequirementsLookup", OpenInferenceSpanKindValues.TOOL ) as span: From d714ec582bf343a9b7151ca480f6b8d5b0e6e533 Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Tue, 21 Apr 2026 14:17:49 +0800 Subject: [PATCH 20/22] Added back in thought --- chatdku/core/agent.py | 2 +- chatdku/core/dspy_classes/executor.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chatdku/core/agent.py b/chatdku/core/agent.py index 900516fb..c038cc67 100755 --- a/chatdku/core/agent.py +++ b/chatdku/core/agent.py @@ -183,7 +183,7 @@ def forward( return i -def build_agent(streaming: bool = True, max_iterations: int = 5) -> "Agent": +def build_agent(streaming: bool = True, max_iterations: int = 10) -> "Agent": """Configure DSPy and return a ready-to-use Agent instance.""" setup() use_phoenix() diff --git a/chatdku/core/dspy_classes/executor.py b/chatdku/core/dspy_classes/executor.py index 01b6f0ee..943ca2bb 100644 --- a/chatdku/core/dspy_classes/executor.py +++ b/chatdku/core/dspy_classes/executor.py @@ -165,7 +165,7 @@ class SummarizerSignature(dspy.Signature): # Keys per iteration in the trajectory dict. # tool_name, tool_args, observation -_KEYS_PER_ITERATION = 3 +_KEYS_PER_ITERATION = 4 class Executor(dspy.Module): @@ -276,7 +276,7 @@ def forward( f"[Additional areas to investigate, discovered at step {idx + 1}]:\n" f"{extensions}" ) - # NOTE: Same as assessment, we don't need to record the thought process + trajectory[f"thought_{idx}"] = executor_result.next_thought trajectory[f"tool_name_{idx}"] = executor_result.next_tool_name trajectory[f"tool_args_{idx}"] = executor_result.next_tool_args From ce206cb3e75d88639b798d5487520452fa6aab99 Mon Sep 17 00:00:00 2001 From: Temuulen Enkhtamir <142776482+Ar-temis@users.noreply.github.com> Date: Tue, 21 Apr 2026 14:59:28 +0800 Subject: [PATCH 21/22] Modify Flake8 ignore rules in lint.yml Updated Flake8 configuration to ignore E402 error. --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d775ef5a..648cf92b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -58,4 +58,4 @@ jobs: - name: Run Flake8 on changed files if: needs.changed-files.outputs.files != '' run: | - flake8 --ignore=E203,W503 --max-line-length 120 ${{ needs.changed-files.outputs.files }} + flake8 --ignore=E203,W503,E402 --max-line-length 120 ${{ needs.changed-files.outputs.files }} From 8f5797dfaff0ad3f110c6254b7ddcb3e952aa10e Mon Sep 17 00:00:00 2001 From: Ar-temis Date: Tue, 21 Apr 2026 14:59:50 +0800 Subject: [PATCH 22/22] Fixing black and flake8 complaints --- chatdku/core/agent.py | 3 +- chatdku/core/dspy_classes/executor.py | 21 +++--- chatdku/core/tools/course_recommender.py | 68 +++++++++++++++---- chatdku/core/tools/course_schedule.py | 4 +- chatdku/core/tools/get_prerequisites.py | 16 ++--- chatdku/core/tools/major_requirements.py | 10 +-- .../core/tools/retriever/keyword_retriever.py | 1 - chatdku/core/tools/syllabi/generate_sql.py | 4 +- chatdku/django/chatdku_django/chat/tools.py | 5 +- chatdku/django/chatdku_django/chat/views.py | 56 ++++++++------- chatdku/django/chatdku_django/core/views.py | 2 - tests/test_llama_index_tools.py | 2 +- utils/startup_timer.py | 34 +++++++--- 13 files changed, 140 insertions(+), 86 deletions(-) diff --git a/chatdku/core/agent.py b/chatdku/core/agent.py index c038cc67..5ea043cd 100755 --- a/chatdku/core/agent.py +++ b/chatdku/core/agent.py @@ -7,8 +7,7 @@ # Must be set before `import dspy` — prevents litellm from fetching the remote # model pricing database at startup (cuts ~40s off cold-start time). -os.environ.setdefault("LITELLM_LOCAL_MODEL_COST_MAP", "True") - +os.environ.setdefault("LITELLM_LOCAL_MODEL_COST_MAP", "True") # noqa: E402,E401 import dspy from openinference.semconv.trace import OpenInferenceSpanKindValues, SpanAttributes from opentelemetry.trace import Status, StatusCode, use_span diff --git a/chatdku/core/dspy_classes/executor.py b/chatdku/core/dspy_classes/executor.py index 27ce6666..6d862fe7 100644 --- a/chatdku/core/dspy_classes/executor.py +++ b/chatdku/core/dspy_classes/executor.py @@ -195,7 +195,11 @@ def __init__(self, tools, max_iterations=5): tools["finish"] = Tool( func=lambda: "Completed.", name="finish", - desc=f"Marks the task as complete. That is, signals that all information for producing the outputs, i.e. {outputs}, are now available to be extracted.", + desc=( + "Marks the task as complete." + "That is, signals that all information for producing " + f"the outputs, i.e. {outputs}, are now available to be extracted." + ), args={}, ) @@ -250,23 +254,22 @@ def forward( with span_ctx_start("Executor", SpanKind.AGENT) as span: for idx in range(self.max_iterations): executor_inputs = dict( - current_agenda= current_agenda, + current_agenda=current_agenda, current_user_message=current_user_message, conversation_history=conversation_memory.history_str(), conversation_summary=conversation_memory.summary, current_date=str(date.today()), - chatbot_role= role_str, + chatbot_role=role_str, ) span.set_attribute("agent.name", "Executor") - span.set_attribute( - "input.value", - safe_json_dumps(executor_inputs) - ) + span.set_attribute("input.value", safe_json_dumps(executor_inputs)) try: - executor_result = self._call_with_potential_trajectory_truncation( - self.executor, trajectory, **executor_inputs + executor_result = ( + self._call_with_potential_trajectory_truncation( # noqa E501 + self.executor, trajectory, **executor_inputs + ) ) except ValueError: break diff --git a/chatdku/core/tools/course_recommender.py b/chatdku/core/tools/course_recommender.py index c842b0b1..30250ef0 100644 --- a/chatdku/core/tools/course_recommender.py +++ b/chatdku/core/tools/course_recommender.py @@ -38,15 +38,57 @@ # Known DKU subject codes — used to filter false positives from the markdown. _KNOWN_SUBJECTS = { - "DKU", "GERMAN", "INDSTU", "JAPANESE", "KOREAN", "MUSIC", - "SPANISH", "ARHU", "ARTS", "BEHAVSCI", "BIOL", "CHEM", - "CHINESE", "COMPDSGN", "COMPSCI", "CULANTH", "CULMOVE", "CULSOC", - "EAP", "ECON", "ENVIR", "ETHLDR", "GCHINA", "GCULS", - "GLHLTH", "GLOCHALL", "HIST", "HUM", "INFOSCI", "INSTGOV", - "LIT", "MATH", "MATSCI", "MEDIA", "MEDIART", "NEUROSCI", - "PHIL", "PHYS", "PHYSEDU", "POLECON", "POLSCI", "PPE", - "PSYCH", "PUBPOL", "SOCIOL", "SOSC", "STATS", "USTUD", - "WOC", "RELIG", "MINITERM", + "DKU", + "GERMAN", + "INDSTU", + "JAPANESE", + "KOREAN", + "MUSIC", + "SPANISH", + "ARHU", + "ARTS", + "BEHAVSCI", + "BIOL", + "CHEM", + "CHINESE", + "COMPDSGN", + "COMPSCI", + "CULANTH", + "CULMOVE", + "CULSOC", + "EAP", + "ECON", + "ENVIR", + "ETHLDR", + "GCHINA", + "GCULS", + "GLHLTH", + "GLOCHALL", + "HIST", + "HUM", + "INFOSCI", + "INSTGOV", + "LIT", + "MATH", + "MATSCI", + "MEDIA", + "MEDIART", + "NEUROSCI", + "PHIL", + "PHYS", + "PHYSEDU", + "POLECON", + "POLSCI", + "PPE", + "PSYCH", + "PUBPOL", + "SOCIOL", + "SOSC", + "STATS", + "USTUD", + "WOC", + "RELIG", + "MINITERM", } @@ -276,9 +318,7 @@ def CourseRecommender( req_dir = Path(config.major_req_dir) classdata_csv_path = Path(config.classdata_csv_path) prereq_csv_path = Path(config.prereq_csv_path) - with span_ctx_start( - "CourseRecommender", OpenInferenceSpanKindValues.TOOL - ) as span: + with span_ctx_start("CourseRecommender", OpenInferenceSpanKindValues.TOOL) as span: span.set_attributes( { SpanAttributes.INPUT_VALUE: safe_json_dumps( @@ -479,4 +519,6 @@ def _run_recommendation( ) args = parser.parse_args() - __import__('pprint').pprint(CourseRecommender(major=args.major, completed_courses=args.completed)) + __import__("pprint").pprint( + CourseRecommender(major=args.major, completed_courses=args.completed) + ) diff --git a/chatdku/core/tools/course_schedule.py b/chatdku/core/tools/course_schedule.py index c5639b12..7abf2f9b 100644 --- a/chatdku/core/tools/course_schedule.py +++ b/chatdku/core/tools/course_schedule.py @@ -132,9 +132,7 @@ def CourseScheduleLookup(course_names: list[str]) -> str: except Exception as e: span.set_attributes( { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict(error=str(e)) - ), + SpanAttributes.OUTPUT_VALUE: safe_json_dumps(dict(error=str(e))), SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, } ) diff --git a/chatdku/core/tools/get_prerequisites.py b/chatdku/core/tools/get_prerequisites.py index de6f0ecc..efbfa260 100644 --- a/chatdku/core/tools/get_prerequisites.py +++ b/chatdku/core/tools/get_prerequisites.py @@ -68,9 +68,7 @@ def PrerequisiteLookup(course_names: list[str]) -> str: String describing the prerequisites for each course, separated by newlines. """ prereq_csv_path = config.prereq_csv_path - with span_ctx_start( - "PrerequisiteLookup", OpenInferenceSpanKindValues.TOOL - ) as span: + with span_ctx_start("PrerequisiteLookup", OpenInferenceSpanKindValues.TOOL) as span: span.set_attributes( { SpanAttributes.INPUT_VALUE: safe_json_dumps( @@ -81,15 +79,11 @@ def PrerequisiteLookup(course_names: list[str]) -> str: ) try: - results = [ - get_prereq(course, prereq_csv_path) for course in course_names - ] + results = [get_prereq(course, prereq_csv_path) for course in course_names] result = "\n".join(results) span.set_attributes( { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict(result=result) - ), + SpanAttributes.OUTPUT_VALUE: safe_json_dumps(dict(result=result)), SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, } ) @@ -98,9 +92,7 @@ def PrerequisiteLookup(course_names: list[str]) -> str: except Exception as e: span.set_attributes( { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict(error=str(e)) - ), + SpanAttributes.OUTPUT_VALUE: safe_json_dumps(dict(error=str(e))), SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, } ) diff --git a/chatdku/core/tools/major_requirements.py b/chatdku/core/tools/major_requirements.py index 94759002..1270a89d 100644 --- a/chatdku/core/tools/major_requirements.py +++ b/chatdku/core/tools/major_requirements.py @@ -138,9 +138,7 @@ def MajorRequirementsLookup(major: str) -> str: try: if not req_dir.is_dir(): - raise FileNotFoundError( - f"Requirements directory not found: {req_dir}" - ) + raise FileNotFoundError(f"Requirements directory not found: {req_dir}") stems = _list_stems(req_dir) if not stems: @@ -193,9 +191,7 @@ def MajorRequirementsLookup(major: str) -> str: except Exception as e: span.set_attributes( { - SpanAttributes.OUTPUT_VALUE: safe_json_dumps( - dict(error=str(e)) - ), + SpanAttributes.OUTPUT_VALUE: safe_json_dumps(dict(error=str(e))), SpanAttributes.OUTPUT_MIME_TYPE: OpenInferenceMimeTypeValues.JSON.value, } ) @@ -218,4 +214,4 @@ def MajorRequirementsLookup(major: str) -> str: args = parser.parse_args() lookup = MajorRequirementsLookup(args.major) - __import__('pprint').pprint(lookup) + __import__("pprint").pprint(lookup) diff --git a/chatdku/core/tools/retriever/keyword_retriever.py b/chatdku/core/tools/retriever/keyword_retriever.py index 7f34becd..4bc667be 100644 --- a/chatdku/core/tools/retriever/keyword_retriever.py +++ b/chatdku/core/tools/retriever/keyword_retriever.py @@ -6,7 +6,6 @@ from redis import Redis from redis.commands.search.query import Query -from redisvl.schema import IndexSchema from chatdku.config import config from chatdku.core.tools.retriever.base_retriever import BaseDocRetriever, NodeWithScore diff --git a/chatdku/core/tools/syllabi/generate_sql.py b/chatdku/core/tools/syllabi/generate_sql.py index 5e093b1e..e6479b39 100644 --- a/chatdku/core/tools/syllabi/generate_sql.py +++ b/chatdku/core/tools/syllabi/generate_sql.py @@ -120,7 +120,7 @@ def _collapse_repeated_lines(text: str, max_consecutive: int = 4) -> str: if prev is not None: if count > max_consecutive: out_lines.append(prev) - out_lines.append(f"...({count+1} repeated lines collapsed)...") + out_lines.append(f"...({count + 1} repeated lines collapsed)...") else: out_lines.extend([prev] * (count + 1)) prev = line @@ -130,7 +130,7 @@ def _collapse_repeated_lines(text: str, max_consecutive: int = 4) -> str: if prev is not None: if count > max_consecutive: out_lines.append(prev) - out_lines.append(f"...({count+1} repeated lines collapsed)...") + out_lines.append(f"...({count + 1} repeated lines collapsed)...") else: out_lines.extend([prev] * (count + 1)) diff --git a/chatdku/django/chatdku_django/chat/tools.py b/chatdku/django/chatdku_django/chat/tools.py index 7411f213..1f757788 100644 --- a/chatdku/django/chatdku_django/chat/tools.py +++ b/chatdku/django/chatdku_django/chat/tools.py @@ -1,4 +1,7 @@ -from chatdku.core.tools.llama_index_tools import KeywordRetrieverOuter, VectorRetrieverOuter +from chatdku.core.tools.llama_index_tools import ( + KeywordRetrieverOuter, + VectorRetrieverOuter, +) from chatdku.core.tools.syllabi.syllabi_tool import SyllabusLookupOuter diff --git a/chatdku/django/chatdku_django/chat/views.py b/chatdku/django/chatdku_django/chat/views.py index 986cb704..8a696830 100644 --- a/chatdku/django/chatdku_django/chat/views.py +++ b/chatdku/django/chatdku_django/chat/views.py @@ -32,8 +32,6 @@ from chatdku.core.agent import Agent from chat.tools import get_tools -from rest_framework.views import APIView -from rest_framework.response import Response from datetime import datetime from .models import WeeklyEvent @@ -394,31 +392,41 @@ def destroy(self, request, *args, **kwargs): return super().destroy(request, *args, **kwargs) - class WeeklyEventsView(APIView): - permission_classes = [IsAuthenticated] + permission_classes = [IsAuthenticated] def get(self, request): - start_date = request.query_params.get('start_date') - end_date = request.query_params.get('end_date') + start_date = request.query_params.get("start_date") + end_date = request.query_params.get("end_date") if not start_date or not end_date: - return Response({'error': 'Missing start_date or end_date'}, status=400) + return Response({"error": "Missing start_date or end_date"}, status=400) try: - start = datetime.strptime(start_date, '%Y-%m-%d').date() - end = datetime.strptime(end_date, '%Y-%m-%d').date() + start = datetime.strptime(start_date, "%Y-%m-%d").date() + end = datetime.strptime(end_date, "%Y-%m-%d").date() except ValueError: - return Response({'error': 'Invalid date format, use YYYY-MM-DD'}, status=400) - - events = WeeklyEvent.objects.using("ingestion").filter(event_date__range=(start, end)).order_by('event_date', 'start_time') - data = [{ - 'title': e.title, - 'date': e.event_date.isoformat(), - 'start_time': e.start_time.strftime('%H:%M:%S') if e.start_time else None, - 'end_time': e.end_time.strftime('%H:%M:%S') if e.end_time else None, - 'location': e.location, - 'sponsor': e.sponsor, - 'open_to': e.open_to, - 'speaker': e.speaker, - 'url': e.url, - } for e in events] - return Response({'events': data}) \ No newline at end of file + return Response( + {"error": "Invalid date format, use YYYY-MM-DD"}, status=400 + ) + + events = ( + WeeklyEvent.objects.using("ingestion") + .filter(event_date__range=(start, end)) + .order_by("event_date", "start_time") + ) + data = [ + { + "title": e.title, + "date": e.event_date.isoformat(), + "start_time": ( + e.start_time.strftime("%H:%M:%S") if e.start_time else None + ), + "end_time": e.end_time.strftime("%H:%M:%S") if e.end_time else None, + "location": e.location, + "sponsor": e.sponsor, + "open_to": e.open_to, + "speaker": e.speaker, + "url": e.url, + } + for e in events + ] + return Response({"events": data}) diff --git a/chatdku/django/chatdku_django/core/views.py b/chatdku/django/chatdku_django/core/views.py index 59960448..8c14f499 100644 --- a/chatdku/django/chatdku_django/core/views.py +++ b/chatdku/django/chatdku_django/core/views.py @@ -16,9 +16,7 @@ extend_schema, OpenApiResponse, ) -from core.tasks import update_user_chroma from .utils import slugify -from rest_framework import status import logging diff --git a/tests/test_llama_index_tools.py b/tests/test_llama_index_tools.py index 167e03d5..b8c6a118 100644 --- a/tests/test_llama_index_tools.py +++ b/tests/test_llama_index_tools.py @@ -1,7 +1,7 @@ """Tests for chatdku.core.tools.llama_index_tools (VectorRetrieverOuter, KeywordRetrieverOuter).""" from contextlib import contextmanager -from unittest.mock import MagicMock, patch +from unittest.mock import MagicMock import pytest diff --git a/utils/startup_timer.py b/utils/startup_timer.py index 1570886a..689920f0 100644 --- a/utils/startup_timer.py +++ b/utils/startup_timer.py @@ -20,22 +20,38 @@ def lap(label: str, t_prev: float) -> float: # --- imports --- print("\n[imports]") -import dspy; t = lap("import dspy", t) # noqa: E402,E401 -from chatdku.config import config; t = lap("import config", t) # noqa: E402,E401 +import dspy -from chatdku.core.tools.retriever.keyword_retriever import KeywordRetriever; t = lap("import KeywordRetriever (+ NLTK check)", t) # noqa: E402,E401,E501 -from chatdku.core.tools.retriever.vector_retriever import VectorRetriever; t = lap("import VectorRetriever (+ chromadb)", t) # noqa: E402,E401,E501 -from chatdku.core.tools.major_requirements import MajorRequirementsLookupOuter; t = lap("import MajorRequirementsLookupOuter", t) # noqa: E402,E401,E501 -from chatdku.core.tools.syllabi.syllabi_tool import SyllabusLookupOuter; t = lap("import QueryCurriculumOuter (+ DB)", t) # noqa: E402,E401,E501 +t = lap("import dspy", t) # noqa: E402,E401 +from chatdku.config import config + +t = lap("import config", t) # noqa: E402,E401 + +from chatdku.core.tools.retriever.keyword_retriever import KeywordRetriever + +t = lap("import KeywordRetriever (+ NLTK check)", t) # noqa: E402,E401,E501 +from chatdku.core.tools.retriever.vector_retriever import VectorRetriever + +t = lap("import VectorRetriever (+ chromadb)", t) # noqa: E402,E401,E501 +from chatdku.core.tools.major_requirements import MajorRequirementsLookupOuter + +t = lap("import MajorRequirementsLookupOuter", t) # noqa: E402,E401,E501 +from chatdku.core.tools.syllabi.syllabi_tool import SyllabusLookupOuter + +t = lap("import QueryCurriculumOuter (+ DB)", t) # noqa: E402,E401,E501 t = lap("import PrerequisiteLookupOuter", t) # noqa: E402,E401,E501 t = lap("import CourseScheduleLookupOuter", t) # noqa: E402,E401,E501 -from chatdku.setup import setup, use_phoenix; t = lap("import setup, use_phoenix", t) # noqa: E402,E401 +from chatdku.setup import setup, use_phoenix + +t = lap("import setup, use_phoenix", t) # noqa: E402,E401 # --- initialization --- print("\n[initialization]") -setup(); t = lap("setup() — embed model + tokenizer", t) -use_phoenix(); t = lap("use_phoenix() — OTel register", t) +setup() +t = lap("setup() — embed model + tokenizer", t) +use_phoenix() +t = lap("use_phoenix() — OTel register", t) lm = dspy.LM( model="openai/" + config.backup_llm,